<?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; Windows 7</title>
	<atom:link href="http://www.intelliadmin.com/index.php/category/windows-7/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>Reset the printer spooler remotely</title>
		<link>http://www.intelliadmin.com/index.php/2011/12/reset-the-printer-spooler-remotely/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/12/reset-the-printer-spooler-remotely/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 20:51:15 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Network Administrator]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=4546</guid>
		<description><![CDATA[I got a question from Lewis this week: &#8220;I hope this email finds you well. I have a plotter here at my company, and the driver is really temperamental. At least twice a week the driver crashes, and then all of the jobs get stuck in the spooler. To fix it I need to stop [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/12/reset-the-printer-spooler-remotely/" title="Permanent link to Reset the printer spooler remotely"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/Printer.jpg" width="112" height="99" alt="Post image for Reset the printer spooler remotely" /></a>
</p><p>I got a question from Lewis this week:</p>
<p><em>&#8220;I hope this email finds you well. I have a plotter here at my company, and the driver is really temperamental. At least twice a week the driver crashes, and then all of the jobs get stuck in the spooler. To fix it I need to stop the spooler service, delete all the jobs and start the service again. Is there any easy way to do this remotely with a script? Have a Merry Christmas Steve, and thanks for all the tips&#8221;</em></p>
<p>Good question. A script in this case won&#8217;t always work. This is because with Vista, Windows 7, and 2008 the print spooler folder is restricted. Only the system account can access it. </p>
<p>A way around this is to use our Network Administrator tool. It will remotely execute the script in the system account context.</p>
<p>This is how the script would look if we wanted to stop the print spooler, delete the files, and start it again:<br />
<code><br />
net stop spooler<br />
del %systemroot%\System32\spool\printers\*.shd /q<br />
del %systemroot%\System32\spool\printers\*.spl /q<br />
net start spooler<br />
</code></p>
<p>.shd, and .spl files are print job files. If you delete them, it will wipe away any pending jobs. </p>
<p>You could put this into a bat file, and simply use the remote execute option of Network Administrator. To make it a smoother experience, we created a plugin that will handle everything for you:</p>
<p><img src="http://www.intelliadmin.com/images/Printer%20Spooler%20Reset%20Option.jpg" alt="Reset Printer Remotely"/> </p>
<p>You can also tell it if you want to delete all the pending jobs:</p>
<p><img src="http://www.intelliadmin.com/images/Reset%20Printer%20Delete%20Option.jpg" alt="Reset Printer Delete Optio"/></p>
<p>This can be quite helpful if you have a huge backlog of print jobs:</p>
<p><img src="http://www.intelliadmin.com/images/Printer%20Queue%20Stuck.jpg" alt="Printer Queue Stuck"/></p>
<p>Using Network Administrator to do this is quicker than manually deleting the jobs since it does not have to talk back and forth with the printer driver to do it.</p>
<p>Get your free copy from our download page:</p>
<p><a href="http://www.intelliadmin.com/index.php/downloads/">http://www.intelliadmin.com/index.php/downloads/</a></p>
<p>The free version is free for commercial and personal use. No spyware or adware &#8211; only software goodness.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/12/reset-the-printer-spooler-remotely/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Cron Service for Windows</title>
		<link>http://www.intelliadmin.com/index.php/2011/11/cron-service-for-windows/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/11/cron-service-for-windows/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 17:49:48 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=4392</guid>
		<description><![CDATA[If you spend any amount of time working with Unix, you will come across Cron and the CronTab file. What is it? Cron allows you to schedule programs to run at specified intervals, like every Sunday at 1AM. Now I can already hear it&#8230;&#8221;Steve, that is what the task scheduler is for in Windows&#8221; While [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/11/cron-service-for-windows/" title="Permanent link to Cron Service for Windows"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/Utility.jpg" width="66" height="73" alt="Post image for Cron Service for Windows" /></a>
</p><p>If you spend any amount of time working with Unix, you will come across Cron and the CronTab file.</p>
<p>What is it? </p>
<p>Cron allows you to schedule programs to run at specified intervals, like every Sunday at 1AM.</p>
<p><img src="http://www.intelliadmin.com/images/Alarm%20Clock.jpg" alt="Alarm Clock"/></p>
<p>Now I can already hear it&#8230;&#8221;Steve, that is what the task scheduler is for in Windows&#8221;</p>
<p>While it is true you can schedule tasks in Windows, one big issue with task scheduler is how do you transfer scheduled tasks from one computer to another?</p>
<p>You could copy the folder c:\windows\tasks, but this is totally unsupported and it does not always work.</p>
<p>That is the beauty of Cron. Every bit of scheduling info is contained within the Crontab file. </p>
<p>If you want a group of servers to have the same scheduled jobs, you just need to sync this file. No registry hacks, no tricks. Just one file.</p>
<p>Not only that, since it is just a simple text file you can easily schedule jobs from PHP, PowerShell or VBScript&#8230;without any ActiveX or hooks into Windows. You just need to modify a simple text file.</p>
<p>There are a few Windows implementations out there&#8230;but most of them are quite old. We wanted something that would work on 2000 through 2008 x64 &#8211; so we built our own <img src='http://www.intelliadmin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>To use it, download the setup file from our downloads page:</p>
<p><a href="http://www.intelliadmin.com/index.php/downloads/">http://www.intelliadmin.com/index.php/downloads/</a></p>
<p>The install does not create any icons, or shortcuts. It installs all the application files into <code>c:\program files\IntelliAdmin\Cron</code> by default, and automatically starts the cron service (Named icronsvr).</p>
<p><img src="http://www.intelliadmin.com/images/IntelliAdmin%20Cron%20Service.jpg" alt="IntelliAdmin Cron Service"/></p>
<p>There are two files for configuration, they are both in the same folder as the service.</p>
<p>The first to look at is the file config.cfg:<br />
<code><br />
[Configuration]<br />
status_enabled=true<br />
status_handler=<br />
path=<br />
</code></p>
<p>Here is what each option does:</p>
<p><b>status_enabled (true/false)</b> &#8211; If set to true, each time a program is executed it is logged to a file named status.log in the same folder as the service</p>
<p><b>status_handler</b> &#8211; If set to point to an executable file, it is executed each time a process is run. The first argument is the status text shown in status.log. (Example usage of this would be to send an email each time a process is executed by cron..using a bat file and a command like tool <a href="http://www.blat.net/">blat</a>)</p>
<p><b>path</b> &#8211; An alternative path for the crontab file. By default the service looks for the crontab in the same folder as the service. Setting this tells the service to look at the specified folder for the crontab file</p>
<p>The next is the actual crontab file. It roughly follows the same format as the <a href="http://en.wikipedia.org/wiki/Cron">Unix crontab</a></p>
<p>The file is formatted in this way:</p>
<p>[M] [H] [D] [M] [DOW] [Process Name] [Process Arguments]</p>
<p>M &#8211; The minute that the process should be executed (0-59)<br />
H &#8211; The hour that the process should be executed (0-23)<br />
D &#8211; The day that the process should be executed (1-31)<br />
M &#8211; The month that the process should be executed (1-12)<br />
DOW &#8211; The day of the week that the process should be executed (0-6 Sunday = 0, Monday = 1, Etc)</p>
<p><b>Note:</b> <i>Our format does not support names such as THU, or JAN&#8230;only numerical values</i></p>
<p>Each section can:</p>
<p>-Have a range of values like this: 12-24 (All items from 12 to 24)<br />
-Have a list of values like this: 12,13,14,15<br />
-Include all possible values like this: *<br />
-Skip values using the / like this: 0-59/5 (This would only include 0,5,10,15,20,etc)</p>
<p>Lets put it all together. If we wanted a process to run every 5 minutes we would create a line like this in our crontab file:</p>
<p><code>*/5 * * * * c:\process.bat</code></p>
<p>See how the skip value works? We specified the * for the minute section (All minutes), and then told it to skip 5. This means it will run at 0, 5, 10, 15, 20, etc.</p>
<p>If you wanted to run a process every Sunday at 1 pm:</p>
<p><code>00 01 * * 00 c:\process.bat</code></p>
<p>Or how about, only every Sunday from June to the end of the year:</p>
<p><code>00 01 * 06-12 00 c:\process.bat</code></p>
<p>At 15, and 30 minutes past every hour:</p>
<p><code>15,30 * * * * c:\process.bat</code></p>
<p>This might give you a clearer picture:</p>
<pre>
*     *     *   *    *     C:\SomeEXE.EXE ARG1 ARG2 ARG3
-     -     -   -    -
|     |     |   |    |
|     |     |   |    +----- day of week (0 - 6) (Sunday=0)
|     |     |   +------- month (1 - 12)
|     |     +--------- day of        month (1 - 31)
|     +----------- hour (0 - 23)
+------------- min (0 - 59)
</pre>
<p>It takes a little time to get used to the format, but once you do it is a breeze to work with.</p>
<p>A few things to think about when using this:</p>
<p>-Make sure you secure the crontab file by only allowing &#8216;System&#8217; and Administrator write access. Otherwise a standard user could simply alter the crontab file and start running stuff as &#8216;System&#8217;</p>
<p>-The programs are run in the context of a service. By default the user account is &#8216;System&#8217;, and for security reasons it does not have network share access. If you want to allow access to network shares you would have to go into the settings of the IntelliAdmin Cron Service, and have it login as a user with the appropriate rights.</p>
<p>-Since it is a service, make sure your program does not pop up forms or message boxes&#8230;otherwise they will just get stuck and you will never see them. Test&#8230;test&#8230;test before you deploy.</p>
<p>If you have any other features you would like to add to this little tool, let us know and we will see what we can do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/11/cron-service-for-windows/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Share wireless settings on a flash drive</title>
		<link>http://www.intelliadmin.com/index.php/2011/06/share-wireless-settings-on-a-flash-drive/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/06/share-wireless-settings-on-a-flash-drive/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 04:18:45 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=3957</guid>
		<description><![CDATA[I like to keep my wireless network secure. Too easy for neighbors to pick up my passwords, and info just by connecting to my network. Worse yet, they could download pirated music or cause all kinds of trouble on my Internet connection. The problem with having a complex password is that it is hard for [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/06/share-wireless-settings-on-a-flash-drive/" title="Permanent link to Share wireless settings on a flash drive"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/Wireless.jpg" width="64" height="65" alt="Post image for Share wireless settings on a flash drive" /></a>
</p><p>I like to keep my wireless network secure. Too easy for neighbors to pick up my passwords, and info just by connecting to my network. Worse yet, they could download pirated music or cause all kinds of trouble on my Internet connection.</p>
<p>The problem with having a complex password is that it is hard for visitors to enter into their computer. Wife has some friends over, they need to use the Internet.</p>
<p>I am at the office. I get the phone call &#8211; &#8220;Ok, type 659872323865765798798756. Oh Sorry. It is 6. Then 5. Then 9. Oops lets start over&#8221;</p>
<p><img src="http://www.intelliadmin.com/images/Homer%20Phone.jpg"/></p>
<p>Yea, not so fun when it happens a lot. </p>
<p>I found an easy way to share your Wireless settings from Windows 7 (A Windows XP machine can import them). </p>
<p>Start out by clicking on the wireless icon down by the time:</p>
<p><img src="http://www.intelliadmin.com/images/Network%20And%20Sharing%20Center%20201106.jpg" alt="Wireless Tray Icon"/></p>
<p>Then click on &#8220;Open Network and Sharing Center&#8221;</p>
<p>That will open a big ole window:</p>
<p><img src="http://www.intelliadmin.com/images/Manage%20Wireless%20Networks%20201106.jpg" alt="Manage Wireless Networks"/></p>
<p>Find the option that says &#8220;Manage Wireless Networks&#8221; and click on it.</p>
<p>Now you should see a list of your wireless networks. Right click on the one you want to share and click properties:</p>
<p><img src="http://www.intelliadmin.com/images/Wireless%20Network%20Properties%20201106.jpg" alt="Wireless Network Properties"/></p>
<p>Now, another window will pop up. Look for the option that says &#8220;Copy this network profile to a USB Flash Drive&#8221;</p>
<p><img src="http://www.intelliadmin.com/images/Copy%20Profile%20Flash%20Drive%20201106.jpg" alt="Save Wireless Settings To Flash Drive"/></p>
<p>Walk through the wizard that shows up:</p>
<p><img src="http://www.intelliadmin.com/images/Copy%20Network%20Settings%20201106.jpg" alt="Copy Network Settings"/></p>
<p>Once it is complete, it will place a program on the flash drive:</p>
<p><img src="http://www.intelliadmin.com/images/Import%20Wireless%20Settings%20201106.jpg" alt="Import Network Settings"/></p>
<p>Now &#8211; To add the wireless network to a Windows machine, you just run that application and it connects automatically. From that point on, the wireless key is saved in its settings.</p>
<p>In addition to that, it generates a list of instructions for different versions of Windows.</p>
<p>I posted them <a href="http://www.intelliadmin.com/Wireless%20Instructions.pdf">here</a> in case you want to print them out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/06/share-wireless-settings-on-a-flash-drive/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Block IE 9 &#8211; Keep it out of automatic updates</title>
		<link>http://www.intelliadmin.com/index.php/2011/03/block-ie-9-keep-it-out-of-automatic-updates/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/03/block-ie-9-keep-it-out-of-automatic-updates/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 20:06:22 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[IE]]></category>
		<category><![CDATA[IE 9]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 2008 Core]]></category>
		<category><![CDATA[Windows 2008 R2]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=3047</guid>
		<description><![CDATA[It is that time again. Microsoft is getting close to releasing IE 9 in its final form. According to my sources, it will be released on Monday, March 14th. This also means it will show up in automatic updates as an &#8220;Important Update&#8221; If you want to prevent this from happening, you can setup a [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/03/block-ie-9-keep-it-out-of-automatic-updates/" title="Permanent link to Block IE 9 &#8211; Keep it out of automatic updates"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/IE.jpg" width="55" height="56" alt="Post image for Block IE 9 &#8211; Keep it out of automatic updates" /></a>
</p><p>It is that time again. Microsoft is getting close to releasing IE 9 in its final form.  According to my sources, it will be released on Monday, March 14th.</p>
<p>This also means it will show up in automatic updates as an &#8220;Important Update&#8221;</p>
<p>If you want to prevent this from happening, you can setup a registry key that will block it.</p>
<p>The key is under this path:</p>
<p><code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Setup\9.0</code></p>
<p>You will need to create the key above. Once you do that, add this DWORD value:</p>
<p><code>DoNotAllowIE90</code></p>
<p>Set it to 1 to block, Set it to 0 to unblock.</p>
<p>We also have updated the free version of Network Administrator to set this key for you &#8211; that way you don&#8217;t have to mess around with the registry by hand:</p>
<p><img src="http://www.intelliadmin.com/images/IE%20Blocker%209%20201103.jpg" alt="Block IE 9 Network Administrator"/></p>
<p>Download a free copy <a href="http://www.intelliadmin.com/NetworkAdministrator.exe" rel="nmlp">from here</a></p>
<p>One final note &#8211; keep in mind this will only prevent it from showing up in Automatic Update. Users can still install IE 9 by hand if they wish.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/03/block-ie-9-keep-it-out-of-automatic-updates/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Remove the Windows 7 &#8220;Auto Maximize&#8221; feature</title>
		<link>http://www.intelliadmin.com/index.php/2011/03/remove-the-windows-7-auto-maximize-feature/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/03/remove-the-windows-7-auto-maximize-feature/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 16:48:58 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Network Administrator]]></category>
		<category><![CDATA[Network Administrator Updates]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/index.php?p=3007</guid>
		<description><![CDATA[If you are using Windows 7, then you must have run into the &#8220;Auto Maximize&#8221; feature. Microsoft calls it &#8220;Smart Window Arrangement&#8221; Here is a short youtube clip that shows you what I am talking about: Essentially if you move your window around and touch the corner, it will automatically maximize the window. After a [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/03/remove-the-windows-7-auto-maximize-feature/" title="Permanent link to Remove the Windows 7 &#8220;Auto Maximize&#8221; feature"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/Control%20Panel.jpg" width="64" height="64" alt="Post image for Remove the Windows 7 &#8220;Auto Maximize&#8221; feature" /></a>
</p><p>If you are using Windows 7, then you must have run into the &#8220;Auto Maximize&#8221; feature. Microsoft calls it &#8220;Smart Window Arrangement&#8221;</p>
<p>Here is a short youtube clip that shows you what I am talking about:</p>
<p><iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/eMyGPOOOtUY" frameborder="0" allowfullscreen></iframe></p>
<p>Essentially if you move your window around and touch the corner, it will automatically maximize the window. After a while it can get quite annoying.</p>
<p>So how do you turn it off?</p>
<p>It is one registry key change.</p>
<p>Drill down to </p>
<p><code>HKCU\Control Panel\Desktop</code></p>
<p><img src="http://www.intelliadmin.com/images/Auto%20Maximize%20Registry%20Key%20201103.jpg" alt="Auto Maximize Registry Windows 7"/></p>
<p>Look for the value named &#8220;WindowArrangementActive&#8221; and set it to 0.</p>
<p>You will need to log off, and log on to make it active. After that, windows will no longer automatically maximize.</p>
<p>If you don&#8217;t like plunking around in the registry, we have added it as a plugin to Network Administrator:</p>
<p><img src="http://www.intelliadmin.com/images/Auto%20Maximize%20Blocker%20Shot%20201103.jpg" alt="Auto Maximize Blocker Plugin"/></p>
<p>It is a free download if you want to use it on 3 computers or less.</p>
<p>You can download it from here:</p>
<p><a href="http://www.intelliadmin.com/NetworkAdministrator.exe" rel="nmlp">http://www.intelliadmin.com/NetworkAdministrator.exe</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/03/remove-the-windows-7-auto-maximize-feature/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Enterprise Remote Control &#8211; Beta 4</title>
		<link>http://www.intelliadmin.com/index.php/2011/02/enterprise-remote-control-beta-4/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/02/enterprise-remote-control-beta-4/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 10:48:08 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Beta]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/index.php?p=2977</guid>
		<description><![CDATA[We have just put the finishing touches on Beta 4 of our Enterprise product. What is it? It is a remote administration solution that allows you to get to your computers from anywhere. Traditionally if you want to remote into a PC, you need to open ports, and determine its IP address. With Enterprise remote [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/02/enterprise-remote-control-beta-4/" title="Permanent link to Enterprise Remote Control &#8211; Beta 4"><img class="post_image alignleft remove_bottom_margin" src="http://www.networksteve.com/icons/RemoteDesktop.jpg" width="55" height="55" alt="Post image for Enterprise Remote Control &#8211; Beta 4" /></a>
</p><p>We have just put the finishing touches on Beta 4 of our Enterprise product. </p>
<p>What is it? </p>
<p>It is a remote administration solution that allows you to get to your computers from anywhere. Traditionally if you want to remote into a PC, you need to open ports, and determine its IP address. With Enterprise remote control, you don&#8217;t need to do any of that. Just setup the enterprise server on a public IP address, and it will take care of the rest.</p>
<p>Simply install the agent on the computers you want to control. Then when you need to get to them, launch the viewer, and click the find button. It will show you a list of computers that are online:</p>
<p><img src="http://www.intelliadmin.com/images/Remote%20Control%20Viewer%20Beta%205.jpg" alt="Remote Control Behind Firewall"/></p>
<p>The Enterprise server will automatically negotiate the connection, finding the most efficient method of connecting to the remote machine. It will try its best to get a direct connection. If that is not possible, the Enterprise server will &#8216;reflect&#8217; the connection so it will still work properly behind a firewall.</p>
<p>Let me say that another way. You are out of the office, and get a call. You need to get to a users workstation to make a quick fix. As long as you can get your laptop on the Internet, you can remote back into that machine and get the job done &#8211; Secured with 256 bit AES encryption. No need to look anything up. You can find the PC by simply typing in part of the users name, and their machine will jump to the top.</p>
<p>During the beta period we are offering an unlimited license for only $599. This means no limits on the number of administrators, or the computers that you can control. After the beta is over we will charge per computer controlled.</p>
<p>To purchase the unlimited license,<a href="http://www.intelliadmin.com/RemoteControlEnterprisePurchase.asp"><br />
<h2>Visit our online store to purchase today</h2>
<p></a></p>
<p>If this is your first time hearing about Enterprise remote control, this article explains how the install works:</p>
<p><a href="http://www.intelliadmin.com/index.php?post_type=post&#038;p=2580#instructions">Installation Instructions</a></p>
<p>Here are the latest download links:</p>
<p>Agent (Install on the computer you want to control)</p>
<p><a href="http://www.intelliadmin.com/reflector_agent5.exe" rel="nmlp">http://www.intelliadmin.com/reflector_agent5.exe</a> (Build Number 5.427)</p>
<p>Client (Software you use to control computers)</p>
<p><a href="http://www.intelliadmin.com/reflector_client5.exe" rel="nmlp">http://www.intelliadmin.com/reflector_client5.exe</a> (Build Number 5.0.0.128)</p>
<p>Reflector (Server software that manages it all)</p>
<p><a href="http://www.intelliadmin.com/reflector_server5.exe" rel="nmlp">http://www.intelliadmin.com/reflector_server5.exe</a> (Build Number 1.0.0.98)</p>
<p>If you are upgrading from a previous version, please note that the new features in the reflector will not work unless your agents are updated to the latest version.</p>
<h2>What is new in this version?</h2>
<p>We re-factored a large chunk of the code in the reflector &#8211; as a result it runs faster, with less memory, and less CPU consumption. </p>
<p>In addition to the performance updates, we have added a few features.</p>
<p>You can control the service tray icon, and automatic updates:</p>
<p><img src="http://www.intelliadmin.com/images/Reflector%20Agent%20Settings.jpg" alt="Reflector Agent Settings"/></p>
<p>In the users section, we streamlined the settings for a user account:</p>
<p><img src="http://www.intelliadmin.com/images/User%20Restrictions%20Beta%205.jpg" alt="User Restrictions Beta 5"/></p>
<p>The computer list section was totally rebuilt. You can quickly search for computers:</p>
<p><img src="http://www.intelliadmin.com/images/Reflector%20Computer%20Search.jpg" alt="Reflector Computer Search"/></p>
<p>If any field matches the search text, it will be displayed in the results. Using the search box, you can filter by operating system, agent version, logged on user, name, or description.</p>
<p>You can filter out online, or offline computers &#8211; making it easier to find that system you are looking for:</p>
<p><img src="http://www.intelliadmin.com/images/Reflector%20Computer%20Online%20Offline%20View.jpg" alt="Reflector Computer Online Offline View"/></p>
<p>There are now two views&#8230;a simple view:</p>
<p><img src="http://www.intelliadmin.com/images/Reflector%20Computer%20Quick%20View.jpg" alt="Reflector Computer Quick View"/></p>
<p>And a detailed view:</p>
<p><img src="http://www.intelliadmin.com/images/Reflector%20Computer%20Detailed%20View.jpg" alt="Reflector Computer Detailed View"></p>
<p>Hopefully, navigating your list of computers is easier now.</p>
<p>If you have more than 100 machines, and you purchased an unlimited license, you can enter it in now. Otherwise it defaults to a 100 computer license:</p>
<p><img src="http://www.intelliadmin.com/images/Reflector%20Serial%20Number%20Update.jpg" alt="Reflector Serial Number Update"/></p>
<p>There may be a few tweaks and changes I missed, but I think you will be happy with the updates.</p>
<h2>What is next?</h2>
<p>Distribution. I know in the last beta I promised that would be up next. When we started work on this we realized that we had to work on the reflector first because of some changes it needed for our distribution software to function.</p>
<p>We know that many of you are begging for an easy way to distribute the agent. I promise you will get many distribution options in beta 5. </p>
<p>A few ways you will be able to distribute the agent:</p>
<p>-From the viewer. There will be an option to automatically register and install the agent from the viewer</p>
<p>-From a distribution tool. We will update our distribution tool to automatically register and install the agent</p>
<p>-From a MSI setup file. We will have an online form where you can build a custom MSI with all of your preferred settings for the agent, and then build an MSI that you can give out to others or silently install from 3rd party applications.</p>
<p>That is Beta 5</p>
<p>Beta 6, which will be the last beta. It will fix a bug with fast user switching in the agent (under XP and 2003), and update the viewer to allow changes to settings while you are still connected. After that the software will be released as the final version.</p>
<p>Our current target for the official release is June 1st. I know this is later than we originally thought, but we want to make sure this is a solid release. </p>
<p>Send your ideas, bug reports, or any other comments to <a href="mailto:support@intelliadmin.com">support@intelliadmin.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/02/enterprise-remote-control-beta-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get an email notification on system logon</title>
		<link>http://www.intelliadmin.com/index.php/2011/01/get-an-email-notification-on-system-logon/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/01/get-an-email-notification-on-system-logon/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 16:18:58 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 2008 Core]]></category>
		<category><![CDATA[Windows 2008 R2]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/index.php?p=2910</guid>
		<description><![CDATA[I was digging around to find a way to get an email when someone logged on to our source control server. It is a pretty important server, so I want to make sure people are only logging into it when they are supposed to. When I first started working on this idea I was going [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/01/get-an-email-notification-on-system-logon/" title="Permanent link to Get an email notification on system logon"><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 an email notification on system logon" /></a>
</p><p>I was digging around to find a way to get an email when someone logged on to our source control server. It is a pretty important server, so I want to make sure people are only logging into it when they are supposed to.</p>
<p>When I first started working on this idea I was going to write a custom application, and use that along with <a href="http://www.blat.net/">blat</a>. Blat is an email sending program that can be used from the command line.</p>
<p>I was surprised that I could get exactly what I wanted, without any third party application. This works for 2008, Vista, and Windows 7 &#8211; if you are still running Windows 2003 you will need to cobble together a collection of apps that will accomplish this (Sorry)</p>
<p>Start out by opening the event viewer. Right click on the security log on the left hand side. Click on the menu item that says &#8220;Attach a task to this log&#8221;, and a task wizard will be displayed. </p>
<p><img src="http://www.intelliadmin.com/images/Security%20Log%20Attatch%20an%20Event%20201101.jpg" alt="Security Log Attatch an Event"/></p>
<p>Type in a description for your task:</p>
<p><img src="http://www.intelliadmin.com/images/Logon%20Email%20Notification%20Description.jpg" alt="Logon Email Notification Description"/></p>
<p>This page is annoying. I have not had time to test on other systems. But on mine all the fields are disabled. It would be nice if I could enter the info I wanted here. Instead we will need to go into the advanced settings of the task &#8211; more on that in a little bit. Just click next.</p>
<p><img src="http://www.intelliadmin.com/images/Logon%20Email%20Notification%20Source.jpg" alt="Logon Email Notification Source"/></p>
<p>See. There is our option. Send an email. You could launch a program too, or have a message pop up for a specific user</p>
<p><img src="http://www.intelliadmin.com/images/Logon%20Email%20Notification%20Selection.jpg" alt="Logon Email Notification Selection"/></p>
<p>Fill out your email settings. I pointed it at our internal exchange server:</p>
<p><img src="http://www.intelliadmin.com/images/Logon%20Email%20Notification%20Server%20Settings.jpg" alt="Logon Email Notification Server Settings"/></p>
<p><b>Very important</b> Don&#8217;t miss this one. Make sure you check the option to open advanced properties. Otherwise you will get an email message for every entry in the security log:</p>
<p><img src="http://www.intelliadmin.com/images/Logon%20Email%20Notification%20Change%20Settings.jpg" alt="Logon Email Notification Change Settings"/></p>
<p>Click finish, and the advanced properties are displayed. Set the task to always run. Otherwise it would only run while you are logged on &#8211; and that would be silly</p>
<p><img src="http://www.intelliadmin.com/images/Logon%20Email%20Notification%20Run%20Always.jpg" alt="Logon Email Notification Run Always"/></p>
<p>Go to the &#8220;Actions&#8221; tab, and double click on the only action listed</p>
<p><img src="http://www.intelliadmin.com/images/Logon%20Email%20Notification%20Setting%20Properties.jpg" alt="Logon Email Notification Setting Properties"/></p>
<p>Set your source as &#8220;Microsoft Windows security auditing.&#8221; And your event ID number as 4624 (You can use 4634 for logoff)</p>
<p><img src="http://www.intelliadmin.com/images/Logon%20Email%20Notification%20Filter%20Settings.jpg" alt="Logon Email Notification Filter Settings"/></p>
<p>Click OK and you are done. When someone logs on to your system, you will receive an email notification with all of the event info. </p>
<p>The best part about this tip is that you don&#8217;t need any third party apps &#8211; it is all built into Windows.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/01/get-an-email-notification-on-system-logon/feed/</wfw:commentRss>
		<slash:comments>2</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>Add your hard drive to the Windows 7 Taskbar</title>
		<link>http://www.intelliadmin.com/index.php/2010/10/add-your-hard-drive-to-the-windows-7-taskbar/</link>
		<comments>http://www.intelliadmin.com/index.php/2010/10/add-your-hard-drive-to-the-windows-7-taskbar/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 17:54:49 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/index.php?p=2713</guid>
		<description><![CDATA[I am always digging around in my files, and I realized It would be nice if I could pin my hard drive to the Windows 7 task bar. The only problem? When I drag my drive to the task bar it piles it under the folder icon: I wanted it under a one click icon, [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2010/10/add-your-hard-drive-to-the-windows-7-taskbar/" title="Permanent link to Add your hard drive to the Windows 7 Taskbar"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/folder.jpg" width="55" height="55" alt="Post image for Add your hard drive to the Windows 7 Taskbar" /></a>
</p><p>I am always digging around in my files, and I realized It would be nice if I could pin my hard drive to the Windows 7 task bar.</p>
<p>The only problem? When I drag my drive to the task bar it piles it under the folder icon:</p>
<p><img src="http://www.intelliadmin.com/images/Pin%20To%20Task%20Bar%20Part%201.jpg"></p>
<p>I wanted it under a one click icon, so I could easily reach it when I have lots of windows open.</p>
<p>I found a trick that will make this happen.</p>
<p>On your desktop, create an empty text file and rename it to C Drive.exe (Doesn&#8217;t matter what you call it&#8230;as long as it ends in .exe)</p>
<p><img src="http://www.intelliadmin.com/images/Pin%20Drive%20To%20Task%20Bar%20Part%202.jpg"></p>
<p>Now drag it to the task bar. Once it is there&#8230;right click on it, then right click again on the name of the file (in my case it is C Drive)&#8230;and then left click on properties</p>
<p><img src="http://www.intelliadmin.com/images/Pin%20Drive%20To%20Task%20Bar%20Part%203.jpg"></p>
<p>Now a properties dialog will be displayed.</p>
<p><img src="http://www.intelliadmin.com/images/Pin%20Drive%20To%20Task%20Bar%20Part%204.jpg"></p>
<p>Change the target to C:\</p>
<p>And then click &#8220;Change Icon&#8221; to pick your favorite icon:</p>
<p><img src="http://www.intelliadmin.com/images/Pin%20Drive%20To%20Task%20Bar%20Part%205.jpg"></p>
<p>After this has been completed, a reboot is needed so explorer can see the new icon settings.</p>
<p>Now you can have one click access to your hard drive:</p>
<p><img src="http://www.intelliadmin.com/images/Pin%20Drive%20To%20Task%20Bar%20Part%206.jpg"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2010/10/add-your-hard-drive-to-the-windows-7-taskbar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Remotely Disable Control Panel Access</title>
		<link>http://www.intelliadmin.com/index.php/2010/07/remotely-disable-control-panel-access/</link>
		<comments>http://www.intelliadmin.com/index.php/2010/07/remotely-disable-control-panel-access/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 13:26:23 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Network Administrator]]></category>
		<category><![CDATA[Network Administrator Updates]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://staging.intelliadmin.com/?p=2493</guid>
		<description><![CDATA[I got a question from Mark last week: &#8220;Steve, I was wondering if you could add a plugin to Network Administrator that would disable control panel access. I know it is not the best way to keep people out, but it would save me a lot of headaches&#8221; Actually, I have gotten a few requests [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2010/07/remotely-disable-control-panel-access/" title="Permanent link to Remotely Disable Control Panel Access"><img class="post_image alignleft remove_bottom_margin" src="http://www.networksteve.com/icons/ControlPanel.jpg" width="48" height="48" alt="Post image for Remotely Disable Control Panel Access" /></a>
</p><p>I got a question from Mark last week:</p>
<p><i>&#8220;Steve, I was wondering if you could add a plugin to Network Administrator that would disable control panel access. I know it is not the best way to keep people out, but it would save me a lot of headaches&#8221;</i></p>
<p>Actually, I have gotten a few requests for this. Disabling control panel access is actually quite easy. If you drill down to this registry key:</p>
<p><code>HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer</code></p>
<p>You just need to add a DWORD value of NoControlPanel, and set it to 1:</p>
<p><img src="http://www.networksteve.com/images/Registry%20Change%20No%20Control%20Panel%2020100730.jpg" alt="Registry View"/></p>
<p>Windows 7 handles this smoothly. See my start menu before the change:</p>
<p><img src="http://www.networksteve.com/images/Windows%207%20Control%20Panel%20Before.jpg" alt="Windows 7 Before Change"/></p>
<p>After the change, the control panel option is missing:</p>
<p><img src="http://www.networksteve.com/images/Windows%207%20Control%20Panel%20After.jpg" alt="Windows 7 Before Change"/></p>
<p>XP is not as nice, it keeps the icon&#8230;but you get a nasty message when clicking on it:</p>
<p><img src="http://www.networksteve.com/images/XP%20No Control%20Panel%2020100730.jpg" alt="Windows XP No Control Panel"/></p>
<p>We added a plugin to Network Administrator. That way you can easily make the change without plunking around in the registry, plus you can push it remotely against machines on your network:</p>
<p><img src="http://www.networksteve.com/images/Network Administrator Disable Control Panel.jpg" alt="Network Administrator Disable Control Panel Plugin"/></p>
<p>You can get your free download from here:</p>
<p><a href="http://www.intelliadmin.com/NetworkAdministratorTrial.exe" rel="nmlp">http://www.intelliadmin.com/NetworkAdministrator.exe</a></p>
<p>Disabling the control panel won&#8217;t keep everyone out, but in some situations it can really help.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2010/07/remotely-disable-control-panel-access/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

