Skip to content

Instantly share code, notes, and snippets.

View DoubleLabyrinth's full-sized avatar

Double Sine DoubleLabyrinth

  • Tianjin University
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%";
'''
)