Skip to content

Instantly share code, notes, and snippets.

@supermitsuba
Last active November 20, 2023 17:58
Show Gist options
  • Save supermitsuba/404babf56bc503bd6dbd81dfd6cfbb47 to your computer and use it in GitHub Desktop.
Save supermitsuba/404babf56bc503bd6dbd81dfd6cfbb47 to your computer and use it in GitHub Desktop.
Disable all Asus Services
# This command will give you a list of all the services.txt
# Use this list to look at all the service names and use the
# Service name to put a new service to stop.txt
#
# Gets all services:
# sc queryex state=all type=service
#
# Stops service:
# Stop-Service -Name "<Service Name>"
#
# Sets service to manual:
# Set-Service -Name "<Service Name>" -StartupType Manual
#
# Sets service to disabled:
# Set-Service -Name "<Service Name>" -StartupType Disabled
#
Write-Host "Stopping Service: asus"
Write-Host "Stopping Service: ASUSLinkNear"
Write-Host "Stopping Service: ASUSLinkRemote"
Write-Host "Stopping Service: asusm"
Write-Host "Stopping Service: AsusROGLSLService"
Write-Host "Stopping Service: ASUSSoftwareManager"
Write-Host "Stopping Service: ASUSSwitch"
Write-Host "Stopping Service: ASUSSystemAnalysis"
Write-Host "Stopping Service: GameSDK Service"
Write-Host "Stopping Service: ROG Live Service"
Write-Host "Stopping Service: WSearch"
# Write-Host "Stopping Service: ArmouryCrateControlInterface"
Write-Host "Stopping Service: AsusAppService"
Write-Host "Stopping Service: ASUSSystemDiagnosis"
Stop-Service -Name "asus"
Stop-Service -Name "ASUSLinkNear"
Stop-Service -Name "ASUSLinkRemote"
Stop-Service -Name "asusm"
Stop-Service -Name "AsusROGLSLService"
Stop-Service -Name "ASUSSoftwareManager"
Stop-Service -Name "ASUSSwitch"
Stop-Service -Name "ASUSSystemAnalysis"
Stop-Service -Name "GameSDK Service"
Stop-Service -Name "ROG Live Service"
Stop-Service -Name "WSearch"
# Stop-Service -Name "ArmouryCrateControlInterface"
Stop-Service -Name "AsusAppService"
Stop-Service -Name "ASUSSystemDiagnosis"
Write-Host "Disabling Service: asus"
Write-Host "Disabling Service: ASUSLinkNear"
Write-Host "Disabling Service: ASUSLinkRemote"
Write-Host "Disabling Service: asusm"
Write-Host "Disabling Service: AsusROGLSLService"
Write-Host "Disabling Service: ASUSSoftwareManager"
Write-Host "Disabling Service: ASUSSwitch"
Write-Host "Disabling Service: ASUSSystemAnalysis"
Write-Host "Disabling Service: GameSDK Service"
Write-Host "Disabling Service: ROG Live Service"
Write-Host "Disabling Service: WSearch"
# Write-Host "Manual Service: ArmouryCrateControlInterface"
Write-Host "Disabling Service: AsusAppService"
Write-Host "Disabling Service: ASUSSystemDiagnosis"
Set-Service -Name "asus" -StartupType Disabled
Set-Service -Name "ASUSLinkNear" -StartupType Disabled
Set-Service -Name "ASUSLinkRemote" -StartupType Disabled
Set-Service -Name "asusm" -StartupType Disabled
Set-Service -Name "AsusROGLSLService" -StartupType Disabled
Set-Service -Name "ASUSSoftwareManager" -StartupType Disabled
Set-Service -Name "ASUSSwitch" -StartupType Disabled
Set-Service -Name "ASUSSystemAnalysis" -StartupType Disabled
Set-Service -Name "GameSDK Service" -StartupType Disabled
Set-Service -Name "ROG Live Service" -StartupType Disabled
Set-Service -Name "WSearch" -StartupType Disabled
# Set-Service -Name "ArmouryCrateControlInterface" -StartupType Manual
Set-Service -Name "AsusAppService" -StartupType Disabled
Set-Service -Name "ASUSSystemDiagnosis" -StartupType Disabled
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment