 




<?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>The VBScript Network and Systems Administrator&#039;s Cafe &#187; undocumented windows</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/tag/undocumented-windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator</link>
	<description></description>
	<lastBuildDate>Tue, 11 Oct 2011 18:36:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Writing scripts that use speech with the Windows Speech API</title>
		<link>http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/writing-scripts-that-use-speech-with-the-windows-speech-api/</link>
		<comments>http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/writing-scripts-that-use-speech-with-the-windows-speech-api/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 02:01:08 +0000</pubDate>
		<dc:creator>Jerry Lees</dc:creator>
				<category><![CDATA[Office Agent]]></category>
		<category><![CDATA[SAPI.SpVoice]]></category>
		<category><![CDATA[Sound]]></category>
		<category><![CDATA[Speech API]]></category>
		<category><![CDATA[undocumented windows]]></category>
		<category><![CDATA[VBScipt]]></category>
		<category><![CDATA[VBScript Objects]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/writing-scripts-that-use-speech-with-the-windows-speech-api/</guid>
		<description><![CDATA[I&#8217;ve been looking for ways to make a script speak the information it needs to relay to the user just for fun and, unfortunately the only scripts I could find out there were extremely elaborate onces that use the Microsoft Office Agents. While they fit the bill they were annoying and required Microsoft office components [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been looking for ways to make a script speak the information it needs to relay to the user just for fun and, unfortunately the only scripts I could find out there were extremely elaborate onces that use the Microsoft Office Agents. While they fit the bill they were annoying and required Microsoft office components to be installed&#8230; that just wouldn&#8217;t do.</p>
<p>Then I found the Windows Sound API. It doesn&#8217;t require anything at all to be installed and it works fine. The script below is simple and easy to implement in your code. Check it out:</p>
<p><span style="color: #0000ff">strText = &#8220;Hello, there&#8230;. can you write code?&#8221;</span></p>
<p><span style="color: #0000ff">Set objVoice = CreateObject(&#8220;SAPI.SpVoice&#8221;)<br />
objVoice.Speak strText</span></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/writing-scripts-that-use-speech-with-the-windows-speech-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Tip: Clearing Internet Explorer cached data from the command line</title>
		<link>http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/windows-tips-clearing-internet-explorer-cached-data-from-the-command-line/</link>
		<comments>http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/windows-tips-clearing-internet-explorer-cached-data-from-the-command-line/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 04:14:08 +0000</pubDate>
		<dc:creator>Jerry Lees</dc:creator>
				<category><![CDATA[batch commands]]></category>
		<category><![CDATA[batch files]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[rundll.exe]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[undocumented windows]]></category>
		<category><![CDATA[windows secrets]]></category>
		<category><![CDATA[windows tips]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/?p=186</guid>
		<description><![CDATA[As a Network Administrator sometimes you need to clear the browsing history, cookies, or the like for a entire community of users. Sure, you could tell them how to do it thinking that you were being super smart by providing instructions for them. However, as you well know there will be some who will be unable [...]]]></description>
				<content:encoded><![CDATA[<p>As a Network Administrator sometimes you need to clear the browsing history, cookies, or the like for a entire community of users. Sure, you could tell them how to do it thinking that you were being super smart by providing instructions for them. However, as you well know there will be some who will be unable to follow the directions and you will spend 3 times the amount of time it took you to write the directions and refine them to a point where any one could do it&#8212; or so you thought. All the while, thinking about the amount of time you will save by having the users do it.</p>
<p>Why not be really lazy!!!??!? And do it with a batch script? You could then put it in their login script and it would happen at their next logon, or every logon for that matter. Well, there&#8217;s an easy way to do this with windows&#8217; built in functions&#8211; it&#8217;s just obscure enough to not be found anywhere you would normally look!</p>
<p>Yo can preform many of the things I mentioned (and more) with Microsoft&#8217;s RUNDLL.EXE file, plus you don&#8217;t have to write a line of VBScript to accomplish the task!</p>
<p>Here is a short list of some tasks you can preform on IE, along with the command to do it&#8230; give them a shot!</p>
<p><strong>Temporary Internet Files<br />
</strong>RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8</p>
<p><strong>Cookies<br />
</strong>RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2</p>
<p><strong>History<br />
</strong>RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1</p>
<p><strong>Form Data<br />
</strong>RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16</p>
<p><strong>Passwords<br />
</strong>RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32</p>
<p><strong>Delete All<br />
</strong>RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255</p>
<p><strong>Delete All &#8211; &#8220;Also delete files and settings stored by add-ons&#8221;<br />
</strong>RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351</p>
<p> These commands should work in Internet Explorer 7</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/windows-tips-clearing-internet-explorer-cached-data-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
