mirror of
https://github.com/ansible/ansible
synced 2026-06-19 07:35:52 +00:00
avoid use of Write-Host in config script
(cherry picked from commit 82996d5b26)
This commit is contained in:
@@ -70,7 +70,7 @@ Function Write-VerboseLog
|
||||
Function Write-HostLog
|
||||
{
|
||||
$Message = $args[0]
|
||||
Write-Host $Message
|
||||
Write-Output $Message
|
||||
Write-Log $Message
|
||||
}
|
||||
|
||||
@@ -192,8 +192,8 @@ $adminRole=[System.Security.Principal.WindowsBuiltInRole]::Administrator
|
||||
# Check to see if we are currently running "as Administrator"
|
||||
if (-Not $myWindowsPrincipal.IsInRole($adminRole))
|
||||
{
|
||||
Write-Host "ERROR: You need elevated Administrator privileges in order to run this script."
|
||||
Write-Host " Start Windows PowerShell by using the Run as Administrator option."
|
||||
Write-Output "ERROR: You need elevated Administrator privileges in order to run this script."
|
||||
Write-Output " Start Windows PowerShell by using the Run as Administrator option."
|
||||
Exit 2
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user