Question

wscript C:\open.vbs

ATTRIB -R -S -H "C:\add.txt" 
CD.>C:\add.txt 
goto end

Hey guys I have a code like this. It prompts a window from open.vbs and It wait for the answer to continue. It is waiting for my answer. But I want it to prompt and just continue if I don't even answer. How can I do that?

Was it helpful?

Solution

start "" wscript "c:\open.vbs"

OTHER TIPS

Start a separate cmd.exe process:

cmd.exe /c wscript C:\open.vbs

Or simply move your first line to the end in the case you don’t use results of open.vbs.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top