Last active
December 5, 2017 09:01
-
-
Save king6cong/5d3eb7ff9a3cd0bea88875b27fdc7c0b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$crash_path="$home\AppData\Local\Temp\Lark Crashes" | |
$zip_path="$env:temp\lark" | |
Write-Host "crash_path: $crash_path, zip_path: $zip_path" -foreground Green | |
New-Item -Force -Path "$zip_path" -ItemType Directory | |
Set-Location "$zip_path" | |
Compress-Archive -Force -Path "$crash_path" -DestinationPath dump.zip | |
Write-Host "completed. Please upload dump.zip for inspection" -foreground Green | |
explorer.exe . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment