如何使启动文件在启动时启动命令行命令?

时间:2018-12-31 05:18:05

标签: vbscript startup

因此,我一直在从事一个项目,我希望该程序运行一个在启动计算机时执行命令的文件。

Set oShell = WScript.CreateObject ("WScript.Shell")
oShell.run "cmd.exe" ""
Set oShell = Nothing

我不知道在“”中写入什么内容以使启动VBS文件启动命令行并在启动时执行命令。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

以下VBScript代码打开一个命令窗口,更改为C:\的路径,并执行DIR命令。

oShell.run "cmd /K CD C:\ & Dir"

CMD /C    Run Command and then terminate

CMD /K    Run Command and then return to the CMD prompt.
          This is useful for testing, to examine variables

更多信息: CMD.exe