Add open-c-drive.ps1

This commit is contained in:
Markus Fleschutz
2021-10-23 16:37:09 +02:00
parent d7e954417d
commit 7bdaef5002
4 changed files with 48 additions and 0 deletions

20
Scripts/open-c-drive.ps1 Executable file
View File

@ -0,0 +1,20 @@
<#
.SYNOPSIS
Opens the C: drive folder
.DESCRIPTION
This script starts the File Explorer and shows the C: drive folder.
.EXAMPLE
PS> ./open-c-drive
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
& "$PSScriptRoot/open-file-explorer.ps1" C:
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}