Get-MountPointsAndUserDisks (Roaming Profiles on VHDX): Unterschied zwischen den Versionen

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche
K (Admin verschob die Seite Get-UserDiskSize (Roaming Profiles on VHDX) nach Get-MountPointsAndUserDisks (Roaming Profiles on VHDX), ohne dabei eine Weiterleitung anzulegen)
Zeile 20: Zeile 20:
 
}
 
}
 
</source>
 
</source>
 
  
  

Version vom 7. März 2019, 16:43 Uhr

Get all Mountpoints and also all UserDisks (Roamin Profiles on VHDX)

Function Get-MountPointsAndUserDisks {
    param(
        [string]$ComputerName
    )
 
    If (!($ComputerName)) {
        $ComputerName = $env:COMPUTERNAME
    }
 
    Get-WmiObject Win32_Volume -Filter "DriveType='3'" -ComputerName $ComputerName | ForEach {
        New-Object PSObject -Property @{
            Name = $_.Name
            Label = $_.Label
            FreeSpace_GB = ([Math]::Round($_.FreeSpace /1GB,2))
            TotalSize_GB = ([Math]::Round($_.Capacity /1GB,2))
        }
    }
}