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).
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 change the temp VBS file encoding from the BAT file?
I'd appreciate your help.