$XMLFiles=@()
$XMLs=@()
$XMLCSV = $PSScriptRoot + "$(Get-Date -f 'yyyyMMdd').csv"
$i=0
$j=0
OutputToLog "#INFO#:开始读取虚拟机配置文件" green
if(!(Test-Path $XMLCSV))
{
foreach($NewCSVPath in $NewCSVPaths){
$XMLFiles+=Get-ChildItem -Path $NewCSVPath -Recurse|? Extension -eq .xml
}
foreach($XMLFile in $XMLFiles){
$i++
$item=""|select VMName,XMLPath
[xml]$XMLDocuments = Get-Content $($XMLFile.FullName)
$item.VMName=$VMNameinXML=$XMLDocuments.ChildNodes.properties.name.('#text')
$item.XMLPath=$($XMLFile.FullName)
OutputToLog "#INFO#:$i,正在读取虚拟机$($VMNameinXML)的配置文件" green
$XMLs+=$item
}
$XMLs | Export-Csv -Path $XMLCSV -Append -NoTypeInformation -Encoding UTF8
}
else
{
$XMLs = Import-Csv -Path $XMLCSV
}
foreach($customVM in $customVMs){
$j++
$ImportedVM=""|select VMName,ImportStatus,FullPath,Comments
echo $ImportedVM.FullPath
$ImportedVM.VMName=$VMName=$customVM
foreach($XML in $XMLs){
#比较虚拟机名称
$ImportedVM.FullPath=$XML.XMLPath
if($($XML.VMName) -eq $customVM){
try{
Import-VM -Path $($XML.XMLPath) -ea stop
$ImportedVM.ImportStatus="sucess"
$ImportedVM.Comments=""
$VMImported++
OutputToLog "#INFO#:虚拟机$($VMName)导入成功" green
break
}
catch{
$ImportedVM.ImportStatus="failed"
$ImportedVM.Comments=$($_.exception.tostring())
}
}
else{
$ImportedVM.ImportStatus="N/A"
$ImportedVM.Comments="NotFound"
}
}
$ImportedVM|Out-File $LogPath -Encoding utf8 -Append -Force
#输出导入结果
$ImportedVM|Export-Csv -Path $ImportedVMLog -NoTypeInformation -Encoding UTF8 -Append
}
Windows Server 2012 R2 读取Hyper-V VM配置文件
原创文章标签 XML 配置文件 hyper-v Windows Server 201R2 Powershell 文章分类 网络安全
-
Windows Server 2012 R2 读取Hyper-V VM配置文件
Windows Server 2012 R2 读取Hyper-V VM配置文件
XML 配置文件 hyper-v Windows Server 201R2 Powershell -
Windows Server 2012 R2 安装 Hyper-V
Windows Server 2012 R2 安装 Hyper-V
微软 服务器虚拟化 Windows Server -
windows server 2012 R2 hyper-v知识总结
windows server 2012 R2 hyper-v
Hyper-v windows server -
Hyper-V 2012 R2 配置存储QoS
Storage QoS是类似管理网络带宽一样的技术,是用来控制磁盘操作的,就是我们平常说的IOPS。控制磁盘的IOPS也就是限制虚拟机的主要性能,应为对于虚拟化而言,一直以来最大的瓶颈就是磁盘性能。使用这样的技术,我们可以轻松实现:对多租户的管理,根据租户的需求,采用不同的资费,而不是“同酬不同工”的大锅饭对不重要的虚机进行管理,不要因其占用磁盘操作而影响更重要的虚拟机配置方法很简单:在虚拟机的配
Windows Server 2012 Hyper-V 2012 R2 Storage QoS 磁盘IOPS控制