Add list-drives.ps1

This commit is contained in:
Markus Fleschutz
2021-03-15 17:22:33 +01:00
parent be123b5af8
commit 153bdabaec
3 changed files with 19 additions and 0 deletions

15
Scripts/list-drives.ps1 Executable file
View File

@ -0,0 +1,15 @@
#!/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
}