私は、リモートサーバがwinrmで有効になっていないときに、遠隔から有効にするためにwinrmを強制することができます。 psexecを使用していますか?powrmshellからpsexecを使用してwinrmを有効にする方法
**Connecting to remote server xxxxx.us.oim.com failed with the following error message : The WSMan service could not launch a host process to process the given request. Make sure the WSMan provider host server and proxy are properly registered.**
私はこれを実行すると同時に(ここで$ホストは、ホスト名を与える)私のPowerShellスクリプトPSEXEC.EXE \ $ホスト-s PowerShellの「有効-PSRemotingの-force」にコマンドを追加しましたメッセージの下にもまた来ています。
PsExec.exe : Connecting to xxxxxxxxx.us.oim.com...
At line:72 char:1
+ PsExec.exe \\$fqdn -s powershell "Enable-PSRemoting -force"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (Connecting to xxxxxxxxx.us.oim.com...:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
Starting PSEXESVC service on xxxxxxxxx.us.oim.com...Connecting with PsExec service on xxxxxxxxx.us.oim.com...Starting powershell on xxxxxxxxx.us.oim.com...
powershell exited on xxxxxxxxx.us.oim.com with error code 0
は「のWSManサービスは指定された要求を処理するためにホストプロセスを起動できませんでした」場合にのみ、条件を作成することは可能である、その後のWinRMを有効にするには、コマンドを実行します! 可能であればどうすればいいですか?
https://community.spiceworks.com/scripts/show/2703-remotely-enable-winrm-powershell –