Last active
April 5, 2021 22:37
-
-
Save utkonos/afbf1e9969bd59333485b3393e48ebde to your computer and use it in GitHub Desktop.
Update x64dbg
This file contains hidden or 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
Expand-Archive -LiteralPath $args[0] | |
Remove-Item $args[0] | |
Remove-Item -Recurse C:\RE\snapshot* | |
Move-Item "snapshot*" C:\RE | |
Remove-Item $env:USERPROFILE\Desktop\x32dbg.lnk | |
Remove-Item $env:USERPROFILE\Desktop\x64dbg.lnk | |
New-Item -ItemType SymbolicLink -Path $env:USERPROFILE\Desktop -Name "x32dbg.lnk" -Value "C:\RE\snapshot*\release\x32\x32dbg.exe" | |
New-Item -ItemType SymbolicLink -Path $env:USERPROFILE\Desktop -Name "x64dbg.lnk" -Value "C:\RE\snapshot*\release\x64\x64dbg.exe" | |
Remove-Item $env:USERPROFILE\Desktop\update_x64dbg.ps1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment