Getting current directory in VBScript - Stack Overflow If you drop a file onto your vbs file (launcing the script in WScript with arguments), then the working dir will be C:\Windows\System32 (!) (even if the dropped file is in the same directory as the vbs script )
Run a vbscript from another vbscript - Stack Overflow How do I get a vbscript to run another vbscript? Id imagine its only a few lines of code but not tried doing this before, nothing is passed between the 2, one just needs to call run the other For
How to terminate a process in vbscript - Stack Overflow How can I terminate process using vbscript PLEASE NOTE, I need to terminate process that runs under windows 64-bit environment as native 64 (not using select * from win_32_Process) Thanks,
vbscript - To keep screen active (without locking) in Windows while . . . A simple vb script will help you resolve this Create a vbs file and paste the below code set wsc = CreateObject("WScript Shell") Do 'one minute WScript Sleep(60*1000) wsc SendKeys("{NUMLOCK}") Loop The vbs script clicks Num Lock for every one minute and keeps the session active Trigger that and the system will not get locked Make sure that your Automation run will not get effected by