added tweak: disable winsat schedule

disables the scheduled task responsible for measuring the system's
performance index, which is generally useless
This commit is contained in:
Fierelier 2020-04-20 14:40:15 +02:00
parent c658ad763d
commit 16b69351bc
4 changed files with 10 additions and 0 deletions

View File

@ -22,6 +22,7 @@ i do not guarantee that that all of the reversals are accurate across different
| x | [\[longhorn-series\]/disable superfetch](../tweaks/[longhorn-series]/disable superfetch) | superfetch stores frequently accessed data in RAM. this is supposed to speed up read speeds, but in practice, it just causes unnecessary i/o activity, especially on HDDs. slow on HDDs, useless on SSDs as they're fast enough as-is, so this is disabled. |
| x | [\[longhorn-series\]/disable windows defender](../tweaks/[longhorn-series]/disable windows defender) | windows defender is not that good of anti-virus, and also causes a boatload of i/o activity, especially when a lot is going on. definitely worth disabling. |
| x | [\[longhorn-series\]/disable windows search](../tweaks/[longhorn-series]/disable windows search) | the windows search service is responsible for indexing the files on your drives. the service speeds up search, however, also causes unexpected i/o activity sometimes. |
| x | [\[longhorn-series\]/disable winsat schedule](../tweaks/[longhorn-series]/disable winsat schedule) | disables the scheduled task responsible for measuring the system's performance index, which is generally useless |
| x | [\[longhorn-series\]/enable file extensions](../tweaks/[longhorn-series]/enable file extensions) | this enables file extensions (like .exe and .zip) for every newly created user. |
| x | [\[longhorn-series\]/post-setup script - disable hibernation](../tweaks/[longhorn-series]/post-setup script - disable hibernation) | hibernation locks down your file system while windows is hibernating or shut down (if fast startup is enabled). editing the file-system outside of windows while this is the case, perhaps for recovery purposes, can likely corrupt your data. |
| x | [\[longhorn-series\]/post-setup script - master](../tweaks/[longhorn-series]/post-setup script - master) | this calls all .cmd scripts in `%WinDir%\Setup\Scripts\opus` after setup (within OOBE, with SYSTEM rights). a log-file is then created at `%SystemDrive%\opus-nt-setupcomplete.log`. the scripts destroy themselves after this. |

View File

@ -0,0 +1,7 @@
def main():
from distutils.dir_util import copy_tree
if not "longhorn-series" in env.os.tags: env.applied = False; return
if not env.applicationMode != 2: env.applied = False; return
copy_tree(env.pathJoin(env.fdir,"wim"),env.tmpWim)
main()

View File

@ -0,0 +1 @@
disables the scheduled task responsible for measuring the system's performance index, which is generally useless

View File

@ -0,0 +1 @@
schtasks /change /tn "Microsoft\Windows\Maintenance\WinSAT" /disable