Difference between revisions of "Themes"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
(XML)
Line 8: Line 8:
 
name="Theme Servce"
 
name="Theme Servce"
 
revision="1"
 
revision="1"
 +
reboot="false"
 +
execute="once"
 
priority="5">
 
priority="5">
 +
 
 
<install cmd='sc config themes start=disabled' />
+
<install cmd='sc config themes start= disabled' >
 
<exit code="any" />
 
<exit code="any" />
<install cmd='net stop themes' />
+
</install>
 +
<install cmd='net stop themes' >
 
<exit code="any" />
 
<exit code="any" />
+
</install>
 
</package>
 
</package>
 
</source>
 
</source>

Revision as of 10:19, 13 November 2010

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"
	reboot="false"
	execute="once"
	priority="5">

		
	<install cmd='sc config themes start= disabled' >
		<exit code="any" />
	</install>
	<install cmd='net stop themes' >
		<exit code="any" />
	</install>		
</package>