How to execute a Windows command on a remote PC?

前端 未结 4 905
轻奢々
轻奢々 2020-12-04 10:51

Is it possible to execute a Windows shell command on a remote PC when I know its login name and password? Is it possible to do it using client PC\'s Windows shell?

4条回答
  •  不思量自难忘°
    2020-12-04 11:46

    You can use native win command:

    WMIC /node:ComputerName process call create “cmd.exe /c start.exe”
    

    The WMIC is part of wbem win folder: C:\Windows\System32\wbem

提交回复
热议问题