5

我正在使用 Microsoft Server 2008 机器。出于某种原因,命令“psexec”在这台机器上的 powershell 中不起作用。

当我尝试运行它时,我得到了这个:

PS C:\> psexec
The term 'psexec' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or
if a path was included, verify that the path is correct and try again.
At line:1 char:7
+ psexec <<<<
    + CategoryInfo          : ObjectNotFound: (psexec:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\>

它正在运行 powershell 2.0。我通过这样做发现了这一点:

PS C:\> $Host.Version

Major  Minor  Build  Revision
-----  -----  -----  --------
2      0      -1     -1


PS C:\>

有什么想法吗?我需要这个命令,而且我真的不想使用“解决方法”。

4

1 回答 1

7

完成答案:

您必须从下面的链接下载 PSEXEC 并保留从 Powershell 或任何命令提示符启动的路径: http ://technet.microsoft.com/en-us/sysinternals/bb897553

于 2012-05-20T01:01:13.670 回答