PowerShell/Scripts/open-c-drive.ps1
2021-10-23 16:37:09 +02:00

21 lines
445 B
PowerShell
Executable File

<#
.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
}