Hi,
at the moment we are running this code:
How is it possible to run this bat file that is maximized and where the user can't close the window?
is it something like this?
at the moment we are running this code:
Code:
Dim shell
Set shell=createobject("wscript.shell")
...
shell.run "file://C:\file.bat"
How is it possible to run this bat file that is maximized and where the user can't close the window?
is it something like this?
Code:
shell.run("file://C:\file.bat" & WScript.Arguments(0), 3, False)