PowerShell/Scripts/cd-root.ps1
2022-03-09 07:57:40 +01:00

23 lines
540 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: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}