mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-03 13:23:56 +01:00
58 lines
1.5 KiB
Markdown
58 lines
1.5 KiB
Markdown
|
## The *cd-crashdumps.ps1* Script
|
||
|
|
||
|
This PowerShell script changes the working directory to the crash dumps directory (Windows only).
|
||
|
|
||
|
## Parameters
|
||
|
```powershell
|
||
|
/home/mf/Repos/PowerShell/Scripts/cd-crashdumps.ps1 [<CommonParameters>]
|
||
|
|
||
|
[<CommonParameters>]
|
||
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||
|
```
|
||
|
|
||
|
## Example
|
||
|
```powershell
|
||
|
PS> ./cd-crashdumps
|
||
|
📂C:\Users\Markus\AppData\Local\CrashDumps
|
||
|
|
||
|
```
|
||
|
|
||
|
## Notes
|
||
|
Author: Markus Fleschutz | License: CC0
|
||
|
|
||
|
## Related Links
|
||
|
https://github.com/fleschutz/PowerShell
|
||
|
|
||
|
## Source Code
|
||
|
```powershell
|
||
|
<#
|
||
|
.SYNOPSIS
|
||
|
Change to the crash dumps folder
|
||
|
.DESCRIPTION
|
||
|
This PowerShell script changes the working directory to the crash dumps directory (Windows only).
|
||
|
.EXAMPLE
|
||
|
PS> ./cd-crashdumps
|
||
|
📂C:\Users\Markus\AppData\Local\CrashDumps
|
||
|
.LINK
|
||
|
https://github.com/fleschutz/PowerShell
|
||
|
.NOTES
|
||
|
Author: Markus Fleschutz | License: CC0
|
||
|
#>
|
||
|
|
||
|
try {
|
||
|
[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)" }
|
||
|
Set-Location "$Path"
|
||
|
"📂$Path"
|
||
|
exit 0 # success
|
||
|
} catch {
|
||
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||
|
exit 1
|
||
|
}
|
||
|
```
|
||
|
|
||
|
*Generated by convert-ps2md.ps1 using the comment-based help of cd-crashdumps.ps1*
|