2021-09-27 10:38:12 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2022-02-12 11:02:15 +01:00
|
|
|
|
Lists all drives
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2022-02-12 11:02:15 +01:00
|
|
|
|
This PowerShell script lists all local drives as a table.
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2023-08-06 21:35:36 +02:00
|
|
|
|
PS> ./list-drives.ps1
|
2021-09-29 21:50:10 +02:00
|
|
|
|
|
|
|
|
|
Name Root Used (GB) Free (GB)
|
|
|
|
|
---- ---- --------- ---------
|
2022-02-12 11:02:15 +01:00
|
|
|
|
C C:\ 6648,1 744,2
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-29 12:47:46 +01:00
|
|
|
|
.NOTES
|
2022-09-06 21:42:04 +02:00
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
2021-03-15 17:22:33 +01:00
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
2021-10-03 20:56:22 +02:00
|
|
|
|
Get-PSDrive -PSProvider FileSystem | format-table -property Name,Root,@{n="Used (GB)";e={[math]::Round($_.Used/1GB,1)}},@{n="Free (GB)";e={[math]::Round($_.Free/1GB,1)}}
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-03-15 17:22:33 +01:00
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-03-15 17:22:33 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|