PowerShell/Scripts/cd-windows.ps1

27 lines
631 B
PowerShell
Raw Normal View History

2022-01-07 12:08:42 +01:00
<#
.SYNOPSIS
Sets the working directory to the Windows directory
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script changes the working directory to the Windows directory.
2022-01-07 12:08:42 +01:00
.EXAMPLE
PS> ./cd-windows
📂C:\Windows
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2022-01-29 12:47:46 +01:00
Author: Markus Fleschutz / License: CC0
2022-01-07 12:08:42 +01:00
#>
try {
$Path = resolve-path "$env:WINDIR"
if (-not(test-path "$Path" -pathType container)) {
throw "Windows directory at 📂$Path doesn't exist"
2022-01-07 12:08:42 +01:00
}
set-location "$Path"
"📂$Path"
2022-01-07 12:08:42 +01:00
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}