Expand an EXT4, on a SCSI device
If you have vmware ESXi or Microsoft Hyper-v, you can expand a disk, from the hypervisor console, very simple. But afterwards the partition the servers is not expand.It is always a good idea to...
Kenneth Qvistgaard Dalbjerg, IT Konsulent i århus
If you have vmware ESXi or Microsoft Hyper-v, you can expand a disk, from the hypervisor console, very simple. But afterwards the partition the servers is not expand.It is always a good idea to...
If you have problems with accessing a drive, with the error message: f:\ is not accessible. Access is denied It can happen, if the drive doesn’t have this permission:Everyone (This folder Only): Read &...
Get a list of all VM in a cluster, that dosen’t hve Limit CPU For migration set to true:
1 2 3 4 5 6 7 |
Import-Module -Name "virtualmachinemanager" Get-Vmmserver localhost $hc = Get-VMHostCluster -Name CLUSTERNMAE $hosts =get-vmhost -VMHostCluster $hc foreach($h in $hosts) { get-vm -vmhost $h |Where { $_.LimitCPUForMigration –eq $FALSE } | select Name } |
Sidste kommentar