<?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>Remote Administration For Windows &#187; Free</title>
	<atom:link href="http://www.intelliadmin.com/index.php/category/free/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.intelliadmin.com</link>
	<description>Windows Network Administration Software</description>
	<lastBuildDate>Wed, 08 Feb 2012 13:36:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Get notified when an IP changes</title>
		<link>http://www.intelliadmin.com/index.php/2011/12/get-notified-when-an-ip-changes/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/12/get-notified-when-an-ip-changes/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 16:46:39 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Free]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Utility]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=4523</guid>
		<description><![CDATA[I got a question from John this week: &#8220;A few of my clients are using a broadband connection with DHCP addresses for the public interface. Do you know of a script or program that can be used to monitor the IP address and send a email if the IP address changes?&#8221; Good question. It is [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/12/get-notified-when-an-ip-changes/" title="Permanent link to Get notified when an IP changes"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/Command.jpg" width="64" height="54" alt="Post image for Get notified when an IP changes" /></a>
</p><p>I got a question from John this week:</p>
<p>&#8220;A few of my clients are using a broadband connection with DHCP addresses for the public interface. Do you know of a script or program that can be used to monitor the IP address and send a email if the IP address changes?&#8221;</p>
<p>Good question. It is possible to get IP address lists from VB Script, but we happen to have a utility we have used internally for quite some time. It is called &#8220;MyIP.exe&#8221;</p>
<p>MyIP.exe has two options. You can get a current list of IP addresses like this:</p>
<p><CODE>MyIP.exe /list</code></p>
<p>It will return a list of your current IP addresses to the command line:</p>
<p><code>C:\temp>myip /list<br />
10.10.29.231<br />
192.168.68.1<br />
192.168.198.1</code></p>
<p>The second option is /wait. It will pause until it sees an IP change. When the change happens it will pause for 15 seconds to allow any DHCP addressing to settle down, and then finally return the result to the command line.</p>
<p>How do we set this up to email when we detect an IP change?</p>
<p>We can use <a href="http://www.blat.net/">blat</a>. Blat is a tool for sending email from the command line. </p>
<p>Here is how I would structure a bat file to use both programs:<br />
<code><br />
:Loop<br />
@ECHO OFF<br />
ECHO IP Address Change > status.log<br />
ECHO ========================= >> status.log<br />
ECHO The computer %COMPUTERNAME% has had an IP address change >> status.log<br />
ECHO This is the new IP list: >> status.log<br />
MyIP.exe /wait >> status.log<br />
blat.exe -f support@intelliadmin.com -to support@intelliadmin.com -server mysmtp.server.com -subject "IP Change" -bodyF status.log<br />
ECHO "Waiting for IP Change..."<br />
goto loop</code></p>
<p>What is going on in the code above?</p>
<p>First we build up a file called status.log. It is filled with the body of our email. It contains everything except our list of changed IP addresses. Then MyIP.exe will wait until a change happens - when it does, those IPs are written to the end of status.log</p>
<p>Finally, blat sends out the text file with the subject "IP Change". When that is done, it loops back around to wait for a change all over again.</p>
<p>One important thing to note about SMTP - Many internet providers are blocking send from port 25 by default, except to their own email servers. So make sure you test the script out before depending on it.</p>
<p>MyIP.exe can be found in our downloads section:</p>
<p><a href="http://www.intelliadmin.com/index.php/downloads/">http://www.intelliadmin.com/index.php/downloads/</a></p>
<p>Blat can be found here:</p>
<p><a href="http://www.blat.net/">http://www.blat.net/</a></p>
<p>One final note. Most likely you want this IP address information because you need to remote into their computer from time to time. Our <a href="http://www.intelliadmin.com/index.php/enterprise-remote-control/">Enterprise Remote control</a> has this functionality built in. It will automatically track all IP address changes on remote machines, and you only need a username to find their computer! - Might save you a lot of time and trouble:) </p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/12/get-notified-when-an-ip-changes/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>A Free Windows File Copy Alternative</title>
		<link>http://www.intelliadmin.com/index.php/2011/08/a-free-windows-file-copy-alternative/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/08/a-free-windows-file-copy-alternative/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 03:55:07 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Backups]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Utility]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=4135</guid>
		<description><![CDATA[If you have ever copied a large number of files on Windows, you know how frustrating it can be. Sometimes a simple error can cancel a huge job. Sometimes you might start a copy before leaving the office&#8230;only to find out that 10 minutes into it, Windows asks you if you want to replace a [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/08/a-free-windows-file-copy-alternative/" title="Permanent link to A Free Windows File Copy Alternative"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/Folder.jpg" width="55" height="55" alt="Post image for A Free Windows File Copy Alternative" /></a>
</p><p>If you have ever copied a large number of files on Windows, you know how frustrating it can be.</p>
<p>Sometimes a simple error can cancel a huge job.</p>
<p>Sometimes you might start a copy before leaving the office&#8230;only to find out that 10 minutes into it, Windows asks you if you want to replace a file.</p>
<p>Don&#8217;t even get me started with the estimated time to complete dialogs &#8211; totally worthless.</p>
<p>Found a solution &#8211; It is a free tool called TeraCopy.</p>
<p>The part I like about it is that it is lightweight, and it is only for copying files.</p>
<p>Nothing else.</p>
<p>You can easily access it from any folder or file. Right click, and send to TeraCopy&#8230;could not be easier:</p>
<p><img src="http://www.intelliadmin.com/images/Tera%20Copy%20Context%20Menu.jpg" alt="Tera Copy Context Menu"/></p>
<p>What if you want to copy your files and then shutdown your system? You can easily tell TeraCopy to do that:</p>
<p><img src="http://www.intelliadmin.com/images/Tera%20Copy%20Complete%20Options.jpg"alt="Tera Copy Complete Options"/></p>
<p>What about those replace or skip dialogs? You tell it what to do &#8211; without waiting 5 minutes for it to ask you:</p>
<p><img src="http://www.intelliadmin.com/images/Tera%20Copy%20Options.jpg" alt="Tera Copy Options"/></p>
<p>Even better, you can pause, and resume file copies. Can&#8217;t tell you how many times I wanted to do this to take the load off the network for a minute or two:</p>
<p><img src="http://www.intelliadmin.com/images/Tera%20Copy%20Main%20Window.jpg" alt="Tera Copy Main Window"/></p>
<p>This is an awesome little utility. Works on 2000 through Windows 7 x64.</p>
<p>You can download it from here:</p>
<p><b><a href="http://www.codesector.com/download.php">TeraCopy Download Page</a></b></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/08/a-free-windows-file-copy-alternative/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Configure Windows 2008 Core server with a GUI</title>
		<link>http://www.intelliadmin.com/index.php/2011/08/configure-windows-2008-core-server-with-a-gui/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/08/configure-windows-2008-core-server-with-a-gui/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 14:00:49 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Free]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows 2008 Core]]></category>
		<category><![CDATA[Windows 2008 R2]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=4114</guid>
		<description><![CDATA[Windows Server Core is a stripped down version of 2008. It has no explorer, and most GUI functionality is removed. A great solution when you don&#8217;t want any extra software running on a production server. Soo much is missing that it can get frustrating when you just want to make a few changes before you [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/08/configure-windows-2008-core-server-with-a-gui/" title="Permanent link to Configure Windows 2008 Core server with a GUI"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/Command.jpg" width="64" height="54" alt="Post image for Configure Windows 2008 Core server with a GUI" /></a>
</p><p>Windows Server Core is a stripped down version of 2008. It has no explorer, and most GUI functionality is removed. </p>
<p>A great solution when you don&#8217;t want any extra software running on a production server.</p>
<p>Soo much is missing that it can get frustrating when you just want to make a few changes before you put the server into production.</p>
<p>When you boot, it simply launches a command line:</p>
<p><img src="http://www.intelliadmin.com/images/Core%20Server%20Cmd%20Line.jpg" alt="Windows 2008 Core R2 GUI Config"></p>
<p>With the latest version, it has improved&#8230;they do include a console interface to make configuration changes:</p>
<p><img src="http://www.intelliadmin.com/images/Core%20Command%20Line%20Config.jpg" alt="Windows 2008 Core R2 Cmd Line Config"></p>
<p>Still, that is too limited, and leaves you frustrated </p>
<p>You end up having to go through a lot of hoops to even make simple changes.</p>
<p>There is an answer to this &#8211; The Windows 2008 Server Core Configurator. </p>
<p>It comes in the form of an ISO, so you can burn it to a CD or add it to your VMWare storage.</p>
<p>Once you mount the ISO, or pop in the CD, you can launch it from the command line like this:</p>
<p><code>start_coreconfig</code></p>
<p>The first time you run it, it will check to make sure it has all of the software needed to run&#8230;namely powershell. </p>
<p>Once it is done, it launches &#8211; then you can easily make your configuration changes:</p>
<p><img src="http://www.intelliadmin.com/images/Core%20Configurator%20Main.jpg"></p>
<p>You can change network settings</p>
<p><img src="http://www.intelliadmin.com/images/Core%20Configurator%20Network.jpg" alt="Windows 2008 Core Server Network Configuration"/></p>
<p>Firewall</p>
<p><img src="http://www.intelliadmin.com/images/Core%20Configurator%20Firewall.jpg" alt="Windows 2008 Server Core Firewall Configuration"/></p>
<p>Remote Desktop</p>
<p><img src="http://www.intelliadmin.com/images/Core%20Configurator%20Remote%20Desktop.jpg" alt="Windows 2008 Server Core Remote Desktop Configuration"/></p>
<p>Services</p>
<p><img src="http://www.intelliadmin.com/images/Core%20Configurator%20Services.jpg" alt="Windows 2008 Server Core Services Configuration"/></p>
<p>And much more. The best part is, you make your changes pop out the CD and it leaves nothing behind. </p>
<p>You can download it for free from here:</p>
<p><a href="http://coreconfig.codeplex.com/">http://coreconfig.codeplex.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/08/configure-windows-2008-core-server-with-a-gui/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create a conditional batch file &#8211; Based on OS, or Computer Name</title>
		<link>http://www.intelliadmin.com/index.php/2011/07/create-a-conditional-batch-file-based-on-os-or-computer-name/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/07/create-a-conditional-batch-file-based-on-os-or-computer-name/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 17:03:40 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[BAT Files]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Free]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=4048</guid>
		<description><![CDATA[I got a question from one of our customers this week, &#8220;Is there a way to run profile generator based on its workstation name? We want cached mode activated for laptops but not desktops. Or can you advise how this can be determined with the batch file?&#8221; Actually we have had a tool internally that [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/07/create-a-conditional-batch-file-based-on-os-or-computer-name/" title="Permanent link to Create a conditional batch file &#8211; Based on OS, or Computer Name"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/Command.jpg" width="64" height="54" alt="Post image for Create a conditional batch file &#8211; Based on OS, or Computer Name" /></a>
</p><p>I got a question from one of our customers this week,</p>
<p><i>&#8220;Is there a way to run <a href="http://www.intelliadmin.com/index.php/profile-generator/">profile generator</a> based on its workstation name? We want cached mode activated for laptops but not desktops. Or can you advise how this can be determined with the batch file?&#8221;</i></p>
<p>Actually we have had a tool internally that we have used for a long time. I decided to clean it up, and add it to our free tools.</p>
<p>It is called &#8220;IsComputer.exe&#8221; and you can get it from our <a href="http://www.intelliadmin.com/index.php/downloads/">downloads page</a></p>
<p>Here is how it works. You can give it two conditions &#8211; The version of Windows, or the name of the computer. </p>
<p>Lets say I want part of my script to only run on computers that are not Vista and above (Windows 2003, XP, and 2000) and start with the name LAPTOP:</p>
<p><code>IsComputer /name:LAPTOP* /os:CLASSIC</code></p>
<p>Or, I want it to only run on Windows 2003 computers:</p>
<p><code>IsComputer /OS:Windows2003</code></p>
<p>Or, maybe just computers that have &#8216;server&#8217; in their name:</p>
<p><code>IsComputer /Name:*server*</code></p>
<p>Those are just a few options &#8211; a complete list of options can be viewed by running it from the command line. </p>
<p>How do we get it to work with our batch file?</p>
<p>If a condition matches, the program will return 1. If it does not match it will return 0. Here is how we can create a simple script that will output &#8216;hello&#8217; if we have a match:</p>
<p><code>@echo off<br />
IsComputer /OS:Classic /quiet /name:rack*<br />
if ERRORLEVEL 1 goto RUN_SCRIPT<br />
if ERRORLEVEL 0 goto EXIT_SCRIPT</p>
<p>:RUN_SCRIPT</p>
<p>REM Your conditional batch statements would go here</p>
<p>echo Hello</p>
<p>:EXIT_SCRIPT<br />
</code></p>
<p>This example script will output &#8216;hello&#8217; if the computer is running Windows 2003, and the name of the computer starts with &#8216;rack&#8217;. </p>
<p>You could put the batch file commands you want to execute right where the &#8220;echo hello&#8221; statement is. </p>
<p>Got a question, or an idea for a free tool? Let me know by mailing <a href="mailto:support@intelliadmin.com">support@intelliadmin.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/07/create-a-conditional-batch-file-based-on-os-or-computer-name/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Disable CD/DVD Burning &#8211; Remotely</title>
		<link>http://www.intelliadmin.com/index.php/2011/05/disable-cddvd-burning-remotely/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/05/disable-cddvd-burning-remotely/#comments</comments>
		<pubDate>Thu, 19 May 2011 15:23:16 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Burn]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Network Administrator]]></category>
		<category><![CDATA[Network Administrator Updates]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Utility]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=3662</guid>
		<description><![CDATA[I got a question from Thomas this week: Our office has a licensed copy of Network Administrator 3.0 which allows me to disable CD/DVD access. Is there an action that will allow me just disable the CD/DVD burn capability but still allow users to view files on CD/DVD? Burn..keep it from burning? Oops not that [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/05/disable-cddvd-burning-remotely/" title="Permanent link to Disable CD/DVD Burning &#8211; Remotely"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/DVDRom.jpg" width="50" height="52" alt="Post image for Disable CD/DVD Burning &#8211; Remotely" /></a>
</p><p>I got a question from Thomas this week:</p>
<p><i>Our office has a licensed copy of Network Administrator 3.0 which allows<br />
me to disable CD/DVD access.  Is there an action that will allow me just<br />
disable the CD/DVD burn capability but still allow users to view files<br />
on CD/DVD?</i></p>
<p>Burn..keep it from burning?</p>
<p><img src="http://www.intelliadmin.com/images/DVD Burning.jpg" alt="Burning DVD"/></p>
<p>Oops not that kind of burn <img src='http://www.intelliadmin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   &#8211; Yes excellent question. After a quick search I discovered this is an easy registry change.</p>
<p>If you drill down to this key:</p>
<p><code>Software\Microsoft\Windows\CurrentVersion\Policies\Explorer</code></p>
<p>Create a DWORD value of NoCDBurning, and set it to 1. Reboot, and the built in burn functionality of Windows is gone.</p>
<p>This works on XP through Windows 7. Now one Gotcha with this is that it does *not* prevent third party apps from burning. You would need to handle this with a separate policy.</p>
<p>If you don&#8217;t want to plunk around the registry, we updated Network Administrator to make the change for you:</p>
<p><img src="http://www.intelliadmin.com/images/Burn Disabler Shot.jpg" alt="Disable CDROM DVD Burning"/></p>
<p>It is a free <a href="http://www.intelliadmin.com/NetworkAdministrator.exe" rel="nmlp">download from here</a> and it can push this change to computers remotely.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/05/disable-cddvd-burning-remotely/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Recover Outlook Passwords</title>
		<link>http://www.intelliadmin.com/index.php/2011/04/recover-outlook-passwords/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/04/recover-outlook-passwords/#comments</comments>
		<pubDate>Thu, 14 Apr 2011 03:47:13 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Free]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=3209</guid>
		<description><![CDATA[I have gotten this call before &#8211; A friend has a new computer. For a free dinner or maybe a few beers (Or Both!) would I help them move everything over? Sure no problem I say. Just a few word docs, and an email account. Hmm..an email account. This friend of mine has used Gmail [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/04/recover-outlook-passwords/" title="Permanent link to Recover Outlook Passwords"><img class="post_image alignleft remove_bottom_margin" src="http://www.networksteve.com/icons/Email.jpg" width="55" height="55" alt="Post image for Recover Outlook Passwords" /></a>
</p><p>I have gotten this call before &#8211; A friend has a new computer. For a free dinner or maybe a few beers (Or Both!) would I help them move everything over?</p>
<p><img src="http://www.intelliadmin.com/images/Homer-Simpson-Computer.jpg" alt="Homer Simpson"/></p>
<p>Sure no problem I say. Just a few word docs, and an email account. </p>
<p>Hmm..an email account.</p>
<p>This friend of mine has used Gmail with Outlook  &#8211; for a long time. As long as Gmail has been around. Unfortunately he only typed in his password once. Now, he can&#8217;t remember it.</p>
<p>So here we are. We have the password on his old machine. I can see those little *** taunting me in Outlook.</p>
<p><img src="http://www.intelliadmin.com/images/Outlook%20Password%20Taunting%20Me.jpg" alt="Outlook Taunting Me"/></p>
<p>Sure, I could email the nice folks at Google and try to recover the password, but I know from experience this will take a long time.</p>
<p>Then I remembered there is an awesome utility from <a href="http://www.nirsoft.net/">NirSoft</a> called MailPassView. This little gem can pull the passwords out of almost every known email client.</p>
<p>You can download it from here:</p>
<p><a href="http://www.nirsoft.net/utils/mailpv.html">http://www.nirsoft.net/utils/mailpv.html</a></p>
<p>Within a few seconds of launching the app, it found my friend&#8217;s account:</p>
<p><img src="http://www.intelliadmin.com/images/Outlook%20Password%20Recovery.jpg" alt=""/></p>
<p>A Double click on the entry and I had the password:</p>
<p><img src="http://www.intelliadmin.com/images/Outlook%20Password%20Recovery%20Screen.jpg" alt=""></p>
<p>Much easier than trying password recovery with Google. </p>
<p>Here is a complete list of the email clients that it supports:</p>
<ul>
Outlook Express<br />
 Microsoft Outlook 2000 (POP3 and SMTP Accounts only)<br />
 Microsoft Outlook 2002/2003/2007/2010 (POP3, IMAP, HTTP and SMTP Accounts)<br />
 Windows Mail<br />
 Windows Live Mail<br />
 IncrediMail<br />
 Eudora<br />
 Netscape 6.x/7.x (If the password is not encrypted with master password)<br />
 Mozilla Thunderbird (If the password is not encrypted with master password)<br />
 Group Mail Free<br />
 Yahoo! Mail &#8211; If the password is saved in Yahoo! Messenger application.<br />
 Hotmail/MSN mail &#8211; If the password is saved in MSN/Windows/Live Messenger application.<br />
 Gmail &#8211; If the password is saved by Gmail Notifier application, Google Desktop, or by Google Talk.</p>
</ul>
<p>Best of all, this thing is free. You can&#8217;t beat that!</p>
<p>Keep this one handy. You will need it someday.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/04/recover-outlook-passwords/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Delete files more than X Days old.</title>
		<link>http://www.intelliadmin.com/index.php/2011/03/delete-files-more-than-x-days-old/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/03/delete-files-more-than-x-days-old/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 14:32:08 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[BAT Files]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Utility]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=3125</guid>
		<description><![CDATA[On one of our servers we have a batch processing program. It is old and clunky, but it gets the job done. An irritating bug it has is that it leaves temp files around in the c:\windows\temp folder. One day we noticed the server was getting slow &#8211; finally realized that the temp folder had [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/03/delete-files-more-than-x-days-old/" title="Permanent link to Delete files more than X Days old."><img class="post_image alignleft remove_bottom_margin" src="http://www.networksteve.com/icons/Command.jpg" width="64" height="54" alt="Post image for Delete files more than X Days old." /></a>
</p><p>On one of our servers we have a batch processing program. It is old and clunky, but it gets the job done. </p>
<p>An irritating bug it has is that it leaves temp files around in the c:\windows\temp folder. </p>
<p>One day we noticed the server was getting slow &#8211; finally realized that the temp folder had over 100,000 files!</p>
<p>We don&#8217;t have the code for this program, so we can&#8217;t fix the bug. An easy fix would be to setup a scheduled task to trash that folder every night.</p>
<p><img src="http://www.intelliadmin.com/images/Oscar%20The%20Grouch.jpg" alt="Windows Trash"/></p>
<p>Oscar would like to have all those files every night, but the problem with this solution is it can cause problems with apps that actually are *using* those temp files.</p>
<p>What we needed was a way to delete files that were over 1 day old. This was enough to make sure the temp file was no longer used by any of our processing apps.</p>
<p>After searching around, I found a command line program that Microsoft included with some versions of windows. It is called &#8220;forfiles&#8221;</p>
<p>ForFiles will process a command against files and folders that match your criteria. It allows you to set wildcards, pick only folders, or only files&#8230;and more importantly it allows you to specify something like &#8220;I only want files that are more than 1 day old&#8221;</p>
<p>First, let me show you the possible command line arguments for it:</p>
<p><code><br />
/P <b>Path Name</b> - Indicates the path to start searching. The default folder is the current working directory</p>
<p>/M <b>Search Mask</b> - Searches files according to a searchmask. The default searchmask is '*' .</p>
<p>/S  <b>Sub Directories</b> Instructs forfiles to recurse into subdirectories. Like "DIR /S".</p>
<p>/C  <b>Command</b> Indicates the command to execute for each file. Command strings should be wrapped in double quotes.</p>
<p>The following variables can be used in the command string:</p>
<p> @file - returns the name of the file.<br />
 @fname   - returns the file name without extension.<br />
 @ext     - returns only the extension of the file.<br />
 @path    - returns the full path of the file.<br />
 @relpath - returns the relative path of the file.<br />
 @isdir   - returns "TRUE" if a file type is a directory, and "FALSE" for files.<br />
 @fsize   - returns the size of the file in bytes.<br />
 @fdate   - returns the last modified date of the file.<br />
 @ftime   - returns the last modified time of the file.</p>
<p>To include special characters in the command line, use the hexadecimal code for the character in 0xHH format (ex. 0x09 for tab). Internal CMD.exe commands should be preceded with "cmd /c".</p>
<p>/D <b>date</b> Selects files with a last modified date greater than or equal to (+), or less than or equal to (-), the specified date using the "yyyy/MM/dd" format; or selects files with a last modified date greater than or equal to (+) the current date plus "dd" days, or less than or equal to (-) the current date minus "dd" days. valid "dd" number of days can be any number in the range of 0 - 32768."+" is taken as default sign if not specified.<br />
</code></p>
<p>Cool. It has everything we need. </p>
<p>Lets start out with the path. We want it to look in c:\windows\temp</p>
<p><code>forfiles <b style="color:black"> -p "c:\windows\temp"</b></code></p>
<p>I want to include subfolders:</p>
<p><code>forfiles -p "c:\windows\temp" <b style="color:black">-s</b></code></p>
<p>Using the date option, I tell it anything over 1 day old:</p>
<p><code>forfiles -p "c:\windows\temp" -s <b style="color:black">-d -1</b></code></p>
<p>I only want to delete the files that end with .tmp:</p>
<p><code>forfiles -p "c:\windows\temp" -s -d -1 <b style="color:black">-m *.tmp</b></code></p>
<p>And finally, the command I want to execute against the files it finds is del:</p>
<p><code>forfiles -p "c:\windows\temp" -s -d -1 -m *.tmp<br />
<b style="color:black">-c "cmd /c del /f /q @path"</b></code></p>
<p>Note the use of the @path variable &#8211; it is one of the many variables forfiles recognizes. </p>
<p>So there it is &#8211; a one line command that will delete files from our temp folder over 1 day old:</p>
<p><code>forfiles -p "c:\windows\temp" -s -d -1 -m *.tmp  -c "cmd /c del /f /q @path"</code></p>
<p>If your copy of windows does not have forfiles, you can download it from the Microsoft FTP Server here:</p>
<p><a href="ftp://ftp.microsoft.com/ResKit/y2kfix/x86/">ftp://ftp.microsoft.com/ResKit/y2kfix/x86/</a></p>
<p>I am really impressed with this little utility, and the possibilities are endless. I highly suggest keeping a copy on your flash drive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/03/delete-files-more-than-x-days-old/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Set VNC Passwords Remotely</title>
		<link>http://www.intelliadmin.com/index.php/2011/02/set-vnc-passwords-remotely/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/02/set-vnc-passwords-remotely/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 06:00:33 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Free]]></category>
		<category><![CDATA[Network Administrator]]></category>
		<category><![CDATA[Network Administrator Updates]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/index.php?p=2998</guid>
		<description><![CDATA[I got a question from a customer last week: Hi Steve, I just bought your program on Friday and I love it. I have one question though: Is there any way to use IntelliAdmin Network Administrator to set not only the VNC password but also the VNC view only password? We are using TightVNC 1.3 [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/02/set-vnc-passwords-remotely/" title="Permanent link to Set VNC Passwords Remotely"><img class="post_image alignleft remove_bottom_margin" src="http://www.networksteve.com/icons/RemoteDesktop.jpg" width="55" height="55" alt="Post image for Set VNC Passwords Remotely" /></a>
</p><p>I got a question from a customer last week:</p>
<p><i>Hi Steve,<br />
I just bought your program on Friday and I love it.  I have one question though:  Is there any way to use IntelliAdmin Network Administrator to set not only the VNC password but also the VNC view only password? </p>
<p>We are using TightVNC 1.3 and there are two password options.  IntelliAdmin looks like it will only change the default VNC password but not the view-only password.  I was just wondering.</p>
<p>Thanks..</i></p>
<p>After poking around and playing with TightVNC we found two things that Network Administrator did not support &#8211; view only passwords, and the new registry format used in TightVNC 2.0</p>
<p>We have updated <a href="http://www.intelliadmin.com/index.php/network-administrator/">Network Administrator</a> to support both of these. (Note that it is a free tool, and you only need to purchase if you want to use it on more than three computers at a time)</p>
<p>You can download the latest from here:</p>
<p><a href="http://www.intelliadmin.com/NetworkAdministrator.exe" rel="nmlp">http://www.intelliadmin.com/NetworkAdministrator.exe</a></p>
<p>How do you use it? </p>
<p>Open the app, pick the action you want to take (In our case that would be set vnc password)</p>
<p><img src="http://www.intelliadmin.com/images/Network%20Administrator%20Set%20VNC%20Password%20201102.jpg" alt="Network Administrator Set VNC Password"></p>
<p>Set your password(s)</p>
<p><img src="http://www.intelliadmin.com/images/Tight%20VNC%20Remote%20Password%20Set.jpg" alt="Tight VNC Remote Password Set"></p>
<p>Pick the computers you want to target:</p>
<p><img src="http://www.intelliadmin.com/images/Network%20Administrator%20Pick%20Servers%20201102.jpg" alt="Network Administrator Pick Servers"></p>
<p>Click start, and it will make the change.</p>
<p>Got an idea to improve one of our plugins, or an idea for a new plugin for Network Administrator? Let us know by sending an email to <a href="mailto:support@intelliadmin.com">support@intelliadmin.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/02/set-vnc-passwords-remotely/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reduce your Windows 7 Boot time</title>
		<link>http://www.intelliadmin.com/index.php/2011/01/reduce-your-windows-7-boot-time/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/01/reduce-your-windows-7-boot-time/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 04:53:23 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Boot]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/index.php?p=2884</guid>
		<description><![CDATA[Over the holidays I had the joy of cleaning up a few computers. It is surprising how fast a system can get loaded with software that increases boot time. Normally I cleanup by hand using msconfig, and regedit. I was tired of disabling critical software by accident (Like printer helper apps), so I searched around, [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/01/reduce-your-windows-7-boot-time/" title="Permanent link to Reduce your Windows 7 Boot time"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/WIndows7.jpg" width="64" height="64" alt="Post image for Reduce your Windows 7 Boot time" /></a>
</p><p>Over the holidays I had the joy of cleaning up a few computers. It is surprising how fast a system can get loaded with software that increases boot time.</p>
<p>Normally I cleanup by hand using msconfig, and regedit. I was tired of disabling critical software by accident (Like printer helper apps), so I searched around, and I found a tool that allows you to visualize how each program impacts your boot time. </p>
<p>It is called Soluto, and you can download from here:</p>
<p><a href="http://www.soluto.com">http://www.soluto.com</a></p>
<p>The install is simple. Download and run the setup file:</p>
<p><img src="http://www.intelliadmin.com/images/Soluto%20Install.jpg" alt="Soluto Install"/></p>
<p>Reboot your system, and it will analyze all of the processes that launch at boot time. The cool part is that it looks up each application in a database that is updated by users like yourself &#8211; it has a built in wiki editing tool to update information about apps it does not recognize:</p>
<p><img src="http://www.intelliadmin.com/images/Soluto%20Checking.jpg" alt="Soluto Checking"/></p>
<p>When it is finished, you can see all of the programs that impact your boot time. It shows you an exact boot time, and how much time each application takes to launch.</p>
<p><img src="http://www.intelliadmin.com/images/Soluto%20Boot%20Time.jpg" alt="Soluto Boot Time"/></p>
<p>The application is crisp, and almost fun to use. The amount of detail on each application is amazing. The color coding will keep you from making mistakes &#8211; something easy to do when you are plunking away while drinking your third egg nog. </p>
<p><img src="http://www.intelliadmin.com/images/Soluto%20Removal.jpg" alt="Soluto Removal"/></p>
<p>When you want to keep an app from running, simply pause it. It will never run again unless you manually launch it.</p>
<p>With a few quick clicks you can pause the applications you don&#8217;t need and dramatically reduce your boot time. </p>
<p>Nice tool, best of all it is free &#8211; definitely worth the download.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/01/reduce-your-windows-7-boot-time/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Install multiple apps with one setup file</title>
		<link>http://www.intelliadmin.com/index.php/2010/09/install-multiple-apps-with-one-setup-file/</link>
		<comments>http://www.intelliadmin.com/index.php/2010/09/install-multiple-apps-with-one-setup-file/#comments</comments>
		<pubDate>Fri, 17 Sep 2010 17:16:55 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Free]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/index.php?p=2692</guid>
		<description><![CDATA[I came across a cool site, it is called Ninite: http://ninite.com/ It has been a huge time saver for me. I had a dozen or so machines I had to setup for a friend over the weekend. Using this utility I cut down my time by creating one setup file with most of the applications [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2010/09/install-multiple-apps-with-one-setup-file/" title="Permanent link to Install multiple apps with one setup file"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/install.jpg" width="40" height="40" alt="Post image for Install multiple apps with one setup file" /></a>
</p><p>I came across a cool site, it is called Ninite:</p>
<p><a href="http://ninite.com/">http://ninite.com/</a></p>
<p>It has been a huge time saver for me. I had a dozen or so machines I had to setup for a friend over the weekend. Using this utility I cut down my time by creating one setup file with most of the applications that we wanted to install.</p>
<p>Here is how it works:</p>
<p>Go to the website, and check off all the applications you want:</p>
<p><img src="http://www.intelliadmin.com/images/Ninite%20Screen%20Shot%20201009.jpg" alt="Ninite Website"/></p>
<p>Once you have made your selection, click the &#8220;Get Installer&#8221; button, and instantly you have a downloadable setup file that includes everything you selected:</p>
<p><img src="http://www.intelliadmin.com/images/Ninite%20Installer%20201009.jpg" alt="Ninite Setup Download"/></p>
<p>The download is quite small &#8211; so getting it on each PC is quick. Launch it:</p>
<p><img src="http://www.intelliadmin.com/images/Ninite%20Installer%20Progress%20201009.jpg" alt="Installer Progress"/></p>
<p>Right after launching it downloads and installs all of the applications you picked &#8211; with no user intervention. </p>
<p>Very slick.</p>
<p>There is a pro version, it allows you to install silently and create packages that do not require internet access.</p>
<p>Take it for a spin at <a href="http://www.ninite.com">http://www.ninite.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2010/09/install-multiple-apps-with-one-setup-file/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

