我想要做的是使用powershell在特定路径中的远程计算机的cmd上执行此命令“xxx.exe register -key:xxxxx”。我该怎么做?这是我想在远程计算机上运行的命令。
Start-Process $xxxPath\xxx.exe -ArgumentList "register -key:$xxKey" -Wait -WindowStyle hidden
谢谢
你可以试试这个:Start-Process -FilePath powershell -Wait -ArgumentList“Invoke-Command -ComputerName $ comp -ScriptBlock {cmd / k xxx.exe register -key:xxxxx}”-Credential $ cred