6

このフォローは私にはうまくいきません-

%WINDIR%\System32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -Noninteractive -command "& Invoke-Command -ComputerName "Spider_LT_86" -ScriptBlock { msiexec.exe /i "D:\3PDInstallers\ETLBackgroundWorkerSetup.msi" /qn /l*vx "D:\3PDInstallers\logs" }"

私がする必要があるのは、リモートマシンでmsiexecを実行することだけです。スクリプトを実行しているユーザーには、リモートマシンへのアクセスが必要であると想定しています。

Computernameがローカルコンピューターを指している場合でもスクリプトは機能しません(同じログインユーザーでmsiexecを実行すると正常に機能するため、アクセス許可の問題のようには見えません)-WinRMサービスが実行されていることを確認しました。また、ファイアウォールを無効にして、それが問題の原因であるかどうかを確認しましたが、これまでのところ運がありません。ここで何が欠けていますか?

これは完全なエラーですが、ほとんどすべての可能性がリストされています-

Connecting to remote server failed with the following error message : WinRM cannot process the request. The following error occured while using
Kerberos authentication: The network path was not found.
Possible causes are:
  -The user name or password specified are invalid.
  -Kerberos is used when no authentication method and no user name are specified.
  -Kerberos accepts domain user names, but not local user names.
  -The Service Principal Name (SPN) for the remote computer name and port does not exist.
  -The client and remote computers are in different domains and there is no trust between the two domains.
After checking for the above issues, try the following:
  -Check the Event Viewer for events related to authentication.
  -Change the authentication method; add the destination computer to the WinRM TrustedHosts configuration setting or use HTTPS transport.
Note that computers in the TrustedHosts list might not be authenticated.
   -For more information about WinRM configuration, run the following command: winrm help config. For more information, see the about_Remote_Troubleshooting He
lp topic.
    + CategoryInfo          : OpenError: (:) [], PSRemotingTransportException
    + FullyQualifiedErrorId : PSSessionStateBroken

アップデート:

ユーザー名だけで-Credentialsを使用すると、ログインウィンドウがポップアップしてパスワードを取得し、パスワードを入力すると、次のエラーが発生します。ユーザーには管理者アクセス権があるため、何が問題なのかわかりません。

The

[spider_lt_86]リモートサーバーへの接続が失敗し、次のエラーメッセージが表示されました:アクセスが拒否されました。詳細については、about_Remote_Troubleshootingヘルプトピックを参照してください。+ CategoryInfo:OpenError:(:) []、PSRemotingTransportException + FullyQualifiedErrorId:PSSessionStateBroken

4

3 に答える 3

3

これは答えよりも回避策ですが、wmiを使用できるので、それを使用してリモートプロセスを作成してみませんか?こちらをご覧くださいhttp://www.lazywinadmin.com/2011/06/powershell-launchstart-process-on.html?m=1

コメント交換後の問題は、リモートホストの管理者権限を持つクレデンシャルを提供していなかったことです。

于 2013-02-06T17:36:54.597 に答える
2

他のコンピューターに接続できるように、コンピューターにTrustedHostsを設定しましたか?

リモートしようとしているコンピューターでこれを実行します。

Set-Item  wsman::localhost\client\TrustedHosts *  
Restart-Service WinRm
于 2013-02-06T17:41:36.787 に答える
2

1つ明らかなことは、「ネットワークパスが見つかりませんでした」というエラーメッセージは、根本的な問題が何であるかを示していないということです。マイクロソフトのフォーラムで、回答者が以前は機能していたが現在は機能していないと述べた投稿を見ました。それは私が自分自身を見つけた場所です。pingが実行でき、ビュー共有をネットできることを確認したので、ネットワーク部分が機能していることがわかりました。ソースサーバーを再起動しましたが、役に立たなかったようです。ターゲットサーバーを再起動すると、WinRMエラーがなくなり、すべてが再び機能し始めました。サービスがダウンしていたのか、誤動作していたのか、または何か明らかでないことが起こっているのかどうかは明らかではありません。再起動後、(約20回の試行のうち)もう1回失敗しましたが、私たちの環境ではランダムな失敗はそれほど珍しいことではありません。

他の誰かを助ける場合に備えて、これを残しておきます。

于 2016-09-26T20:06:26.287 に答える