Invoke-VMScript:不要 confirm/re-enter 来宾凭据
Invoke-VMScript: Do not confirm/re-enter guest credentials
我正在对我们环境中的 VM 执行审核,并使用 Invoke-VMScript 获取磁盘信息:
$vmErrors = New-Object System.Collections.Generic.List[System.Object]
$report = foreach ($VM in $VMs){
$name = $vm.Name
Write-Host "Retrieving data for $name... " -NoNewline
try{
$output = Invoke-VMScript -ScriptText @'
Get-Disk | Foreach-Object{
[PSCustomObject]@{
ComputerName = $env:COMPUTERNAME
Number = $_.number
Size = [int]($_.size/1GB)
PartitionStyle = $_.PartitionStyle
}
} | ConvertTo-Csv -NoTypeInformation
'@ -VM $name -GuestUser $Username -GuestPassword $Password -WarningAction SilentlyContinue -ErrorAction Stop
if($output.ScriptOutput -match 'PartitionStyle')
{
$output.ScriptOutput -replace '(?s)^.+(?="Com)' | ConvertFrom-Csv
}
Write-Host "Done" -ForegroundColor Green
}catch{
$vmErrors.Add($name)
Write-Host "Error!" -ForegroundColor Red
}
}
当 运行在 Powershell ISE 中使用代码时,我不需要确认每个 VM 的凭据并且脚本循环非常好,但是如果我 运行 在标准 Powershell 中使用脚本window,对于每个 VM,我必须输入每个 VM 的用户名和密码(凭据将始终与我用于对 vCenter 服务器进行身份验证的凭据相同。
示例:
Retrieving data for VM NAME...
Specify Credential
Please specify guest credential
User:
我怎样才能 运行 正常 window 并避免每次都重新输入我的凭据?
编辑
设置用户名和密码示例:
$Username = ""
$Password = ""
Function GetUser{
do{
$global:Username = Read-Host "What is your username? (DOMAIN\Username)"
}while($global:Username -eq "")
}
Function GetPassword{
do{
$global:Password = Read-Host "What is your password?" -AsSecureString
$global:Password = [Runtime.InteropServices.Marshal]::PtrToStringAuto([Runtime.InteropServices.Marshal]::SecureStringToBSTR($global:Password))
}while($global:Password -eq "")
}
通过更改 Invoke-VMScript 中的凭据引用以使用 $global:Username
和 $global:Password
解决
我正在对我们环境中的 VM 执行审核,并使用 Invoke-VMScript 获取磁盘信息:
$vmErrors = New-Object System.Collections.Generic.List[System.Object]
$report = foreach ($VM in $VMs){
$name = $vm.Name
Write-Host "Retrieving data for $name... " -NoNewline
try{
$output = Invoke-VMScript -ScriptText @'
Get-Disk | Foreach-Object{
[PSCustomObject]@{
ComputerName = $env:COMPUTERNAME
Number = $_.number
Size = [int]($_.size/1GB)
PartitionStyle = $_.PartitionStyle
}
} | ConvertTo-Csv -NoTypeInformation
'@ -VM $name -GuestUser $Username -GuestPassword $Password -WarningAction SilentlyContinue -ErrorAction Stop
if($output.ScriptOutput -match 'PartitionStyle')
{
$output.ScriptOutput -replace '(?s)^.+(?="Com)' | ConvertFrom-Csv
}
Write-Host "Done" -ForegroundColor Green
}catch{
$vmErrors.Add($name)
Write-Host "Error!" -ForegroundColor Red
}
}
当 运行在 Powershell ISE 中使用代码时,我不需要确认每个 VM 的凭据并且脚本循环非常好,但是如果我 运行 在标准 Powershell 中使用脚本window,对于每个 VM,我必须输入每个 VM 的用户名和密码(凭据将始终与我用于对 vCenter 服务器进行身份验证的凭据相同。 示例:
Retrieving data for VM NAME...
Specify Credential
Please specify guest credential
User:
我怎样才能 运行 正常 window 并避免每次都重新输入我的凭据?
编辑
设置用户名和密码示例:
$Username = ""
$Password = ""
Function GetUser{
do{
$global:Username = Read-Host "What is your username? (DOMAIN\Username)"
}while($global:Username -eq "")
}
Function GetPassword{
do{
$global:Password = Read-Host "What is your password?" -AsSecureString
$global:Password = [Runtime.InteropServices.Marshal]::PtrToStringAuto([Runtime.InteropServices.Marshal]::SecureStringToBSTR($global:Password))
}while($global:Password -eq "")
}
通过更改 Invoke-VMScript 中的凭据引用以使用 $global:Username
和 $global:Password