Im looking for a workaround/solution to the problem below.
I have a program I am launching and then sending key commands via VBscript like so:
Set WshShell = WScript.CreateObject ("WScript.Shell")
WshShell.Run "C:\images\Employee-CopyBlob2File.exe", 1
WScript.Sleep 500
WshShell.SendKeys "%C"
WScript.Sleep 30000
WshShell.SendKeys "%X"
It works great, the problem is i need this to run, or something like this, while the computer is locked or not signed in (it will always be on)
Normally i would use the command line to pass the program parameters/arguments, but the program in question does not have those options built in.
The only way I can figure out to automate it is doing the script above, but i need it to work while the computer is locked.
Would really appreciate any help, i am stuck.
(I am open to any method someone can think of at this point)
This is on a Windows Computer, so linux/bash stuff is out.
To be more specific, i need to open the program in the screen shot, Select Copy Blob to File (Hence the %C) and then when its finished (the time delay) exit (%X)
