mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-10 13:23:29 +00:00
7 lines
204 B
PowerShell
7 lines
204 B
PowerShell
$file = "disks.xlsx"
|
|
|
|
rm $file -ErrorAction Ignore
|
|
|
|
Get-CimInstance win32_logicaldisk -filter "drivetype=3" |
|
|
Select DeviceID,Volumename,Size,Freespace |
|
|
Export-Excel -Path $file -Show -AutoSize |