5

Microsoft Server 2008 マシンで作業しています。何らかの理由で、コマンド「psexec」がこの 1 台のマシンの 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 に答える