Compare commits

...

3 Commits

Author SHA1 Message Date
Fierelier 088d926467 Update version 2022-06-22 06:35:21 +02:00
Fierelier a10c17a764 Update docs 2022-06-22 06:34:48 +02:00
Fierelier 8914d6e0f3 Add mod: "raise gpu driver timeout" (thanks stabs) 2022-06-22 06:34:10 +02:00
6 changed files with 8 additions and 1 deletions

View File

@ -106,6 +106,7 @@ Mods that require System rights<br>
<tr><td>[all]\<b>move open with to top</b></td><td>quality</td><td>Replaces &quot;Open with&quot; in the context menu with a new option, that allows you to pick a program from a dialogue.</td></tr>
<tr><td>[all]\<b>postSetup</b></td><td>quality</td><td>Runs scripts after Windows Setup is done.</td></tr>
<tr><td>[all]\<b>power and standby button both standby</b></td><td>stability, quality</td><td>Keep the computer from shutting down when (accidentally) pressing the power button. When pressing the button on purpose, you likely want the machine to stop operation rather quickly and reliably, so using sleep is often the better choice.</td></tr>
<tr><td>[all]\<b>raise gpu driver timeout</b></td><td>stability</td><td>Raises the TDR timeout from 2 seconds to 16 seconds. Reduces false detection of GPU driver crashes due to strong spikes of usage.</td></tr>
<tr><td>[all]\<b>recycle bin in computer</b></td><td>quality</td><td>Shows the Recycle Bin in Computer/This PC for easy access.</td></tr>
<tr><td>[all]\<b>remove translated user folders</b></td><td>quality</td><td>Removes translation for a user&#x27;s main folders, which resolves issues with sorting, and confusion because of falsified names.</td></tr>
<tr><td>[all]\<b>sane date and time format</b></td><td>none</td><td>Sets your date format to DD.MM.YYYY and time format to HH:MM:SS (24-hour clock).</td></tr>

View File

@ -106,6 +106,7 @@ Mods that require System rights<br>
<tr><td>[all]\<b>move open with to top</b></td><td>quality</td><td>Replaces &quot;Open with&quot; in the context menu with a new option, that allows you to pick a program from a dialogue.</td></tr>
<tr><td>[all]\<b>postSetup</b></td><td>quality</td><td>Runs scripts after Windows Setup is done.</td></tr>
<tr><td>[all]\<b>power and standby button both standby</b></td><td>stability, quality</td><td>Keep the computer from shutting down when (accidentally) pressing the power button. When pressing the button on purpose, you likely want the machine to stop operation rather quickly and reliably, so using sleep is often the better choice.</td></tr>
<tr><td>[all]\<b>raise gpu driver timeout</b></td><td>stability</td><td>Raises the TDR timeout from 2 seconds to 16 seconds. Reduces false detection of GPU driver crashes due to strong spikes of usage.</td></tr>
<tr><td>[all]\<b>recycle bin in computer</b></td><td>quality</td><td>Shows the Recycle Bin in Computer/This PC for easy access.</td></tr>
<tr><td>[all]\<b>remove translated user folders</b></td><td>quality</td><td>Removes translation for a user&#x27;s main folders, which resolves issues with sorting, and confusion because of falsified names.</td></tr>
<tr><td>[all]\<b>sane date and time format</b></td><td>none</td><td>Sets your date format to DD.MM.YYYY and time format to HH:MM:SS (24-hour clock).</td></tr>

View File

@ -0,0 +1 @@
Raises the TDR timeout from 2 seconds to 16 seconds. Reduces false detection of GPU driver crashes due to strong spikes of usage.

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\\GraphicsDrivers","/v","TdrDelay","/t","REG_DWORD","/d","0x00000010","/f"])

View File

@ -0,0 +1 @@
stability

View File

@ -1,2 +1,2 @@
@echo off
exit /b 9
exit /b 10