Compare commits

...

3 Commits

Author SHA1 Message Date
Fierelier 221dd22c58 Add mod: disable telemetry 2023-02-04 10:36:03 +01:00
Fierelier 7abb83338d Do not apply opus-nt_update to systems that are Pro or up 2023-02-04 10:35:47 +01:00
Fierelier 0127cac91c Prompt for driver updates instead of entirely disabling them 2023-02-04 10:33:26 +01:00
5 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1 @@
Prevent system from collecting some data. Only fully works on enterprise.

View File

@ -0,0 +1 @@
opusnt.runReg(["add",opusnt.regTmpPath + "software\\Policies\\Microsoft\\Windows\\DataCollection","/v","AllowTelemetry","/t","REG_DWORD","/d","0x00000000","/f"])

View File

@ -0,0 +1 @@
performance telemetry

View File

@ -1 +1 @@
opusnt.runReg(["add",opusnt.regTmpPath + "software\\Microsoft\\Windows\\CurrentVersion\\DriverSearching","/v","SearchOrderConfig","/t","REG_DWORD","/d","0x00000000","/f"])
opusnt.runReg(["add",opusnt.regTmpPath + "software\\Microsoft\\Windows\\CurrentVersion\\DriverSearching","/v","SearchOrderConfig","/t","REG_DWORD","/d","0x00000002","/f"])

View File

@ -0,0 +1,2 @@
if not ("home" in opusnt.target["version"]["edition"].lower()):
skip = True