Skip to content

Instantly share code, notes, and snippets.

@Ciantic
Last active June 24, 2025 10:00
Show Gist options
  • Save Ciantic/76ade5f2731cbe87b70d17ff28986c84 to your computer and use it in GitHub Desktop.
Save Ciantic/76ade5f2731cbe87b70d17ff28986c84 to your computer and use it in GitHub Desktop.
Stop ASUS services automatically
# EDIT: There is more comprehensive debloat instructions here: https://github.com/sammilucia/ASUS-G14-Debloating/blob/main/README.md
# Get services starting with "Asus*" to a variable
$services = Get-Service -Name "Asus*"
# Stop services
foreach ($service in $services) {
# Print service
Write-Host "STOP" $service.Name
Stop-Service -Name $service.Name
}
# Disable services
foreach ($service in $services) {
# Print service
Write-Host "DISABLE" $service.Name
Set-Service -Name $service.Name -StartupType Disabled
}
@Ciantic
Copy link
Author

Ciantic commented Jun 24, 2025

PS C:\> Get-AppxPackage -AllUsers | where-object {$_.name -like "*asus*"}                                                                                                                                                                                                                                                                                    Name                   : B9ECED6F.ASUSPCAssistant
Publisher              : CN=38BC0208-0916-4E44-909B-E6832F47CDE7
Architecture           : X64
ResourceId             :
Version                : 3.1.13.0
PackageFullName        : B9ECED6F.ASUSPCAssistant_3.1.13.0_x64__qmba6cd70vzyy
InstallLocation        : C:\Program Files\WindowsApps\b9eced6f.asuspcassistant_3.1.13.0_x64__qmba6cd70vzyy
IsFramework            : False
PackageFamilyName      : B9ECED6F.ASUSPCAssistant_qmba6cd70vzyy
PublisherId            : qmba6cd70vzyy
PackageUserInformation : {S-1-5-18 [S-1-5-18]: Staged}
IsResourcePackage      : False
IsBundle               : False
IsDevelopmentMode      : False
NonRemovable           : False
IsPartiallyStaged      : False
SignatureKind          : Store
Status                 : Ok



PS C:\> Remove-AppxPackage -allusers -package "B9ECED6F.ASUSPCAssistant_3.1.13.0_x64__qmba6cd70vzyy"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment