From ee080eddb5ec6cf716cd843e5c6d0bfe40d6dc35 Mon Sep 17 00:00:00 2001 From: nitzmahone Date: Fri, 9 Sep 2016 09:47:15 -0700 Subject: [PATCH] adjust WinRM service configuration message text fixes #17478 --- examples/scripts/ConfigureRemotingForAnsible.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/scripts/ConfigureRemotingForAnsible.ps1 b/examples/scripts/ConfigureRemotingForAnsible.ps1 index 8d778c54e8a..fcd4ab6d5f4 100644 --- a/examples/scripts/ConfigureRemotingForAnsible.ps1 +++ b/examples/scripts/ConfigureRemotingForAnsible.ps1 @@ -103,7 +103,7 @@ ElseIf ((Get-Service "WinRM").Status -ne "Running") { Write-Verbose "Starting WinRM service." Start-Service -Name "WinRM" -ErrorAction Stop - Write-Verbose "Start WinRM service automatic" + Write-Verbose "Setting WinRM service to start automatically on boot." Set-Service -Name "WinRM" -StartupType Automatic }