18303 shaares
1707 private links
1707 private links
20 results
tagged
hyper-v
Get-VM | ForEach { $Vm = $_; $_.HardDrives } | ForEach {
$GetVhd = Get-VHD -Path $_.Path
[pscustomobject]@{
Vm = $Vm.Name
Name = $_.Name
Type = $GetVhd.VhdType
ProvisionedGB = ($GetVhd.Size / 1GB)
CommittedGB = ($GetVhd.FileSize / 1GB)
}
}
Via river.
Avec :
- https://docs.microsoft.com/en-us/windows-server/virtualization/hyper-v/manage/remotely-manage-hyper-v-hosts
- https://social.technet.microsoft.com/Forums/windowsserver/en-US/36b7d97c-a4c5-4b51-9a6e-3160d25e33b4/remote-manage-hypervworkgroup-from-domain-joined-client-both-running-windows-10-1709?forum=winserverhyperv
Visio Stencils for VMware, Hyper-V and Veeam
Convert virtual machines and disks from VMware hosts to Hyper-V hosts and Windows Azure or convert computers and disks to Hyper-V hosts.
Avec PowerShell :
Import-Module 'C:\Program Files\Microsoft Virtual Machine Converter\MvmcCmdlet.psd1'
Get-Command -module mvmccmdlet
ConvertTo-MvmcVirtualHardDisk -SourceLiteralPath "S:\Templates\Win2012DC.vmdk" -DestinationLiteralPath "C:\ClusterStorage\VMs\Temp" -VhdType DynamicHardDisk -VhdFormat Vhdx
#If offline can disable the tools. If was online could uninstall from the source VM Uninstall-MvmcSourceVMTools
Disable-MvmcSourceVMTools -DestinationLiteralPath "C:\ClusterStorage\VMs\Temp\Win2012DC.vhdx"
Via http://liens.strak.ch/?BjdxFQ
Une alternative à VEEAM et tous les outils de backup VM, à tester.