<?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> &#187; How To</title>
	<atom:link href="http://summeylabs.com/wordpress/category/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://summeylabs.com/wordpress</link>
	<description></description>
	<lastBuildDate>Fri, 16 Jul 2010 14:07:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>ClearPageFileAtShutdown &#8211; slow shutdown</title>
		<link>http://summeylabs.com/wordpress/2010/07/clearpagefileatshutdown-slow-shutdown/</link>
		<comments>http://summeylabs.com/wordpress/2010/07/clearpagefileatshutdown-slow-shutdown/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 14:07:52 +0000</pubDate>
		<dc:creator>summey</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://summeylabs.com/wordpress/?p=562</guid>
		<description><![CDATA[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management go there and you will see ClearPageFileAtShutdown on the right double click that and change the one to a 0 and it will make your shutdown super fast! woot -Summey]]></description>
			<content:encoded><![CDATA[<p>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management<br />
go there and you will see ClearPageFileAtShutdown on the right double click that and change the one to a 0 and it will make your shutdown super fast! <img src='http://summeylabs.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>woot</p>
<p>-Summey</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsummeylabs.com%2Fwordpress%2F2010%2F07%2Fclearpagefileatshutdown-slow-shutdown%2F&amp;linkname=ClearPageFileAtShutdown%20%26%238211%3B%20slow%20shutdown"><img src="http://summeylabs.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://summeylabs.com/wordpress/2010/07/clearpagefileatshutdown-slow-shutdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Command Line Hack for: &#8220;Terminal Server Has Exceeded the Maximum Number of Allowed Connections&#8221;</title>
		<link>http://summeylabs.com/wordpress/2010/07/command-line-hack-for-terminal-server-has-exceeded-the-maximum-number-of-allowed-connections/</link>
		<comments>http://summeylabs.com/wordpress/2010/07/command-line-hack-for-terminal-server-has-exceeded-the-maximum-number-of-allowed-connections/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 15:34:32 +0000</pubDate>
		<dc:creator>summey</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://summeylabs.com/wordpress/?p=560</guid>
		<description><![CDATA[If you’ve worked on a network with Windows servers, you’ve encountered this error message at least 37,000 times: “The terminal server has exceeded the maximum number of allowed connections. The system can not log you on. The system has reached its licensed logon limit. Please try again later.” This problem happens because Windows only allows two [...]]]></description>
			<content:encoded><![CDATA[<div class="thecontent"><!-- google_ad_section_start --></p>
<p>If you’ve worked on a network with Windows servers, you’ve encountered this error message at least 37,000 times:</p>
<p><em>“The terminal server has exceeded the maximum number of allowed connections. The system can not log you on. The system has reached its licensed logon limit. Please try again later.”</em></p>
<p>This problem happens because Windows only allows two remote terminal services connections when you are in administrative mode, and you’ve either got two people already on that server, or more likely, you’ve got a disconnected session that still thinks it is active.</p>
<p>The problem with this error is that you have to actually get on the server console to fix the problem if the server isn’t in a domain. (If you are in a domain, then just open Terminal Services Manager and log off or disconnect the sessions)</p>
<p><img src="http://www.howtogeek.com/wp-content/uploads/CommandLineHackforTerminalServerHasExcee_CDC6/image02.png" alt="" width="446" height="240" /></p>
<p>To use the command line hacks, you might need to run them from another server if your local operating system doesn’t include the commands. You will also need to make sure that you are logged onto that server with an administrative account. The easiest way to do that is just map a drive (you don’t have to use a drive letter unless you choose to)</p>
<blockquote><p>net use /user:[username] \\servername\share</p></blockquote>
<p>Here’s a command line hack that you can use to figure out what sessions are connected to the server. Note that you could substitute the IP address for the server name.</p>
<blockquote><p>query session /server:servername</p></blockquote>
<p>Sample output:</p>
<p><img src="http://www.howtogeek.com/wp-content/uploads/CommandLineHackforTerminalServerHasExcee_CDC6/image03.png" alt="" width="607" height="93" /></p>
<p>Now we know that the session ID of the offending session is 2. We can use that in the next step, which is using the reset command to log off that user.</p>
<blockquote><p>reset session [ID] /server:servername</p></blockquote>
<p>Sample:</p>
<p><img src="http://www.howtogeek.com/wp-content/uploads/CommandLineHackforTerminalServerHasExcee_CDC6/image04.png" alt="" width="419" height="30" /></p>
<p>This command won’t display any output, but when we run the query command again, we should see that the session has now been disconnected:</p>
<p><img src="http://www.howtogeek.com/wp-content/uploads/CommandLineHackforTerminalServerHasExcee_CDC6/image05.png" alt="" width="609" height="65" /></p>
<p>-Summey</p>
<p><script src="http://www.howtogeek.com/wp-content/plugins/top-10/top-10-addcount.js.php?top_ten_id=313" type="text/javascript"></script> <!-- google_ad_section_end --></p>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsummeylabs.com%2Fwordpress%2F2010%2F07%2Fcommand-line-hack-for-terminal-server-has-exceeded-the-maximum-number-of-allowed-connections%2F&amp;linkname=Command%20Line%20Hack%20for%3A%20%26%238220%3BTerminal%20Server%20Has%20Exceeded%20the%20Maximum%20Number%20of%20Allowed%20Connections%26%238221%3B"><img src="http://summeylabs.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://summeylabs.com/wordpress/2010/07/command-line-hack-for-terminal-server-has-exceeded-the-maximum-number-of-allowed-connections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Sticky Notes &#8211; Windows 7</title>
		<link>http://summeylabs.com/wordpress/2010/04/using-sticky-notes-windows-7/</link>
		<comments>http://summeylabs.com/wordpress/2010/04/using-sticky-notes-windows-7/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 17:59:32 +0000</pubDate>
		<dc:creator>summey</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[sticky notes]]></category>
		<category><![CDATA[stickynotes]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://summeylabs.com/wordpress/?p=536</guid>
		<description><![CDATA[You can use Sticky Notes to write a to-do list, jot down a phone number, or do anything else that you&#8217;d use a pad of paper for. You can use Sticky Notes with a tablet pen or a standard keyboard. To write a note using a tablet pen, simply start writing on the note where [...]]]></description>
			<content:encoded><![CDATA[<div class="topic_body_partial Procedure">
<h1 class="title_article"></h1>
<p class="para">You can use Sticky Notes to write a to-do list, jot down a phone number, or do anything else that you&#8217;d use a pad of paper for. You can use Sticky Notes with a tablet pen or a standard keyboard. To write a note using a tablet pen, simply start writing on the note where you want the ink to appear. To type a note, click where you want the text to appear, and then start typing.</p>
<div class="example">
<p class="para">
<div class="embedObject" style="width: 213px;"><img id="pageContainer0_ID0EZH" class="embedObject" title="Picture of a sticky note" src="http://res1.windows.microsoft.com/resbox/en/Windows 7/Main/7/3/736a0896-fd7d-4297-8d4e-dd83bcfff2ea/736a0896-fd7d-4297-8d4e-dd83bcfff2ea.jpg" alt="Picture of a sticky note" width="213" height="292" /><span class="caption">Sticky note</span></div>
</div>
<p><a id="pageContainer0_ID0EJAAC" class="link_expandAll">Show all</a></p>
<div class="procedure">
<h4 class="title_procedure ecTitle">
<table class="link_table" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<div class="link_image_container"><a class="link_image_a" tabindex="-1" href="#"><img class="link_image_collapse" src="/Resources/3.0/shared/images/merged/expcol_imgs.png" alt="" /></a></div>
</td>
<td><a id="pageContainer0_ID0EMAAC" class="link_collapse" href="#">To create a new sticky note</a></td>
</tr>
</tbody>
</table>
</h4>
<div class="collapse">
<ul>
<li class="step">
<p class="para">
<p><span class="phrase">Open Sticky Notes by tapping the <span class="ui">Start</span> button <img id="pageContainer0_ID0EABAC" class="embedObject" title="Picture of the Start button" src="http://res2.windows.microsoft.com/resbox/en/Windows 7/Main/4/f/4f6cbd09-148c-4dd8-b1f2-48f232a2fd33/4f6cbd09-148c-4dd8-b1f2-48f232a2fd33.jpg" alt="Picture of the Start button" width="15" height="15" />. In the search box, type <span class="userInput">Sticky Notes</span>, and then tap <span class="ui">Sticky Notes</span> in the list of results.</span></p>
<p class="para">To create additional notes, click the <span class="ui">New Note</span> button.</p>
<p class="para">You can also open a new note by pressing Ctrl+N.</p>
</li>
</ul>
<div class="alertSet_outer">
<div class="alertSet_tip">
<div class="alertSet_icon"><img id="pageContainer0_ID0EUBAC" class="alert" title="Tip" src="/Resources/3.0/shared/images/merged/gl_ico.png" alt="Tip" /></div>
<div class="alertSet_text">
<h3 class="title_alertset_tip">Tip</h3>
<p class="para">To resize a note, drag an edge or corner of the note to make it larger or smaller.</p>
</div>
</div>
</div>
</div>
</div>
<div class="procedure">
<h4 class="title_procedure ecTitle">
<table class="link_table" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<div class="link_image_container"><a class="link_image_a" tabindex="-1" href="#"><img class="link_image_collapse" src="/Resources/3.0/shared/images/merged/expcol_imgs.png" alt="" /></a></div>
</td>
<td><a id="pageContainer0_ID0ELCAC" class="link_collapse" href="#">To delete a sticky note</a></td>
</tr>
</tbody>
</table>
</h4>
<div class="collapse">
<div class="introduction">
<p class="para">When you&#8217;ve finished using a note, you can delete it to clean up your desktop.</p>
</div>
<ol class="ordered_dec">
<li class="step">
<p class="para">Click the <span class="ui">Delete Note</span> button.</p>
</li>
<li class="step">
<p class="para">In the <span class="ui">Sticky Notes</span> dialog box, click <span class="ui">Yes</span>.</p>
<p class="para">You can also delete a note by pressing Ctrl+D.</p>
</li>
</ol>
<div class="alertSet_outer">
<div class="alertSet_note">
<div class="alertSet_icon"><img id="pageContainer0_ID0EGDAC" class="alert" title="Note" src="/Resources/3.0/shared/images/merged/gl_ico.png" alt="Note" /></div>
<div class="alertSet_text">
<h3 class="title_alertset_note">Note</h3>
<p class="para">Sticky Notes closes if  you delete all of your notes. To create a new note, reopen Sticky Notes.</p>
<div class="procedure">
<div>
<ul>
<li class="step">
<p class="para">
<p><span class="phrase">Open Sticky Notes by tapping the <span class="ui">Start</span> button <img id="pageContainer0_ID0EDEAC" class="embedObject" title="Picture of the Start button" src="http://res2.windows.microsoft.com/resbox/en/Windows 7/Main/4/f/4f6cbd09-148c-4dd8-b1f2-48f232a2fd33/4f6cbd09-148c-4dd8-b1f2-48f232a2fd33.jpg" alt="Picture of the Start button" width="15" height="15" />. In the search box, type <span class="userInput">Sticky Notes</span>, and then tap <span class="ui">Sticky Notes</span> in the list of results.</span></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="procedure">
<h4 class="title_procedure ecTitle">
<table class="link_table" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<div class="link_image_container"><a class="link_image_a" tabindex="-1" href="#"><img class="link_image_collapse" src="/Resources/3.0/shared/images/merged/expcol_imgs.png" alt="" /></a></div>
</td>
<td><a id="pageContainer0_ID0EXEAC" class="link_collapse" href="#">To change the color of a sticky note</a></td>
</tr>
</tbody>
</table>
</h4>
<div class="collapse">
<ul>
<li class="step">
<p class="para">Right-click the note that you want to change, and then click a color.</p>
</li>
</ul>
</div>
</div>
<div class="procedure lastElement">
<h4 class="title_procedure ecTitle">
<table class="link_table" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<div class="link_image_container"><a class="link_image_a" tabindex="-1" href="#"><img class="link_image_expand" src="/Resources/3.0/shared/images/merged/expcol_imgs.png" alt="" /></a></div>
</td>
<td><a id="pageContainer0_ID0ECFAC" class="link_expand" href="#">To format text in a sticky note</a></td>
</tr>
</tbody>
</table>
</h4>
<div class="expand">
<div class="introduction">
<p class="para">You can format  text, add bullets to make a list, or change the text size by using keyboard shortcuts. Here&#8217;s how:</p>
</div>
<ol class="ordered_dec">
<li class="step">
<p class="para">Select the text that you want to change.</p>
</li>
<li class="step">
<p class="para">Use the following keyboard shortcuts to format the text on your note:</p>
<div class="defaultTableBlock">
<table class="table lastElement" summary="Table describing keyboard shortcuts for formatting sticky notes">
<thead>
<tr>
<th>
<p class="para">Type of formatting</p>
</th>
<th>
<p class="para">Keyboard shortcut</p>
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<p class="para">Bold text</p>
</td>
<td>
<p class="para">Ctrl+B</p>
</td>
</tr>
<tr>
<td>
<p class="para">Italic text</p>
</td>
<td>
<p class="para">Ctrl+I</p>
</td>
</tr>
<tr>
<td>
<p class="para">Underlined text</p>
</td>
<td>
<p class="para">Ctrl+U</p>
</td>
</tr>
<tr>
<td>
<p class="para">Strikethrough</p>
</td>
<td>
<p class="para">Ctrl+T</p>
</td>
</tr>
<tr>
<td>
<p class="para">Bulleted list</p>
</td>
<td>
<p class="para">Ctrl+Shift+L</p>
<p class="para">(Press this keyboard shortcut again to switch to a numbered list.)</p>
</td>
</tr>
<tr>
<td>
<p class="para">Increased text size</p>
</td>
<td>
<p class="para">Ctrl+Shift+&gt;</p>
</td>
</tr>
<tr>
<td>
<p class="para">Decreased text size</p>
</td>
<td>
<p class="para lastElement">Ctrl+Shift+&lt;</p>
</td>
</tr>
</tbody>
</table>
</div>
</li>
</ol>
</div>
</div>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsummeylabs.com%2Fwordpress%2F2010%2F04%2Fusing-sticky-notes-windows-7%2F&amp;linkname=Using%20Sticky%20Notes%20%26%238211%3B%20Windows%207"><img src="http://summeylabs.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://summeylabs.com/wordpress/2010/04/using-sticky-notes-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where is My Network Places?</title>
		<link>http://summeylabs.com/wordpress/2010/04/where-is-my-network-places/</link>
		<comments>http://summeylabs.com/wordpress/2010/04/where-is-my-network-places/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 01:17:59 +0000</pubDate>
		<dc:creator>summey</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://summeylabs.com/wordpress/?p=531</guid>
		<description><![CDATA[QUESTION: I&#8217;m an old Windows XP user trying to assimilate the change to Windows 7. I can&#8217;t find My Network Places folder. ANSWER: You won&#8217;t find My Network Places, per se, in Windows 7 (or Vista). It&#8217;s been usurped by the much more robust Network and Sharing Center, which you&#8217;ll find in Control Panel and [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: x-small;"><strong>QUESTION:</strong><br />
I&#8217;m an old  Windows XP  user trying to assimilate the change to Windows 7.  I can&#8217;t  find My  Network Places folder.</p>
<p><strong>ANSWER:</strong><br />
You won&#8217;t  find My  Network Places, per se, in Windows 7 (or Vista). It&#8217;s  been  usurped by  the much more robust Network and Sharing Center, which  you&#8217;ll  find in  Control Panel and where you can perform all sorts of  tasks and get   information related to networking. However, if what  you&#8217;re looking for  is a list of  shared resources on your network that  you can connect to,  you&#8217;ll find that by  clicking &#8220;Network&#8221; on the  Start Menu. If you don&#8217;t  see &#8220;Network&#8221; there, then do  the following:</p>
<ol>
<li>Right  click the  Start button.</li>
<li>Select Properties.</li>
<li>Click the  Start Menu  tab.</li>
<li>Click the Customize button.</li>
<li>Scroll  down the list  and find &#8220;Network.&#8221;</li>
<li>Put a check mark in its box.</li>
<li>Click  OK.</li>
</ol>
<p>If you want to add a network connection,  you do that in  the Computer  window. Here&#8217;s how:</p>
<ol>
<li>On the Start  Menu, click  Computer.</li>
<li>In the right pane where the drives are  listed, right  click on  an empty space.</li>
<li>In the context menu,  select Add a  Network Location.</li>
<li>Follow the steps in the wizard  to create a  shortcut to a  network location.</li>
</ol>
<p>-Summey</span></p>
<p>﻿</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsummeylabs.com%2Fwordpress%2F2010%2F04%2Fwhere-is-my-network-places%2F&amp;linkname=Where%20is%20My%20Network%20Places%3F"><img src="http://summeylabs.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://summeylabs.com/wordpress/2010/04/where-is-my-network-places/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to stop Explorer from opening in the Libraries</title>
		<link>http://summeylabs.com/wordpress/2010/04/how-to-stop-explorer-from-opening-in-the-libraries/</link>
		<comments>http://summeylabs.com/wordpress/2010/04/how-to-stop-explorer-from-opening-in-the-libraries/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 01:01:51 +0000</pubDate>
		<dc:creator>summey</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://summeylabs.com/wordpress/?p=521</guid>
		<description><![CDATA[If you want to change the default location for Windows Explorer to open (Libraries), here&#8217;s how: Right click the Explorer icon on the taskbar. Hold down Shift and right click the Windows Explorer icon in the Jump List. Select Properties. On the Shortcut tab, change the Target field to open to the location of your [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: x-small;">If you want to change the default location for Windows  Explorer to open (Libraries), here&#8217;s how:</span></p>
<ol>
<li>Right click the  Explorer icon on the taskbar.</li>
<li>Hold down Shift and right click  the Windows Explorer icon in  the Jump List.</li>
<li>Select Properties.</li>
<li>On the Shortcut tab, change the Target field to open to the   location of your choice.</li>
<li>Click OK.</li>
</ol>
<p>To change it to  open to My Documents, change the Target field to:<br />
%SystemRoot%\explorer.exe /N,::{450D8FBA-AD25-11D0-98A8-0800361B1103}</p>
<p>To open to any other folder, change to:<br />
%SystemRoot%\explorer.exe folder path</p>
<p>-Summey</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsummeylabs.com%2Fwordpress%2F2010%2F04%2Fhow-to-stop-explorer-from-opening-in-the-libraries%2F&amp;linkname=How%20to%20stop%20Explorer%20from%20opening%20in%20the%20Libraries"><img src="http://summeylabs.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://summeylabs.com/wordpress/2010/04/how-to-stop-explorer-from-opening-in-the-libraries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using a Command Line to Uninstall Software on Remote PCs</title>
		<link>http://summeylabs.com/wordpress/2010/04/using-a-command-line-to-uninstall-software-on-remote-pcs/</link>
		<comments>http://summeylabs.com/wordpress/2010/04/using-a-command-line-to-uninstall-software-on-remote-pcs/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 14:14:09 +0000</pubDate>
		<dc:creator>summey</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://summeylabs.com/wordpress/?p=492</guid>
		<description><![CDATA[WMIC (Windows Management Instrumentation Command-Line) is a potent tool that often doesn&#8217;t see much use due to the lack of (easily accessible) documentation available. More information can be found on WMIC here: http://technet.microsoft.com/en-us/library/bb742610.aspx. We’ll be using WMIC with domain admin credentials to crawl through a list of nodes (PCs/Laptops) and uninstall an example program without [...]]]></description>
			<content:encoded><![CDATA[<div class="content">
<div id="start_content" class="extra_notes with_steps">
<p>WMIC (Windows Management Instrumentation Command-Line) is a potent tool that often doesn&#8217;t see much use due to the lack of (easily accessible) documentation available. More information can be found on WMIC here: <a href="http://technet.microsoft.com/en-us/library/bb742610.aspx">http://technet.microsoft.com/en-us/library/bb742610.aspx</a>. We’ll be using WMIC with domain admin credentials to crawl through a list of nodes (PCs/Laptops) and uninstall an example program without interrupting the user.</p>
</div>
<table>
<tbody>
<tr id="step_491">
<th id="1"> <a href="/how_to/show/179#1">1</a>.</th>
<td id="step_491_content" class="step_content">
<h3>Load up a command shell with appropriate access permissions</h3>
<p>Though a WMIC instruction can be given appropriate credentials prior to operation, it is typically best-practice to avoid clear-text typing the password (who is that looking over your shoulder;)). We’ll execute the runas command like the following:</p>
<p>Runas /user:DomainAdminAccount@DOMAIN cmd</p>
<p>… which will prompt us for the credentials of our DomainAdminAccount. If authenticated, we’ll be handed a command shell running as the Admin.</td>
<td class="screenshot"></td>
</tr>
<tr id="step_493">
<th id="2"> <a href="/how_to/show/179#2">2</a>.</th>
<td id="step_493_content" class="step_content">
<h3>Step into WMIC</h3>
<p>One of the nice features of WMIC is that it may be run from any machine. With our admin command shell, we&#8217;re going to enter the wmic command followed by enter. (Note: We could have jumped into WMIC directly from the runas command&#8230; this just breaks out the steps)</td>
<td class="screenshot"></td>
</tr>
<tr id="step_495">
<th id="3"> <a href="/how_to/show/179#3">3</a>.</th>
<td id="step_495_content" class="step_content">
<h3>Verify Program Installation (an optional informative step)</h3>
<p>With our WMIC prompt, we can ask many questions of a node (or nodes) and receive some nicely formatted replies. Though formatting the replies is beyond the scope of this &#8220;How To&#8221;, much more information can be found on the internet.</p>
<p>So let&#8217;s find out if a particular node even has our target software (Spiceworks does attempt to list this information in its software scan)</p>
<p>&gt;/node:COMPUTERNAME product get name,version,vendor</p>
<p>This command asks WMI to reply with a list including the Name, Version, and Vendor of all compliant software installations.</p>
<p>If you would like to filter for a specific product, you may do so. Here&#8217;s an example scanning a networked machine for all installed applications from the vendor &#8220;Apple, Inc&#8221;</p>
<p>&gt;/node:ANOTHEREXAMPLE product where vendor=&#8221;Apple Inc.&#8221; get name,vendor</p>
<p>(*Note from Anders4221:</p>
<p>A small hint if you have special characters like &#8216;-&#8217; or &#8216;/&#8217; in the computer name you need to use &#8216; &#8216; characters in order to get information from client)</p>
<p>(**Note from Joe3034:</p>
<p>Here is how you use wildcards in your search:</p>
<p>Surround the like phrase in double quotes and your search criteria in single quotes, and use % as the wildcard symbol.</p>
<p>e.g.:</p>
<p>/node:ComputerXYZ product where &#8220;vendor like &#8216;adobe%&#8217;&#8221; get name,version,identifyingNumber )</td>
<td class="screenshot"></td>
</tr>
<tr id="step_497">
<th id="4"> <a href="/how_to/show/179#4">4</a>.</th>
<td id="step_497_content" class="step_content">
<h3>Call for the Uninstallation</h3>
<p>So we can make a call to the WMI interface to uninstall a particular product&#8230; let&#8217;s pick on the MobileMe Control Panel from our previous example. The command:</p>
<p>&gt;/node:EXAMPLE product where name=&#8221;MobileMe Control Panel&#8221; call uninstall</p>
<p>&#8230; will prompt you for confirmation in the following (long) format:</p>
<p>Execute (\\EXAMPLE\ROOT\CIMV2:Win32_Product.IdentifyingNumber=&#8221;{6DA9102E-199F-43A0-A36B-6EF48081A658}&#8221;,Name=&#8221;MobileMe Control Panel&#8221;,Version=&#8221;2.1.0.24&#8243;)-&gt;Uninstall() (Y/N/?)?</p>
<p>.. to which you must reply &#8216;y&#8217; if you wish to uninstall. WMI compliant software will run the default uninstalation procedures without the user needing to do anything (they receive no prompts etc).</td>
<td class="screenshot"></td>
</tr>
<tr id="step_499">
<th id="5"> <a href="/how_to/show/179#5">5</a>.</th>
<td id="step_499_content" class="step_content">
<h3>Call Uninstall for a List of Machines (an optional informative step)</h3>
<p>Let&#8217;s assume you just got word that Adobe Reader has a serious flaw in it&#8217;s old version. In a panic, you asked all your users to blindly install the new version of Adobe reader straight from Adobe&#8217;s site. Thankfully, they all managed to do so&#8230; however you&#8217;ve received 3 tickets so far about an Acrobat.com icon on the desktop.</p>
<p>You have a flat text file of all your computer&#8217;s names stored in c:\computers.txt. You pop open a WMIC shell with appropriate permissions and enter the following command:</p>
<p>&gt;/node:@&#8221;c:\computers.txt&#8221; product where name=&#8221;Acrobat.com&#8221; call uninstall</p>
<p>Which iterates through your list, skipping nodes that are invalid (eg:machine is turned off) and those that don&#8217;t meet the criteria. You&#8217;ll need to confirm &#8216;y&#8217; that you want to uninstall on every node&#8230; but that may be a small price to pay for not needing to run around to every machine.</td>
<td class="screenshot"></td>
</tr>
</tbody>
</table>
<h3 id="conclusion"><a href="/how_to/show/179#conclusion"></a></h3>
<div id="end_content" class="extra_notes with_steps">
<p>Hopefully you&#8217;ve been intrigued by the potency of WMIC. Though the command-line use of the uninstall call may not be commonly needed with software management tools, AD, etc&#8230; it can sometimes be the best way to accomplish a task quickly without disturbing your user(s).</p>
<p>Let&#8217;s hope spiceworks takes its WMI implementation a step further in a future release and automates this for us;)</p>
</div>
<p><a class="print_how_to" onclick="window.print(); return false;" href="#">Print</a></p>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsummeylabs.com%2Fwordpress%2F2010%2F04%2Fusing-a-command-line-to-uninstall-software-on-remote-pcs%2F&amp;linkname=Using%20a%20Command%20Line%20to%20Uninstall%20Software%20on%20Remote%20PCs"><img src="http://summeylabs.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://summeylabs.com/wordpress/2010/04/using-a-command-line-to-uninstall-software-on-remote-pcs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure USB flash drives so you can install Windows from USB (WAY faster than using a disk).</title>
		<link>http://summeylabs.com/wordpress/2010/04/configure-usb-flash-drives-so-you-can-install-windows-from-usb-way-faster-than-using-a-disk/</link>
		<comments>http://summeylabs.com/wordpress/2010/04/configure-usb-flash-drives-so-you-can-install-windows-from-usb-way-faster-than-using-a-disk/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 20:16:20 +0000</pubDate>
		<dc:creator>summey</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://summeylabs.com/wordpress/?p=488</guid>
		<description><![CDATA[This is how I configure USB flash drives so that I can install Windows from USB (WAY faster than using a disk). 1. Insert the USB drive into the computer, and make sure you can see it in Explorer. 2. Launch a Command Prompt All typing from this point will be done in this same [...]]]></description>
			<content:encoded><![CDATA[<div class="content">
<div id="start_content" class="extra_notes with_steps">
<p>This is how I configure USB flash drives so that I can install Windows from USB (WAY faster than using a disk).</p>
</div>
<table>
<tbody>
<tr id="step_3853">
<th id="1"> <a href="/how_to/show/1081#1">1</a>.</th>
<td id="step_3853_content" class="step_content">
<h3>Insert the USB drive into the computer, and make sure you can see it in Explorer.</h3>
</td>
<td class="screenshot"></td>
</tr>
<tr id="step_3854">
<th id="2"> <a href="/how_to/show/1081#2">2</a>.</th>
<td id="step_3854_content" class="step_content">
<h3>Launch a Command Prompt</h3>
<p>All typing from this point will be done in this same window.</td>
<td class="screenshot"></td>
</tr>
<tr id="step_3855">
<th id="3"> <a href="/how_to/show/1081#3">3</a>.</th>
<td id="step_3855_content" class="step_content">
<h3>Type: DISKPART {ENTER}</h3>
<p>This will start DISKPART.exe, which we will use to get this drive formatted and bootable.</td>
<td class="screenshot"></td>
</tr>
<tr id="step_3856">
<th id="4"> <a href="/how_to/show/1081#4">4</a>.</th>
<td id="step_3856_content" class="step_content">
<h3>Type: list disk {ENTER}</h3>
<p>This will give you a list of installed disks, but they are labeled using the disk&#8217;s number, not the name or drive letter (though it does show the size). If you are not sure which disk you want, open Disk Management, they are listed by all three identifiers there.</p>
<p>Attached is a pic of what this looks like on a Windows 7 machine.</p>
<p>WARNING:</p>
<p>If you select the wrong disk here, you will lose data, and possible overwrite your OS. Be sure you have the right disk selected.</td>
<td class="screenshot"></td>
</tr>
<tr id="step_3857">
<th id="5"> <a href="/how_to/show/1081#5">5</a>.</th>
<td id="step_3857_content" class="step_content">
<h3>Type: select disk x {ENTER}</h3>
<p>Where x = the disk number you want to format.</p>
<p>In the case of the example image it would be Disk 3, so to select the disk, type: select disk 3 {ENTER}</p>
<p>Remember to substitute the correct number for the disk you want to select.</td>
<td class="screenshot"></td>
</tr>
<tr id="step_3858">
<th id="6"> <a href="/how_to/show/1081#6">6</a>.</th>
<td id="step_3858_content" class="step_content">
<h3>Type: clean {ENTER}</h3>
<p>This will wipe the disk.</td>
<td class="screenshot"></td>
</tr>
<tr id="step_3859">
<th id="7"> <a href="/how_to/show/1081#7">7</a>.</th>
<td id="step_3859_content" class="step_content">
<h3>Type: create partition primary {ENTER}</h3>
<p>This will create a new partition on the drive.</td>
<td class="screenshot"></td>
</tr>
<tr id="step_3860">
<th id="8"> <a href="/how_to/show/1081#8">8</a>.</th>
<td id="step_3860_content" class="step_content">
<h3>Type: select partition 1 {ENTER}</h3>
<p>This will select the partition you just created.</td>
<td class="screenshot"></td>
</tr>
<tr id="step_3861">
<th id="9"> <a href="/how_to/show/1081#9">9</a>.</th>
<td id="step_3861_content" class="step_content">
<h3>Type: active {ENTER}</h3>
<p>This will set the partition to active (this is what allows a computer to boot from a drive).</td>
<td class="screenshot"></td>
</tr>
<tr id="step_3862">
<th id="10"> <a href="/how_to/show/1081#10">10</a>.</th>
<td id="step_3862_content" class="step_content">
<h3>Type: FORMAT FS=FAT32 {ENTER}</h3>
<p>Wait for it to get to 100% complete, this will format the drive using the Fat32 file system.</td>
<td class="screenshot"></td>
</tr>
<tr id="step_3864">
<th id="11"> <a href="/how_to/show/1081#11">11</a>.</th>
<td id="step_3864_content" class="step_content">
<h3>Type ASSIGN {ENTER}</h3>
<p>This will assign a drive letter to the drive in Explorer.</td>
<td class="screenshot"></td>
</tr>
</tbody>
</table>
<h3 id="conclusion"></h3>
<div id="end_content" class="extra_notes with_steps">
<p>Now you should have a USB disk ready for the OS source files (you can either extract them directly from an ISO file, or just copy them from an install disk).</p>
<p>Using this, I was able to install Windows 7 x64 on an HP Elite 7000 in just under 7 minutes from first boot to desktop.</p>
</div>
<p><a class="print_how_to" onclick="window.print(); return false;" href="#">Print</a></p>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsummeylabs.com%2Fwordpress%2F2010%2F04%2Fconfigure-usb-flash-drives-so-you-can-install-windows-from-usb-way-faster-than-using-a-disk%2F&amp;linkname=Configure%20USB%20flash%20drives%20so%20you%20can%20install%20Windows%20from%20USB%20%28WAY%20faster%20than%20using%20a%20disk%29."><img src="http://summeylabs.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://summeylabs.com/wordpress/2010/04/configure-usb-flash-drives-so-you-can-install-windows-from-usb-way-faster-than-using-a-disk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Phone 7 Series Preview</title>
		<link>http://summeylabs.com/wordpress/2010/02/windows-phone-7-series-preview/</link>
		<comments>http://summeylabs.com/wordpress/2010/02/windows-phone-7-series-preview/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 16:02:05 +0000</pubDate>
		<dc:creator>summey</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://summeylabs.com/wordpress/?p=404</guid>
		<description><![CDATA[look promising - Summey]]></description>
			<content:encoded><![CDATA[<p><object id="wsj_fp" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="363" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="flashvars" value="videoGUID=696DCE5C-454B-4849-B160-8BA085174B7F&amp;playerid=1000&amp;plyMediaEnabled=1&amp;configURL=http://wsj.vo.llnwd.net/o28/players/&amp;autoStart=false" /><param name="src" value="http://online.wsj.com/media/swf/VideoPlayerMain.swf" /><param name="name" value="flashPlayer" /><param name="bgcolor" value="#FFFFFF" /><embed id="wsj_fp" type="application/x-shockwave-flash" width="512" height="363" src="http://online.wsj.com/media/swf/VideoPlayerMain.swf" bgcolor="#FFFFFF" name="flashPlayer" flashvars="videoGUID=696DCE5C-454B-4849-B160-8BA085174B7F&amp;playerid=1000&amp;plyMediaEnabled=1&amp;configURL=http://wsj.vo.llnwd.net/o28/players/&amp;autoStart=false" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>look promising</p>
<p>- Summey</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsummeylabs.com%2Fwordpress%2F2010%2F02%2Fwindows-phone-7-series-preview%2F&amp;linkname=Windows%20Phone%207%20Series%20Preview"><img src="http://summeylabs.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://summeylabs.com/wordpress/2010/02/windows-phone-7-series-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Network Monitor 3.3 Overview</title>
		<link>http://summeylabs.com/wordpress/2010/02/microsoft-network-monitor-3-3-overview/</link>
		<comments>http://summeylabs.com/wordpress/2010/02/microsoft-network-monitor-3-3-overview/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 17:13:18 +0000</pubDate>
		<dc:creator>summey</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://summeylabs.com/wordpress/?p=398</guid>
		<description><![CDATA[if you like wireshark you should like this. Microsoft Network Monitor 3.3 Overview -Summey]]></description>
			<content:encoded><![CDATA[<p>if you like wireshark you should like this.</p>
<p><a title="Microsoft Network Monitor 3.3 Overview" href="http://channel9.msdn.com/posts/Darryl/Microsoft-Network-Monitor-33-Overview/" target="_blank">Microsoft Network Monitor 3.3 Overview</a></p>
<p>-Summey</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsummeylabs.com%2Fwordpress%2F2010%2F02%2Fmicrosoft-network-monitor-3-3-overview%2F&amp;linkname=Microsoft%20Network%20Monitor%203.3%20Overview"><img src="http://summeylabs.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://summeylabs.com/wordpress/2010/02/microsoft-network-monitor-3-3-overview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Renewing the  self-signed certificate for exchange 2007</title>
		<link>http://summeylabs.com/wordpress/2010/01/renewing-the-self-signed-certificate-for-exchange-2007/</link>
		<comments>http://summeylabs.com/wordpress/2010/01/renewing-the-self-signed-certificate-for-exchange-2007/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 21:17:48 +0000</pubDate>
		<dc:creator>summey</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://summeylabs.com/wordpress/?p=370</guid>
		<description><![CDATA[http://exchangepedia.com/blog/2008/01/exchange-server-2007-renewing-self.html Link above is for renewing the  self-signed certificate]]></description>
			<content:encoded><![CDATA[<p><a href="http://exchangepedia.com/blog/2008/01/exchange-server-2007-renewing-self.html">http://exchangepedia.com/blog/2008/01/exchange-server-2007-renewing-self.html</a></p>
<p>Link above is for renewing the  self-signed certificate</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsummeylabs.com%2Fwordpress%2F2010%2F01%2Frenewing-the-self-signed-certificate-for-exchange-2007%2F&amp;linkname=Renewing%20the%20%20self-signed%20certificate%20for%20exchange%202007"><img src="http://summeylabs.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://summeylabs.com/wordpress/2010/01/renewing-the-self-signed-certificate-for-exchange-2007/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
