From 04f8c79d58dbd7cdefb6617903586161f71b6a7c Mon Sep 17 00:00:00 2001 From: manasiyadav Date: Sun, 29 Aug 2021 23:09:23 +0530 Subject: Created Batch File eSim.bat Created by Manasi Yadav, Sumanto Kar on 17.08.2021 This batch file is created to eliminate the path error that was observed in some systems, where the HOME variable of the system gets fixed to C:\SPB Data\ In eSim.bat, the HOME variable is set as the path of .esim folder i.e. C:\Users Now the user has to run eSim.bat instead of eSim.exe. eSim.bat closes automatically and prompts eSim.exe to start. --- eSim.bat | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 eSim.bat (limited to 'eSim.bat') diff --git a/eSim.bat b/eSim.bat new file mode 100644 index 00000000..690605d8 --- /dev/null +++ b/eSim.bat @@ -0,0 +1,4 @@ +@echo off +set HOME=C:\Users\\ +start eSim.exe +cd /d %HOME% \ No newline at end of file -- cgit