I want to run the vbs command from the command line, as it would be with a batch call
cmd.exe /c "echo.Hello World! & pause"
Obviously this doesn't work
wscript /C MsgBox("Hello world")
I can print vbs and then call the temporary file and then delete it
cmd.exe /c "echo. [VBSCODE] > temp.vbs & wscript temp.vbs & del temp.vbs"
but itβs too dirty, and I donβt want the hint to appear.
source share