2
我想創建一個批處理文件,它將創建一個VBScript。 我試圖做這樣的事情:使用批處理文件創建一個VBScript
echo somescripthere & morehere , andhere >> hello.vbs
pause (for debugging)
但是當我運行的批處理文件,它與
"somescripthere" is not recognized as an internal or external command,
operable program or batch file.
"morehere" is not recognized as an internal or external command,
operable program or batch file.
"andhere" is not recognized as an internal or external command,
operable program or batch file.
任何迴應知道是什麼原因造成這一點,我怎麼能解決這個問題?我不擅長編碼,甚至在VBScript上更糟糕。
腳本我加轉義字符我抱怨'somescripthere'而不是'morehere'? – SomethingDark
它依次抱怨它們全部。 – GoldenLizardYT
你爲什麼不用現實世界的VBScript命令來嘗試它。混淆這樣的例子是毫無意義的。 – Squashman