(I don't speak English. Hope you understand.)
Hi, I have the following VBS command.
set shell = CreateObject("Wscript.Shell") : shell.run "notepad"(Start notepad, but from vbs.) I want to run this command from CMD. I can't do it like:
C:\>wscript set shell = CreateObject("Wscript.Shell") : shell.run "notepad"I can do:
C:\>wscript script.vbsbut I must have the command in another file. I want to run it from the command prompt. How could I do it?
Thank you for the answers, Andrew
2 Reset to default