PowerShell/Scripts/cd-root.ps1
2022-04-13 12:06:32 +02:00

23 lines
514 B
PowerShell
Executable File

<#
.SYNOPSIS
Sets the working directory to the root directory
.DESCRIPTION
This PowerShell script changes the current working directory to the root directory (C:\ on Windows).
.EXAMPLE
PS> ./cd-root
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#>
try {
if ($IsLinux) { $Path = "/" } else { $Path = "C:\" }
set-location "$Path"
"📂$Path"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}