我正在尝试通过我的vb.net应用程序运行一系列cmd命令。我的代码如下:
Process.Start("cmd.exe", "/k activate instance ntds & ifm & create full c:\audit & quit & quit")
问题在于,似乎只运行了其中的第一个命令(本质上是:Process.Start(“ cmd.exe”,“ / k ntdsutil)
有人知道为什么会这样吗?我也尝试用'ntdsutil.exe'替换cmd.exe,但没有成功。