Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
filespec="d:\123\abc.bat" '< edit the location & name
createobject("wscript.shell").run chr(34) & filespec & chr(34), 0, true
filespec="d:\123\abc.bat"
arg="ibn\jsmith 1a2b3c"
createobject("wscript.shell").run chr(34) & filespec & arg & chr(34), 0, false
filespec="d:\123\abc.bat"
for i=0 to wscript.arguments.count-1
arg=arg & " " & wscript.arguments(i)
next
createobject("wscript.shell").run chr(34) & filespec & arg & chr(34), 0, false
arg = [COLOR=red]" "[/color] & arg
filespec="d:\123\abc.bat"
arg="ibn\jsmith 1a2b3c"
arg=" " & arg
createobject("wscript.shell").run chr(34) & filespec & chr(34) & arg, 0, false
filespec="d:\123\abc.bat"
for i=0 to wscript.arguments.count-1
arg=arg & " " & wscript.arguments(i)
next
createobject("wscript.shell").run chr(34) & filespec & chr(34) & arg, 0, false
cls
@echo off
exit
kill /f winoa386.mod
filespec="d:\123\abc.bat"
filespec=filespec & ".pif"
'etc...
::the vbs is at d:\123\abc.vbs with arguments
cscript.exe d:\123\abc.vbs //B [[arg1] [arg2] ...]
cls
@echo off
exit