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…
How to: Hyper-v
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…
Hi guys, Today I am going to describe problem which happens very often on the virtual Windows machines, however I have seen people complying about this problem on the physical servers. Problem: Windows is not recognizing correct space of the disk after extended it in the Disk Manager. Than you…