Last active
January 12, 2023 07:05
-
-
Save bGZo/81e8e9beda426a30794ad9aadb8adeb5 to your computer and use it in GitHub Desktop.
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
$my_tasks = @( | |
"AppleMobileDeviceService.exe", # [Always] Apple | |
"ATService.exe", # AnyText | |
"BattMonSVC.exe", # BattMonUI | |
"crashpad_handler.exe", # IDGAF | |
"DTShellHlp.exe", # DAEMON Tools Lite | |
"Everything.exe", # Everything | |
"msedgewebview2.exe", # Microsoft Edge | |
"OriginWebHelperService.exe", # Game/Origin | |
"gamingservices.exe", # [ALWAYS] XBOX | |
"RuntimeBroker.exe", # [ALWAYS] IDGAF | |
"StartMenuExperienceHost.exe", # [ALWAYS] IDGAF | |
"Steam++.exe", # Watt Toolkit | |
"kdeconnectd.exe" # KDE connect | |
"kdeconnect-indicator.exe" # KDE connect GUI | |
"TouchpointAnalyticsClientService.exe" # [Always] FUCK HP | |
) | |
for ($i=0; $i -lt $my_tasks.Length; $i++) { | |
taskkill /F /im $my_tasks[$i] | |
} | |
# Stop-Service -Name | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment