Hello,
I use the following code in a BAT file to open a folder and select a file in an existing Windows Explorer window (QTTabBar installed).
I need to change the temp VBS file encoding so that Hebrew characters should be recognized.
How can I do that from the BAT file?
I'd appreciate your help.
I use the following code in a BAT file to open a folder and select a file in an existing Windows Explorer window (QTTabBar installed).
Code:
start "" %1
:VBSDynamicBuild
SET TempVBSFile=%temp%\~tmpSendKeysTemp.vbs
ECHO Set tSK = CreateObject("WScript.Shell") >> "%TempVBSFile%"
ECHO WScript.Sleep 200 >> "%TempVBSFile%"
ECHO tSK.SendKeys "^q%~2" >> "%TempVBSFile%"
CSCRIPT //NoLogo "%TempVBSFile%"
DEL /F /Q "%TempVBSFile%"How can I do that from the BAT file?
I'd appreciate your help.