<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ITtelligence</title>
	<atom:link href="http://blog.ittelligence.co.za/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ittelligence.co.za</link>
	<description>ITtelligence Everywhere</description>
	<lastBuildDate>Tue, 08 Nov 2011 16:25:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Script for GPO to change SCCM client site ID</title>
		<link>http://blog.ittelligence.co.za/2011/11/08/script-for-gpo-to-change-sccm-client-site-id/</link>
		<comments>http://blog.ittelligence.co.za/2011/11/08/script-for-gpo-to-change-sccm-client-site-id/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 16:25:30 +0000</pubDate>
		<dc:creator>Shaun Vermaak</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[GPO]]></category>
		<category><![CDATA[ID]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://blog.ittelligence.co.za/?p=157</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<pre class="brush: vb; title: ; notranslate">
Option Explicit

Dim objSMSClient
Dim varSiteID

varSiteID = Wscript.Arguments.Named(&quot;SiteID&quot;)

If Trim(varSiteID) &lt;&gt; &quot;&quot; Then
 Set objSMSClient = CreateObject(&quot;Microsoft.SMS.Client&quot;)
 objSMSClient.SetAssignedSite(varSiteID)
End If
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.ittelligence.co.za/2011/11/08/script-for-gpo-to-change-sccm-client-site-id/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Macro to Convert to CamelHumpNotation</title>
		<link>http://blog.ittelligence.co.za/2011/03/28/camelhumpnotation/</link>
		<comments>http://blog.ittelligence.co.za/2011/03/28/camelhumpnotation/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 20:05:33 +0000</pubDate>
		<dc:creator>Shaun Vermaak</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[CamelHumpNotation]]></category>
		<category><![CDATA[Macro]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://blog.ittelligence.co.za/?p=138</guid>
		<description><![CDATA[This is a macro that convert values to CamelHumpNotation]]></description>
			<content:encoded><![CDATA[<pre>This is a macro that convert values to CamelHumpNotation
<pre class="brush: vb; title: ; notranslate">
Sub FixCamelHump()
'
' FixCamelHump Macro
'
    Dim strValue As String

    Range(&quot;A1&quot;).Select
    strValue = ActiveCell.Value
    Do While strValue &lt;&gt; &quot;&quot;
        ActiveCell.Value = FixThisString(strValue)
        ActiveCell.Offset(1, 0).Select
        strValue = ActiveCell.Value
    Loop
End Sub

Private Function FixThisString(strValue As String)
    Dim intCnt As Integer
    Dim blnStartOfWord As Boolean
    Dim strBuild As String
    Dim strCurrentChar As String

    For intCnt = 1 To Len(strValue)
        strCurrentChar = Mid(strValue, intCnt, 1)
        If IsLetter(strCurrentChar) = True Then
            If blnStartOfWord = False Then
                blnStartOfWord = True
                strBuild = strBuild &amp; UCase(strCurrentChar)
            Else
                strBuild = strBuild &amp; LCase(strCurrentChar)
            End If
        Else
            If blnStartOfWord = True Then
                blnStartOfWord = False
            End If
            strBuild = strBuild &amp; strCurrentChar
        End If
    Next
    FixThisString = strBuild
End Function

Private Function IsLetter(strChar As String) As Boolean
    If Asc(strChar) &gt;= 97 And Asc(strChar) &lt;= 122 Or Asc(strChar) &gt;= 65 And Asc(strChar) &lt;= 90 Then
        IsLetter = True
        Exit Function
    End If
    IsLetter = False
End Function
</pre>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.ittelligence.co.za/2011/03/28/camelhumpnotation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generic InputBox for CMDs</title>
		<link>http://blog.ittelligence.co.za/2010/10/13/generic-inputbox-for-cmds/</link>
		<comments>http://blog.ittelligence.co.za/2010/10/13/generic-inputbox-for-cmds/#comments</comments>
		<pubDate>Wed, 13 Oct 2010 14:41:19 +0000</pubDate>
		<dc:creator>Shaun Vermaak</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[CMD]]></category>
		<category><![CDATA[InputBox]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://blog.ittelligence.co.za/?p=119</guid>
		<description><![CDATA[Generic InputBox for CMDs]]></description>
			<content:encoded><![CDATA[<p><strong>Usage:</strong> CScript.exe //NOLOGO InputBox.vbs /SendTo:SOMEAPP.BAT /prompt:&#8221;YOUR PROMPT GOES HERE&#8221; /title:&#8221;YOUR TITLE GOES HERE&#8221;</p>
<p><strong>Example:</strong> CScript.exe //NOLOGO InputBox.vbs /SendTo:RUN.BAT /prompt:&#8221;Please enter you name&#8221; /title:&#8221;Name?&#8221;</p>
<p>Value supplied will be send to RUN.BAT as %1</p>
<p>Download InputBox.vbs -&gt; <a href="http://cr.tl/11ty">http://cr.tl/11ty</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ittelligence.co.za/2010/10/13/generic-inputbox-for-cmds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBS implementation of REG.exe for use in GPOs</title>
		<link>http://blog.ittelligence.co.za/2010/09/01/vbs-implementation-of-reg-exe-for-use-in-gpos/</link>
		<comments>http://blog.ittelligence.co.za/2010/09/01/vbs-implementation-of-reg-exe-for-use-in-gpos/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 18:48:58 +0000</pubDate>
		<dc:creator>Shaun Vermaak</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[GPO]]></category>
		<category><![CDATA[REG.exe]]></category>
		<category><![CDATA[Registry]]></category>

		<guid isPermaLink="false">http://blog.ittelligence.co.za/?p=110</guid>
		<description><![CDATA[Usage: REG.vbs /Action:ADD&#124;/Action:DELETE /Key:REGISTRYKEY [/Value:REGISTRYVALUE] [/DATA:REGISTRYVALUEDATA] [/TYPE:REGISTRYVALUETYPE] Examples: REG.vbs /Action:Add /Key:HKLM\SOFTWARE\NewKey REG.vbs /Action:Add /Key:HKLM\SOFTWARE\NewKey /Value:New_REG_SZ /Data:Value /Type:REG_SZ REG.vbs /Action:Add /Key:HKLM\SOFTWARE\NewKey /Value:New_REG_Binary /Data:&#8221;0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0&#8243; /Type:REG_BINARY REG.vbs /Action:Add /Key:HKLM\SOFTWARE\NewKey /Value:New_REG_DWORD /Data:0 /Type:REG_DWORD REG.vbs /Action:Add /Key:HKLM\SOFTWARE\NewKey /Value:New_REG_EXPAND_SZ /Data:Value /Type:REG_EXPAND_SZ REG.vbs /Action:Add /Key:HKLM\SOFTWARE\NewKey /Value:New_REG_MULTI_SZ /Data:&#8221;Value1,Value2,Value3&#8243; /Type:REG_MULTI_SZ REG.vbs /Action:Delete /Key:HKLM\SOFTWARE\NewKey /Value:New_REG_SZ REG.vbs /Action:Delete /Key:HKLM\SOFTWARE\NewKey http://cr.tl/11iy]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;"><strong>Usage:</strong> REG.vbs /Action:ADD|/Action:DELETE /Key:REGISTRYKEY [/Value:REGISTRYVALUE] [/DATA:REGISTRYVALUEDATA] [/TYPE:REGISTRYVALUETYPE]</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;"><strong>Examples:</strong></span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;">REG.vbs /Action:Add /Key:HKLM\SOFTWARE\NewKey</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;"><br />
</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;">REG.vbs /Action:Add /Key:HKLM\SOFTWARE\NewKey /Value:New_REG_SZ /Data:Value /Type:REG_SZ</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;"><br />
</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;">REG.vbs /Action:Add /Key:HKLM\SOFTWARE\NewKey /Value:New_REG_Binary /Data:&#8221;0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0&#8243; /Type:REG_BINARY</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;"><br />
</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;">REG.vbs /Action:Add /Key:HKLM\SOFTWARE\NewKey /Value:New_REG_DWORD /Data:0 /Type:REG_DWORD</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;"><br />
</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;">REG.vbs /Action:Add /Key:HKLM\SOFTWARE\NewKey /Value:New_REG_EXPAND_SZ /Data:Value /Type:REG_EXPAND_SZ</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;"><br />
</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;">REG.vbs /Action:Add /Key:HKLM\SOFTWARE\NewKey /Value:New_REG_MULTI_SZ /Data:&#8221;Value1,Value2,Value3&#8243; /Type:REG_MULTI_SZ</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;"><br />
</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;">REG.vbs /Action:Delete /Key:HKLM\SOFTWARE\NewKey /Value:New_REG_SZ</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;"><br />
</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;">REG.vbs /Action:Delete /Key:HKLM\SOFTWARE\NewKey</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 7.0pt; mso-bidi-font-size: 8.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;"><br />
</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 9.0pt; mso-bidi-font-size: 10.0pt; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin; color: black; mso-fareast-language: EN-ZA;"> </span><span style="font-size: 11px;"><a href="http://cr.tl/11iy"><span style="color: #6699ff;">http://cr.tl/11iy</span></a></span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: 14.25pt; background: white;"><span style="font-size: 11px;"><span style="color: #6699ff;"><br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ittelligence.co.za/2010/09/01/vbs-implementation-of-reg-exe-for-use-in-gpos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to start a disk cleanup on remote computer</title>
		<link>http://blog.ittelligence.co.za/2010/08/23/how-to-start-a-disk-cleanup-on-remote-computer/</link>
		<comments>http://blog.ittelligence.co.za/2010/08/23/how-to-start-a-disk-cleanup-on-remote-computer/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 18:32:03 +0000</pubDate>
		<dc:creator>Shaun Vermaak</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[disk cleanup]]></category>
		<category><![CDATA[remotely]]></category>

		<guid isPermaLink="false">http://blog.ittelligence.co.za/?p=102</guid>
		<description><![CDATA[If you want to start a disk cleanup with cleanmgr.exe, a sageset needs to exist. Then following batch first replicates the settings that the command “cleanmgr /sageset:777” with all options selected would have create. After that it executes “cleanmgr /sagerun:777”. For more info on cleanmgr.exe see http://cr.tl/11hm @Echo Off REG ADD &#8220;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Active Setup Temp Folders&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to start a disk cleanup with cleanmgr.exe, a sageset needs to exist.<br />
Then following batch first replicates the settings that the command “cleanmgr /sageset:777” with all options selected would have create. After that it executes “cleanmgr /sagerun:777”.<br />
For more info on cleanmgr.exe see <a title="http://cr.tl/11hm" href="http://cr.tl/11hm" target="_blank">http://cr.tl/11hm</a></p>
<hr />@Echo Off<br />
REG ADD &#8220;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Active Setup Temp Folders&#8221; /v &#8220;StateFlags0777&#8243; /t REG_DWORD /d 00000002 /f<br />
REG ADD &#8220;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Compress old files&#8221; /v &#8220;StateFlags0777&#8243; /t REG_DWORD /d 00000002 /f<br />
REG ADD &#8220;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Content Indexer Cleaner&#8221; /v &#8220;StateFlags0777&#8243; /t REG_DWORD /d 00000002 /f<br />
REG ADD &#8220;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Downloaded Program Files&#8221; /v &#8220;StateFlags0777&#8243; /t REG_DWORD /d 00000002 /f<br />
REG ADD &#8220;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Internet Cache Files&#8221; /v &#8220;StateFlags0777&#8243; /t REG_DWORD /d 00000002 /f<br />
REG ADD &#8220;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Memory Dump Files&#8221; /v &#8220;StateFlags0777&#8243; /t REG_DWORD /d 00000002 /f<br />
REG ADD &#8220;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Microsoft_Event_Reporting_2.0_Temp_Files&#8221; /v &#8220;StateFlags0777&#8243; /t REG_DWORD /d 00000002 /f<br />
REG ADD &#8220;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Offline Pages Files&#8221; /v &#8220;StateFlags0777&#8243; /t REG_DWORD /d 00000002 /f<br />
REG ADD &#8220;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Old ChkDsk Files&#8221; /v &#8220;StateFlags0777&#8243; /t REG_DWORD /d 00000002 /f<br />
REG ADD &#8220;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Recycle Bin&#8221; /v &#8220;StateFlags0777&#8243; /t REG_DWORD /d 00000002 /f<br />
REG ADD &#8220;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Remote Desktop Cache Files&#8221; /v &#8220;StateFlags0777&#8243; /t REG_DWORD /d 00000002 /f<br />
REG ADD &#8220;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Setup Log Files&#8221; /v &#8220;StateFlags0777&#8243; /t REG_DWORD /d 00000002 /f<br />
REG ADD &#8220;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Temporary Files&#8221; /v &#8220;StateFlags0777&#8243; /t REG_DWORD /d 00000002 /f<br />
REG ADD &#8220;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\WebClient and WebPublisher Cache&#8221; /v &#8220;StateFlags0777&#8243; /t REG_DWORD /d 00000002 /f<br />
CleanMgr /sagerun:777</p>
<hr />This batch file can then be executed on remote host with PSExec from Sysinternals<br />
PSExec.exe \\RemoteHost -c -d -f DiskCleanup.bat</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ittelligence.co.za/2010/08/23/how-to-start-a-disk-cleanup-on-remote-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

