Add mod: disable remote assistance

This commit is contained in:
Fierelier 2022-05-28 08:42:19 +02:00
parent 266828797f
commit 6c03026f52
5 changed files with 7 additions and 0 deletions

View File

@ -88,6 +88,7 @@ Mods that require System rights<br>
<tr><td>[all]\<b>disable file open warnings</b></td><td>quality</td><td>Disable saving NTFS zone information for downloaded files.</td></tr> <tr><td>[all]\<b>disable file open warnings</b></td><td>quality</td><td>Disable saving NTFS zone information for downloaded files.</td></tr>
<tr><td>[all]\<b>disable force closing of bg apps</b></td><td>stability</td><td>Vista and up forcefully end processes that don&#x27;t have a Window, which can cause data loss.</td></tr> <tr><td>[all]\<b>disable force closing of bg apps</b></td><td>stability</td><td>Vista and up forcefully end processes that don&#x27;t have a Window, which can cause data loss.</td></tr>
<tr><td>[all]\<b>disable hibernation</b></td><td>stability, performance</td><td>Disables hibernation and all features associated to it, like hybrid sleep (which slows down standby) and fast startup (which never allows your disk to be edited by another OS and also causes instability over time if you don&#x27;t restart)</td></tr> <tr><td>[all]\<b>disable hibernation</b></td><td>stability, performance</td><td>Disables hibernation and all features associated to it, like hybrid sleep (which slows down standby) and fast startup (which never allows your disk to be edited by another OS and also causes instability over time if you don&#x27;t restart)</td></tr>
<tr><td>[all]\<b>disable remote assistance</b></td><td>security</td><td>Disallow public access to the PC. Has been known to be exploited in the past.</td></tr>
<tr><td>[all]\<b>disable sfc</b></td><td>quality</td><td>Keeps Windows from automatically enforcing its own files, making it more modding friendly.</td></tr> <tr><td>[all]\<b>disable sfc</b></td><td>quality</td><td>Keeps Windows from automatically enforcing its own files, making it more modding friendly.</td></tr>
<tr><td>[all]\<b>disable sleep when closing lid</b></td><td>quality</td><td>Stop Laptop from sleeping when closing lid. Sometimes you just wanna close your laptop and have it still perform tasks.</td></tr> <tr><td>[all]\<b>disable sleep when closing lid</b></td><td>quality</td><td>Stop Laptop from sleeping when closing lid. Sometimes you just wanna close your laptop and have it still perform tasks.</td></tr>
<tr><td>[all]\<b>disable storage service</b></td><td>performance, quality</td><td>Disables the service responsible for enforcing group policy for storage devices. Reduces performance, stores additional files on disks, keeps USB drives active for no apparent reason.</td></tr> <tr><td>[all]\<b>disable storage service</b></td><td>performance, quality</td><td>Disables the service responsible for enforcing group policy for storage devices. Reduces performance, stores additional files on disks, keeps USB drives active for no apparent reason.</td></tr>

View File

@ -88,6 +88,7 @@ Mods that require System rights<br>
<tr><td>[all]\<b>disable file open warnings</b></td><td>quality</td><td>Disable saving NTFS zone information for downloaded files.</td></tr> <tr><td>[all]\<b>disable file open warnings</b></td><td>quality</td><td>Disable saving NTFS zone information for downloaded files.</td></tr>
<tr><td>[all]\<b>disable force closing of bg apps</b></td><td>stability</td><td>Vista and up forcefully end processes that don&#x27;t have a Window, which can cause data loss.</td></tr> <tr><td>[all]\<b>disable force closing of bg apps</b></td><td>stability</td><td>Vista and up forcefully end processes that don&#x27;t have a Window, which can cause data loss.</td></tr>
<tr><td>[all]\<b>disable hibernation</b></td><td>stability, performance</td><td>Disables hibernation and all features associated to it, like hybrid sleep (which slows down standby) and fast startup (which never allows your disk to be edited by another OS and also causes instability over time if you don&#x27;t restart)</td></tr> <tr><td>[all]\<b>disable hibernation</b></td><td>stability, performance</td><td>Disables hibernation and all features associated to it, like hybrid sleep (which slows down standby) and fast startup (which never allows your disk to be edited by another OS and also causes instability over time if you don&#x27;t restart)</td></tr>
<tr><td>[all]\<b>disable remote assistance</b></td><td>security</td><td>Disallow public access to the PC. Has been known to be exploited in the past.</td></tr>
<tr><td>[all]\<b>disable sfc</b></td><td>quality</td><td>Keeps Windows from automatically enforcing its own files, making it more modding friendly.</td></tr> <tr><td>[all]\<b>disable sfc</b></td><td>quality</td><td>Keeps Windows from automatically enforcing its own files, making it more modding friendly.</td></tr>
<tr><td>[all]\<b>disable sleep when closing lid</b></td><td>quality</td><td>Stop Laptop from sleeping when closing lid. Sometimes you just wanna close your laptop and have it still perform tasks.</td></tr> <tr><td>[all]\<b>disable sleep when closing lid</b></td><td>quality</td><td>Stop Laptop from sleeping when closing lid. Sometimes you just wanna close your laptop and have it still perform tasks.</td></tr>
<tr><td>[all]\<b>disable storage service</b></td><td>performance, quality</td><td>Disables the service responsible for enforcing group policy for storage devices. Reduces performance, stores additional files on disks, keeps USB drives active for no apparent reason.</td></tr> <tr><td>[all]\<b>disable storage service</b></td><td>performance, quality</td><td>Disables the service responsible for enforcing group policy for storage devices. Reduces performance, stores additional files on disks, keeps USB drives active for no apparent reason.</td></tr>

View File

@ -0,0 +1 @@
Disallow public access to the PC. Has been known to be exploited in the past.

View File

@ -0,0 +1,3 @@
for key in opusnt.regQueryKeys(opusnt.regTmpPath + "system"):
if key.lower().startswith(opusnt.regTmpPath.lower() + "system\\controlset"):
opusnt.runReg(["add",key+ "\\Control\\Remote Assistance","/v","fAllowToGetHelp","/t","REG_DWORD","/d","0x00000000","/f"])

View File

@ -0,0 +1 @@
security