Skip to content

Instantly share code, notes, and snippets.

View ilhan-athn7's full-sized avatar
🪟
Windows is only operating system that would give you blue screen of death

İlhan Atahan ilhan-athn7

🪟
Windows is only operating system that would give you blue screen of death
View GitHub Profile
@DoubleLabyrinth
DoubleLabyrinth / fix.py
Last active January 17, 2024 03:16
Remove mutant entry in Start: ms-resource:AppName/Text
import os, sqlite3
conn = sqlite3.connect(os.path.expandvars(r'%ProgramData%\Microsoft\Windows\AppRepository\StateRepository-Machine.srd'))
cursor = conn.execute(
'''
SELECT _PackageID, PackageFullName FROM main.Package
WHERE PackageFullName LIKE "Microsoft.Windows.HolographicFirstRun%";
'''
)