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

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „== Get all Mountpoints and also all UserDisks (Roamin Profiles on VHDX) == <source lang="powershell"> Function Get-MountPointsAndUserDisks { param(…“)
 
K (Admin verschob die Seite Get-UserDiskSize (Roaming Profiles on VHDX) nach Get-MountPointsAndUserDisks (Roaming Profiles on VHDX), ohne dabei eine Weiterleitung anzulegen)
(kein Unterschied)

Version vom 7. März 2019, 16:40 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))
        }
    }
}