mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 20:44:17 +01:00
21 lines
443 B
PowerShell
Executable File
21 lines
443 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Opens the C: drive folder
|
|
.DESCRIPTION
|
|
This script starts the File Explorer showing 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
|
|
}
|