<?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 2008</title>
	<atom:link href="http://www.intelliadmin.com/index.php/category/windows-2008/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>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>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>Windows 2008 Core &#8211; Enable Remote Administration</title>
		<link>http://www.intelliadmin.com/index.php/2010/05/windows-2008-core-enable-remote-administration/</link>
		<comments>http://www.intelliadmin.com/index.php/2010/05/windows-2008-core-enable-remote-administration/#comments</comments>
		<pubDate>Thu, 27 May 2010 16:56:58 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 2008 Core]]></category>
		<category><![CDATA[Windows 2008 R2]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=2305</guid>
		<description><![CDATA[When I first came across Windows 2008 Core, I was happy. Finally, a version of windows you could chisel down to just the base components that you needed. Microsoft did such a good job &#8211; that it is hard to configure it with the default settings No graphical tools are provided (Well there are a [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>When I first came across Windows 2008 Core, I was happy. Finally, a version of windows you could chisel down to just the base components that you needed.</p>
<p>Microsoft did such a good job &#8211; that it is hard to configure it with the default settings <img src='http://www.intelliadmin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>No graphical tools are provided (Well there are a few&#8230;but not many). When you logon, you are welcomed with a command line window that sits in the middle of the screen:</p>
<p><img src="http://www.networksteve.com/images/2008%20Core%20Command%20Prompt%20201005.jpg" alt="Core 2008 Command Prompt"/></p>
<p>The frustration level increases exponentially when you want to get something done.</p>
<p>For security reasons, remote administration is disabled by default. Remote Administration &#8211; not to be confused with Remote Desktop is the file and printer sharing component that allows you to remotely use computer management, event viewer, service manager, or third party tools like our <a href="http://www.intelliadmin.com/NetworkAdministrator.htm">Network Administrator</a></p>
<p>To remove the firewall restrictions that block its use, simply type this at the command line:</p>
<p><code>netsh advfirewall firewall set rule group="Remote Administration" new enable=yes</code></p>
<p>After that command, some remote services will work. For example, you can remotely reboot or shutdown the machine using <a href="http://www.intelliadmin.com/NetworkAdministrator.htm">Network Administrator</a></p>
<p><img src="http://www.networksteve.com/images/Network%20Administrator%202008%20Core%20Server.jpg" alt="Network Administrator 2008 Core"/></p>
<p>But&#8230;if you want to manage services, add/remove/edit users using computer management, or look at the event log remotely&#8230;you will still get access denied messages.</p>
<p>You need to tell Core 2008 what users are allowed to connect. You can do this by typing this at the command line:</p>
<p><code>cmdkey /add:ServerName /user:UserName /pass:password</code></p>
<p>Where ServerName is the name of the local server, and the username and password are for an administrator account.</p>
<p>That is all there is to it. After those two commands you can remotely manage your 2008 core server with ease.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2010/05/windows-2008-core-enable-remote-administration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remote Control 4.0 Released</title>
		<link>http://www.intelliadmin.com/index.php/2009/06/remote-control-40-released/</link>
		<comments>http://www.intelliadmin.com/index.php/2009/06/remote-control-40-released/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 06:35:17 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2000]]></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/blog/?p=789</guid>
		<description><![CDATA[This is a quick one &#8211; The final version of Remote Control 4.0 has been released. Current customers with an upgrade protection license should receive their email within 24 hours. If you did not, please send an email to support@intelliadmin.com and we will take care of you as soon as possible. Here are the screenshots: [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>This is a quick one &#8211; The final version of Remote Control 4.0 has been released. Current customers with an upgrade protection license should receive their email within 24 hours. If you did not, please send an email to <a href="mailto:support@intelliadmin.com">support@intelliadmin.com</a> and we will take care of you as soon as possible.</p>
<p>Here are the screenshots:<br />
<a href="http://www.intelliadmin.com/RemoteControl4_ScreenShots.htm">http://www.intelliadmin.com/RemoteControl4_ScreenShots.htm</a></p>
<p>And a link to the trial download:<br />
<a href="http://www.intelliadmin.com/setupex.exe" rel="nmlp">setupex.exe</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2009/06/remote-control-40-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clean boot into Windows 2008, and Vista</title>
		<link>http://www.intelliadmin.com/index.php/2009/06/clean-boot-into-windows-2008-and-vista/</link>
		<comments>http://www.intelliadmin.com/index.php/2009/06/clean-boot-into-windows-2008-and-vista/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 03:11:26 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Boot]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/blog/?p=750</guid>
		<description><![CDATA[I was troubleshooting a server yesterday and a came across an easy way to clean boot into Vista, or 2008. When I say clean boot I mean that Windows starts without any 3rd party services running. To do it, startup MSCONFIG, (Start then run&#8230;type msconfig.exe) Once it launches, move over to the services tab: Then [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I was troubleshooting a server yesterday and a came across an easy way to clean boot into Vista, or 2008. When I say clean boot I mean that Windows starts without any 3rd party services running.</p>
<p>To do it, startup MSCONFIG, (Start then run&#8230;type msconfig.exe)</p>
<p>Once it launches, move over to the services tab:</p>
<p><img src="http://www.intelliadmin.com/images/Windows%202008%20Clean%20Boot%20Services.jpg" alt="Windows 2008 Clean Boot Services"></p>
<p>Then move down, and hide Microsoft services (We don&#8217;t want to disable those)</p>
<p><img src="http://www.intelliadmin.com/images/Widows%202008%20Clean%20Boot%20Hide%20Microsoft.jpg" alt="Windows 2008 Clean Boot Hide Microsoft"></p>
<p>After you do that, click the &#8220;Disable Services&#8221; button on the right:</p>
<p><img src="http://www.intelliadmin.com/images/Widows%202008%20Clean%20Boot%20Disable.jpg" alt="Windows 2008 Clean Boot Disable"></p>
<p>Now click OK, and reboot. When Windows restarts, no 3rd party services will be running.</p>
<p>Once you have completed your troubleshooting you can reverse the process to turn them back on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2009/06/clean-boot-into-windows-2008-and-vista/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Free Terminal Services E-Book</title>
		<link>http://www.intelliadmin.com/index.php/2009/05/free-terminal-services-e-book/</link>
		<comments>http://www.intelliadmin.com/index.php/2009/05/free-terminal-services-e-book/#comments</comments>
		<pubDate>Thu, 28 May 2009 12:30:13 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Terminal Services]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2008]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/blog/?p=678</guid>
		<description><![CDATA[Note (07/16/2009): This was a limited offer&#8230;the eBook is no longer free. You can purchase a copy from here Microsoft has announced they are giving away the Windows 2008 Terminal Services book in PDF format. I downloaded it yesterday, and it is packed with information. A must-have if you are considering implementing, or have implemented [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><i>Note (07/16/2009): This was a limited offer&#8230;the eBook is no longer free. You can purchase a copy <a href="http://www.amazon.com/Windows-Server%C2%AE-Terminal-Services-Resource/dp/0735625859/ref=sr_1_1?ie=UTF8&#038;s=books&#038;qid=1247757219&#038;sr=8-1">from here</a></i> </p>
<p>Microsoft has announced they are giving away the Windows 2008 Terminal Services book in PDF format.</p>
<p><img src="http://www.intelliadmin.com/images/Windows%202008%20Terminal%20Services.jpg" alt="Windows 2008 Terminal Services"/></p>
<p>I downloaded it yesterday, and it is packed with information.</p>
<p>A must-have if you are considering implementing, or have implemented terminal services on your network. A few top points from the book:<br />
<b><br />
-Using roaming profiles with Terminal Services</p>
<p>-Locking down the terminal server</p>
<p>-Publishing applications</p>
<p>-Monitoring user sessions</p>
<p>-Multi Server Deployments</b></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2009/05/free-terminal-services-e-book/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Remote Control 4.0 Beta</title>
		<link>http://www.intelliadmin.com/index.php/2009/05/remote-control-40-beta/</link>
		<comments>http://www.intelliadmin.com/index.php/2009/05/remote-control-40-beta/#comments</comments>
		<pubDate>Tue, 26 May 2009 23:58:56 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Beta]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2000]]></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/blog/?p=716</guid>
		<description><![CDATA[We have been working hard on the new version of IntelliAdmin Remote Control. Some things that will be in the new version: Screen scaling &#8211; The client will automatically shrink the view to fit the screen within the window. With huge resolutions, you no longer are forced to constantly scroll around Alpha Capture Disable &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>We have been working hard on the new version of IntelliAdmin Remote Control.</p>
<p>Some things that will be in the new version:</p>
<p><b>Screen scaling</b> &#8211; The client will automatically shrink the view to fit the screen within the window. With huge resolutions, you no longer are forced to constantly scroll around</p>
<p><b>Alpha Capture Disable</b> &#8211; Applications like Office 2007 need alpha capture turned on, or parts of their windows will not be sent back to the remote client. This was always turned on in 3.x. Once side effect of this setting is the mouse flickers with some video cards. Now you have the option to turn this off and keep the mouse flicker to a minimum &#8211; great if you are given the task of watching a user without them knowing.</p>
<p><b>Screen Shots</b> &#8211; You can easily save the current view in the client window to a JPG file. This is good for keeping a visual log of crash events, or activity of users.</p>
<p><b>Auto-Reconnect</b> &#8211; When a connection is lost, it will automatically attempt to re-establish the connection</p>
<p><b>Computer Lists</b> &#8211; We have loaded it up with options for getting lists of computers. You can get them from Windows Networking like you do right now, but in addition you can import them from an XML file, add them manually, or update them in real time from a http URL &#8211; this allows you to create a common computer list that all administrators can see and use.</p>
<p><b>Computer Search</b> &#8211; This is the big one. When talking with customers the biggest complaint is finding a single computer among 1000s. When remote control connects to a machine, it will pull username, computername, and operating system info. All of this is stored in a database. When you click on the find button in the client window, you are shown a full listing of computers:</p>
<p><img src="http://www.intelliadmin.com/images/IntelliAdmin%204%20Preview.jpg" alt="IntelliAdmin 4 Preview"/></p>
<p>When you start typing in the search box at the top it will narrow down your results immediately. So, if you get a call from a user you can simply start typing their username and their computer will be automatically filtered out &#8211; no more digging around for their IP address, or computer name.</p>
<p>Lots of time was spent to make sure this was efficient &#8211; we threw the client on an old XP machine and it was able to search 10,000 computer records in less than 1 second.</p>
<p>Everything about the &#8220;find computer&#8221; section was designed to reduce the time it takes to find and control a computer, and make you more productive.</p>
<p>Why am I teasing you with all of this? Because I want you to join our beta program. To join, simply follow this link:</p>
<p><!-- BEGIN: Constant Contact Text Link Email List Button --></p>
<div align="center">
<table width="200" border="0" cellpadding="0" cellspacing="0">
<tr>
<td nowrap width="100%"><a href="http://visitor.constantcontact.com/d.jsp?m=1102324226745&#038;p=oi"  target="_blank" style="font-family:Arial; font-size:13px; color:#000000;">Sign up for our Email Newsletter</a></td>
</tr>
</table>
</div>
<p>Make sure you check the 4.0 beta option.</p>
<p>The final release date will be June 27th. If you <a href="http://www.intelliadmin.com/RemoteControl3Purchase.asp">order Remote Control 3.2 right now</a> the upgrade protection option will allow you to get a free upgrade when it comes out &#8211; a good deal since this will give you close to 40% in savings</p>
<p>While we are at it. What do you want to see in 4.5? File Transfers, Chat, or what other wish do you have for the next version. Post in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2009/05/remote-control-40-beta/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Install PowerShell on Windows 2008 Server</title>
		<link>http://www.intelliadmin.com/index.php/2009/05/install-powershell-on-windows-2008-server/</link>
		<comments>http://www.intelliadmin.com/index.php/2009/05/install-powershell-on-windows-2008-server/#comments</comments>
		<pubDate>Mon, 25 May 2009 12:30:23 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Widnows 2008]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2008]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/blog/?p=673</guid>
		<description><![CDATA[I was trying to install Microsoft Exchange 2007 on a new 2008 server. During the install plan I got to this step: If you click on that link it leads you to a download page. Everywhere you look you see downloads for 2003, and XP. Nothing about Windows Server 2008. I decided to try one [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I was trying to install Microsoft Exchange 2007 on a new 2008 server.</p>
<p>During the install plan I got to this step:</p>
<p><img src="http://www.intelliadmin.com/images/Windows%20Powershell%202008.jpg" alt="Windows PowerShell 2008"></p>
<p>If you click on that link it leads you to a download page. Everywhere you look you see downloads for 2003, and XP. Nothing about Windows Server 2008.</p>
<p>I decided to try one of the 2003 downloads to see if that was acceptable &#8211; nope.</p>
<p>OK, Looking around the net I read everywhere that PowerShell is cooked into Windows 2008 server.</p>
<p>Hmm&#8230;.That means it should be a &#8216;feature&#8217; under server manager.</p>
<p>Sure enough, in server manager I found it, and was able to install it.</p>
<p>To do this click on the start menu, then administrative tools, and finally server manager.</p>
<p>The server manager will pop up, then click on the features icon:</p>
<p><img src="http://www.intelliadmin.com/images/PowerShell%202008%20Server%20Manager.jpg" alt="PowerShell 2008 Sever Manager"></p>
<p>Then, click on the &#8220;add features&#8221; button to the right. A list of features available to you will be displayed. Pick Windows PowerShell:</p>
<p><img src="http://www.intelliadmin.com/images/Exchange%202007%20PowerShell.jpg" alt="Exchange 2007 PowerShell"></p>
<p>(Notice that I already had installed in the shot above)</p>
<p>After that I learned you can&#8217;t install Exchange 2007 on 2008 server. Doh!</p>
<p>I am sure it is possible, but Microsoft currently does not support it.</p>
<p>Back to the drawing board.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2009/05/install-powershell-on-windows-2008-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

