mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
9 lines
269 B
PowerShell
9 lines
269 B
PowerShell
try {. $PSScriptRoot\..\..\LoadPSD1.ps1} catch {}
|
|
|
|
$file = "disks.xlsx"
|
|
|
|
Remove-Item $file -ErrorAction Ignore
|
|
|
|
Get-CimInstance win32_logicaldisk -filter "drivetype=3" |
|
|
Select-Object DeviceID,Volumename,Size,Freespace |
|
|
Export-Excel -Path $file -Show -AutoSize |