Difference between revisions of "Themes"
From WPKG | Open Source Software Deployment and Distribution
Dereckmartin (Talk | contribs) |
m |
||
Line 1: | Line 1: | ||
− | |||
== Windows Theme Service == | == Windows Theme Service == | ||
I prefer to disable the themes service on all machines. It will free up some memory and improve performance on most machines. Below is the XML file to do so. | I prefer to disable the themes service on all machines. It will free up some memory and improve performance on most machines. Below is the XML file to do so. | ||
Line 18: | Line 17: | ||
</package> | </package> | ||
</source> | </source> | ||
+ | |||
+ | [[Category: Changing Windows settings]] | ||
+ | [[Category:Silent Installers]] |
Revision as of 21:08, 20 October 2008
Windows Theme Service
I prefer to disable the themes service on all machines. It will free up some memory and improve performance on most machines. Below is the XML file to do so.
XML
<package
id="theme_service"
name="Theme Servce"
revision="1"
priority="5">
<install cmd='sc config themes start=disabled' />
<exit code="any" />
<install cmd='net stop themes' />
<exit code="any" />
</package>