我想在powershell中执行以下步骤:-步骤1.)从powershell打开管理命令提示符。步骤2.)在步骤1中打开的管理命令提示符上执行一些命令。步骤3.)捕获在步骤2中执行的命令的输出。步骤4.)关闭在步骤1中打开的管理命令提示符。
经过大量的谷歌和搜索,我无法找到实现上述任务所需的确切的powershell命令。请告知以上是否可能,如果可能,如何?
一种可能的方法(用命令代替回声测试)
$prog="cmd.exe"
$params=@("/C";"echo test";" >c:tempresult.txt")
Start-Process -Verb runas $prog $params
gc c:tempresult.txt