PowerCLI 提示输入 "Connect-VI Server" 的服务器名称
PowerCLI Prompt for Server name for "Connect-VI Server"
我正在尝试使用 PowerCLI 脚本基于 CSV 文件创建虚拟机。我正在使用的当前代码在脚本 "$vcenter_srv = 'vcenter.seba.local'":
中将 'Connect-VIServer' 硬编码为变量
$ScriptRoot = Split-Path $MyInvocation.MyCommand.Path
$csvfile = "$ScriptRoot\vms2deploy.csv"
$vcenter_srv = 'vcenter.seba.local'
$timeout = 1800
$loop_control = 0
$vmsnapin = Get-PSSnapin VMware.VimAutomation.Core -ErrorAction SilentlyContinue
$Error.Clear()
if ($vmsnapin -eq $null)
{
Add-PSSnapin VMware.VimAutomation.Core
if ($error.Count -eq 0)
{
write-host "PowerCLI VimAutomation.Core Snap-in was successfully enabled." -ForegroundColor Green
}
else
{
write-host "ERROR: Could not enable PowerCLI VimAutomation.Core Snap-in, exiting script" -ForegroundColor Red
Exit
}
}
else
{
Write-Host "PowerCLI VimAutomation.Core Snap-in is already enabled" -ForegroundColor Green
}
if ($env:Processor_Architecture -eq "x86") {
#Connect to vCenter
Connect-VIServer -Server $vcenter_srv
我正在尝试确定是否有一种方法可以使 PowerCLI 脚本在脚本 "Connect-VIServer -Server $vcenter_srv" 中出现时使用 'Connect-VIServer' 命令提示输入服务器名称,然后继续从 CSV 文件中提取的剩余值。
感谢您提供的任何信息,
您可以通过读取主机并将其存储在 Connect-VIServer cmdlet 可以使用的变量中来提示回答,如下所示:
$vc = read-Host "vCenter Server?"
Connect-VIServer -Server $vc
我正在尝试使用 PowerCLI 脚本基于 CSV 文件创建虚拟机。我正在使用的当前代码在脚本 "$vcenter_srv = 'vcenter.seba.local'":
中将 'Connect-VIServer' 硬编码为变量$ScriptRoot = Split-Path $MyInvocation.MyCommand.Path
$csvfile = "$ScriptRoot\vms2deploy.csv"
$vcenter_srv = 'vcenter.seba.local'
$timeout = 1800
$loop_control = 0
$vmsnapin = Get-PSSnapin VMware.VimAutomation.Core -ErrorAction SilentlyContinue
$Error.Clear()
if ($vmsnapin -eq $null)
{
Add-PSSnapin VMware.VimAutomation.Core
if ($error.Count -eq 0)
{
write-host "PowerCLI VimAutomation.Core Snap-in was successfully enabled." -ForegroundColor Green
}
else
{
write-host "ERROR: Could not enable PowerCLI VimAutomation.Core Snap-in, exiting script" -ForegroundColor Red
Exit
}
}
else
{
Write-Host "PowerCLI VimAutomation.Core Snap-in is already enabled" -ForegroundColor Green
}
if ($env:Processor_Architecture -eq "x86") {
#Connect to vCenter
Connect-VIServer -Server $vcenter_srv
我正在尝试确定是否有一种方法可以使 PowerCLI 脚本在脚本 "Connect-VIServer -Server $vcenter_srv" 中出现时使用 'Connect-VIServer' 命令提示输入服务器名称,然后继续从 CSV 文件中提取的剩余值。
感谢您提供的任何信息,
您可以通过读取主机并将其存储在 Connect-VIServer cmdlet 可以使用的变量中来提示回答,如下所示:
$vc = read-Host "vCenter Server?"
Connect-VIServer -Server $vc