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?

有帮助吗?

解决方案

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

其他提示

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top