Guest User

Untitled

a guest
Jan 19th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. $instpth = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
  2. Remove-Item $instpth\Mahou.exe
  3. Remove-Item $instpth\jkl.dll -Force
  4. Remove-Item $instpth\jklx86.dll -Force
  5. Remove-Item $instpth\jkl.exe -Force
  6. Remove-Item $instpth\jklx86.exe -Force
  7. $confirmation = Read-Host "Delete Mahou settings, history and snippets?[y/n]"
  8. if ($confirmation -eq 'y' -And $confirmation -eq 'Y') {
  9. Remove-Item $instpth\Mahou.ini -Force
  10. Remove-Item $instpth\snippets.txt -Force
  11. Remove-Item $instpth\history.txt -Force
  12. }
Add Comment
Please, Sign In to add comment