1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

adjust WinRM service configuration message text

fixes #17478
This commit is contained in:
nitzmahone 2016-09-09 09:47:15 -07:00
parent 8b71bb13ce
commit ee080eddb5

View file

@ -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
}