I'm using VBScript to create a UAC prompt for a batch file. I don't know how to get the return value of the UAC prompt. For example if I try to UAC a file that doesn't exist I should get an error, right?
For example:
Dim rc
Set UAC = CreateObject("Shell.Application")
rc = UAC.ShellExecute("thisdoesntexist.exe", "", "", "runas", 1)
WScript.Echo rc
rc doesn't contain a code. Also, is there any way I can get the error code of whatever I'm executing? Is ShellExecute asynchronous in VBScript?
Now all COM calls look like this
HResult = methodcall(param1, param2, ..., paramn, OUTPARAM)
.VB pretends it
OUTPARAM = methodcall(param1, Param2, ..., paramn)
withHResult
appearing in theerr.object
.So errors will still fire, it's just that it doesn't wait to find out.