Hi Guys, Sometimes you want to delete checkpoint but there is no option like in the screenshot bellow. You can, of course, shut down VM and manually merge snapshots. I do not recommend it. However, I found out that you can just choose a snapshot which you want to delete…
vm
Hi Guys, This is was not a simple task… because of Get-VMHardDiskDrive can’t give you the size of the drive. $VMget=Get-VM -ComputerName (Get-ClusterNode -Cluster ClusterName) | Get-VMHardDiskDrive | Select-Object -Property vmname, vmid, computername, controllertype, controllernumber,controllerlocation,path foreach ($VM in $VMget) { $VHDRemotePath=$VM.Path -replace “:”, “$” $VHDRemotePath=”\\”+$VM.ComputerName+”\”+$VHDRemotePath $vhdsize= Get-ChildItem $VHDRemotePath | select-object…
Hi, Simple tip. 1. Cancel the Initial Configuration Wizard on the physical host 2. RUN -> Regedit 3. Remove the registry key telling the Wizard to auto-load: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run Delete the entry named: EssentialsRoleConfigWizard 4. Open Server Manager and remove ALL roles/features, EXCEPT those specified below: * ROLES left installed: Storage…