2023-05-22 10:03:51 +02:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Change to the crash dumps folder
|
|
|
|
|
.DESCRIPTION
|
2023-05-22 17:24:16 +02:00
|
|
|
|
This PowerShell script changes the working directory to the crash dumps directory (Windows only).
|
2023-05-22 10:03:51 +02:00
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> ./cd-crashdumps
|
|
|
|
|
📂C:\Users\Markus\AppData\Local\CrashDumps
|
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
2023-05-22 17:24:16 +02:00
|
|
|
|
[string]$Path = Resolve-Path -Path "~"
|
|
|
|
|
if (!(Test-Path $Path)) { throw "Home directory at $Path doesn't exist (yet)" }
|
|
|
|
|
$Path += "\AppData\Local\CrashDumps"
|
|
|
|
|
if (!(Test-Path $Path)) { throw "Crashdumps directory at $Path doesn't exist (yet)" }
|
2023-05-22 10:03:51 +02:00
|
|
|
|
Set-Location "$Path"
|
|
|
|
|
"📂$Path"
|
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
|
exit 1
|
|
|
|
|
}
|