mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-11 17:20:48 +01:00
16 lines
334 B
PowerShell
16 lines
334 B
PowerShell
|
#!/bin/powershell
|
||
|
<#
|
||
|
.SYNTAX ./list-drives.ps1
|
||
|
.DESCRIPTION lists all drives
|
||
|
.LINK https://github.com/fleschutz/PowerShell
|
||
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||
|
#>
|
||
|
|
||
|
try {
|
||
|
get-PSDrive -PSProvider FileSystem
|
||
|
exit 0
|
||
|
} catch {
|
||
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||
|
exit 1
|
||
|
}
|