<?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; Exchange</title>
	<atom:link href="http://www.intelliadmin.com/index.php/category/exchange/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>Backup Outlook from the command line</title>
		<link>http://www.intelliadmin.com/index.php/2011/04/backup-outlook-from-the-command-line/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/04/backup-outlook-from-the-command-line/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 13:54:48 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Backups]]></category>
		<category><![CDATA[BAT Files]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=3256</guid>
		<description><![CDATA[Jennifer, sent me a question last week: Steve, Got a question for you. I have a small network of about 10 laptops. All of my users store their email in PST files in Outlook. I want to have an icon on their desktop that they can click to backup Outlook before they leave for the [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/04/backup-outlook-from-the-command-line/" title="Permanent link to Backup Outlook from the command line"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/Email.jpg" width="55" height="55" alt="Post image for Backup Outlook from the command line" /></a>
</p><p>Jennifer, sent me a question last week:</p>
<p><i>Steve, </p>
<p>Got a question for you. I have a small network of about 10 laptops. All of my users store their email in PST files in Outlook. I want to have an icon on their desktop that they can click to backup Outlook before they leave for the weekend. Is there any easy way to do this?</p>
<p>Thanks,</p>
<p>Jen<br />
</i><br />
Yes, There is a way to do this. Now it is not foolproof, but it will work most of the time.</p>
<p><img src="http://www.intelliadmin.com/images/Outlook%20Backup%20Command%20Line.jpg"/></p>
<p>First, we need our script to close Outlook, that way the PST files will not be in use. </p>
<p>We will accomplish this with a little bit of VB Script:<br />
<code><br />
Set Outlook = CreateObject("Outlook.Application")<br />
Outlook.Quit<br />
Set Outlook = Nothing<br />
</code></p>
<p>Save this as &#8220;CloseOutlook.vbs&#8221;</p>
<p>Now, we will use this script, in combination with a bat file. The bat file will run CloseOutlook.vbs, and then copy the PST files.</p>
<p>Most of the time PST files are located in the users AppData folder. We can use an environment variable to find this. </p>
<p>It is called %LOCALAPPDATA%. For our backup, we will copy it to a share named backup, and we will copy it to a folder matching the users name.</p>
<p>The copy command will look like this:<br />
<code><br />
COPY %LOCALAPPDATA%\Microsoft\Outlook\*.pst \\server\backup\%USERNAME% /y<br />
</code><br />
/y &#8211; This allows us to overwrite without being prompted.</p>
<p>So, we have both things that we need. The ability to close Outlook (So the user does not have to remember to do this), and a way to find and copy our PST files.</p>
<p>Here is what the final bat file would look like</p>
<p><code><br />
cscript.exe CloseOutlook.vbs<br />
COPY %LOCALAPPDATA%\Microsoft\Outlook\*.pst \\server\backup\%USERNAME% /y<br />
@if errorlevel 1 goto ERROR_HANDLER<br />
@goto SUCCESS<br />
:ERROR_HANDLER<br />
@echo "==================="<br />
@echo "=  Backup Failed  =<br />
@echo "==================="</p>
<p>@goto exit<br />
:SUCCESS<br />
@echo "==================="<br />
@echo "= Backup Complete =<br />
@echo "==================="</p>
<p>:EXIT<br />
pause<br />
</code><br />
I added an error handler, so the user will be notified if the copy could not complete.</p>
<p>Save it as BackupOutlook.bat and throw it on their desktop. </p>
<p>Now your users can backup their PST files &#8211; If they remember to do it <img src='http://www.intelliadmin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/04/backup-outlook-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Automatically setup Microsoft Outlook</title>
		<link>http://www.intelliadmin.com/index.php/2011/03/automatically-setup-microsoft-outlook/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/03/automatically-setup-microsoft-outlook/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 23:26:56 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Profile Generator]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=3076</guid>
		<description><![CDATA[One of the problems when deploying Microsoft Outlook is that there is always some form or wizard that needs to be completed before a user can start accessing their email. Even in the latest version of Outlook, there are still setup pages the user has to fill out. This can get especially annoying if you [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/03/automatically-setup-microsoft-outlook/" title="Permanent link to Automatically setup Microsoft Outlook"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/email.jpg" width="55" height="55" alt="Post image for Automatically setup Microsoft Outlook" /></a>
</p><p>One of the problems when deploying Microsoft Outlook is that there is <i>always</i> some form or wizard that needs to be completed before a user can start accessing their email.</p>
<p>Even in the latest version of Outlook, there are still setup pages the user has to fill out. </p>
<p><img src="http://www.intelliadmin.com/images/Outlook%202010%20Setup%20Screen.jpg" alt="Outlook 2010 Setup"/></p>
<p>This can get especially annoying if you have users that logon to different computers across your network.</p>
<p>&#8220;Michael here. Um I am at the branch in Siberia. Need help with my Outlook again.&#8221;</p>
<p><img src="http://www.intelliadmin.com/images/MichaelScott.jpg" alt="Michael"/></p>
<p>Wouldn&#8217;t it be great if Michael could just launch Outlook and get right into his email?</p>
<p>Yes, you wouldn&#8217;t get to hear Michael&#8217;s great stories, but then you would have time to do other things.</p>
<p>We have an answer for this problem, and it is called Profile Generator.</p>
<p>Here is how it works. Simply visit the download page:</p>
<p><a href="http://www.intelliadmin.com/index.php/outlookprofilegeneratordownload/"><img src="http://www.intelliadmin.com/images/Profile%20Generator%20Download%20Page%203.0.jpg" alt="Profile Generator Settings"/></a></p>
<p>(Link: <a href="http://www.intelliadmin.com/index.php/outlookprofilegeneratordownload/">http://www.intelliadmin.com/index.php/outlookprofilegeneratordownload/</a>)</p>
<p>Set your exchange server name, and pick your options. </p>
<p>Want Outlook to be configured with cache mode disabled?</p>
<p>- Check that box.</p>
<p>What about those laptops on the road?  </p>
<p>- You can set it to configure HTTP based access. </p>
<p>Need to enable encryption?  </p>
<p>- Check that box.</p>
<p>Then, once you have completed your selections, click the download button. </p>
<p><img src="http://www.intelliadmin.com/images/Profile%20Generator%203.0%20Download%20Button.jpg" alt="Profile Generator 3.0 Download"/></p>
<p>Our server will build a custom program that will apply all of the requested settings, and you can download it instantly.</p>
<p>Put the program in the users logon script, and now you have a lot more time on your hands. </p>
<p>Users are happy because their Outlook &#8220;Just works&#8221; everywhere on your network, and you are happy since you no longer have to deal with helping them set it up.</p>
<p>It works with Exchange 2003, 2007, and 2010 &#8211; and is compatible with Outlook XP, 2003, 2007, and 2010. </p>
<p>Only $299 for a company license. No per-user costs, just one price.</p>
<p>Check it out at:</p>
<p><a href="http://www.intelliadmin.com/index.php/profile-generator/">http://www.intelliadmin.com/index.php/profile-generator/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/03/automatically-setup-microsoft-outlook/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Automated Outlook Setup</title>
		<link>http://www.intelliadmin.com/index.php/2011/01/automated-outlook-setup/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/01/automated-outlook-setup/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 21:02:33 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=3905</guid>
		<description><![CDATA[One of the issues when deploying Microsoft Outlook is that there is always some form or wizard that needs to be completed before a user can start accessing their email. Even in Outlook 2010, there are still setup pages the user has to fill out. This can get especially annoying if you have users that [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/01/automated-outlook-setup/" title="Permanent link to Automated Outlook Setup"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/email.jpg" width="55" height="55" alt="Post image for Automated Outlook Setup" /></a>
</p><p>One of the issues when deploying Microsoft Outlook is that there is <i>always</i> some form or wizard that needs to be completed before a user can start accessing their email.</p>
<p>Even in Outlook 2010, there are still setup pages the user has to fill out. </p>
<p><img src="http://www.intelliadmin.com/images/Outlook%202010%20Setup%20Screen.jpg" alt="Outlook 2010 Setup"/></p>
<p>This can get especially annoying if you have users that logon to different computers across your network.</p>
<p>We have an answer for this problem, and it is called Profile Generator. </p>
<p>Here is how it works. Simply visit the download page:</p>
<p><a href="http://www.intelliadmin.com/index.php/outlookprofilegeneratordownload/"><img src="http://www.intelliadmin.com/images/Profile%20Generator%20Download%20Page%203.0.jpg" alt="Profile Generator Settings"/></a></p>
<p>(Link: <a href="http://www.intelliadmin.com/index.php/outlookprofilegeneratordownload/">http://www.intelliadmin.com/index.php/outlookprofilegeneratordownload/</a>)</p>
<p>Set your exchange server name, and pick your options. </p>
<p>Want Outlook to be configured with cache mode disabled?</p>
<p>- Check that box.</p>
<p>What about those laptops on the road?  </p>
<p>- You can set it to configure HTTP based access. </p>
<p>Need to enable encryption?  </p>
<p>- Check that box.</p>
<p>Then, once you have completed your selections, click the download button. </p>
<p><img src="http://www.intelliadmin.com/images/Profile%20Generator%203.0%20Download%20Button.jpg" alt="Profile Generator 3.0 Download"/></p>
<p>Our server will build a custom program that will apply all of the requested settings, and you can download it instantly.</p>
<p>Put the program in the users logon script, and now you have a lot more time on your hands. </p>
<p>Users are happy because their Outlook &#8220;Just works&#8221; everywhere on your network, and you are happy since you no longer have to deal with helping them set it up.</p>
<p>It works with Exchange 2003, 2007, and 2010 &#8211; and is compatible with Outlook XP, 2003, 2007, and 2010. </p>
<p>Only $299 for a company license. No per-user costs, just one price.</p>
<p>Check it out at:</p>
<p><a href="http://www.intelliadmin.com/index.php/profile-generator/">http://www.intelliadmin.com/index.php/profile-generator/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/01/automated-outlook-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Outlook profiles from the command line</title>
		<link>http://www.intelliadmin.com/index.php/2010/11/create-outlook-profiles-from-the-command-line/</link>
		<comments>http://www.intelliadmin.com/index.php/2010/11/create-outlook-profiles-from-the-command-line/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 13:40:59 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Utility]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/index.php?p=2789</guid>
		<description><![CDATA[For quite some time we have had a product called Profile Generator. It is a command line application that you can drop into a logon script. Once it is there, users can launch Outlook and get right into their email. No more setup wizards, and no more support calls for those users that roam from [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2010/11/create-outlook-profiles-from-the-command-line/" title="Permanent link to Create Outlook profiles from the command line"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/Email.jpg" width="55" height="55" alt="Post image for Create Outlook profiles from the command line" /></a>
</p><p>For quite some time we have had a product called <a href="http://www.intelliadmin.com/index.php/profile-generator/">Profile Generator</a>.</p>
<p>It is a command line application that you can drop into a logon script. Once it is there, users can launch Outlook and get right into their email. No more setup wizards, and no more support calls for those users that roam from location to location. </p>
<p>One of the problems with it &#8211; all of the options are passed to it via the command line. In addition, it was missing a few features that people asked for over and over:</p>
<p> -Enabling, or disabling cached mode<br />
 -Delete all current profiles<br />
 -Setting a connection to an Exchange server via HTTP</p>
<p>We started cramming all of this into the command line. It was a mess. Too many options.</p>
<p>Our solution? We decided to take some technology from our <a href="http://www.intelliadmin.com/index.php/remote-control/">Remote Control</a> product. This new tech will allow users to generate custom versions of the Remote Control agent by making selections on a web page.</p>
<p>The remote control stuff isn&#8217;t ready yet, but with profile generator, we saw we could easily move it to the new system since it is only a command line application.</p>
<p>Here is how it works. You visit this web page:</p>
<p><a href="http://www.intelliadmin.com/index.php/outlookprofilegeneratordownload">http://www.intelliadmin.com/index.php/outlookprofilegeneratordownload</a></p>
<p>And pick your options &#8211; Make sure you at least fill out the exchange server host name&#8230;it won&#8217;t complain yet if you don&#8217;t (I did say it was beta right? <img src='http://www.intelliadmin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
<p><img src="http://www.intelliadmin.com/images/Profile%20Generator%20Beta.jpg" alt="Profile Generator Beta"/></p>
<p>If you are a current customer, don&#8217;t forget to put in your serial number at the bottom. </p>
<p>Click download, and you have a custom build of profile generator that is designed for your network.</p>
<p>Simply add it to a users logon script, and the next time they login they can launch Outlook without hassles.</p>
<p>This starts the public beta today. If you <a href="http://www.intelliadmin.com/ProfileGeneratorPurchase.asp">purchase Profile Generator now</a>, you will get an upgrade for free. All current customers will also get a free upgrade. If you purchased before November 2005, or do not have your serial number handy&#8230;send us an email at <a href="mailto:support@intelliadmin.com">support@intelliadmin.com</a> and we will take care of you right away.</p>
<p>Please send your bug reports to <a href="mailto:support@intelliadmin.com">support@intelliadmin.com</a>. If you see a feature you want added, let us know&#8230;we will try to get it in before the final release.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2010/11/create-outlook-profiles-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Exchange Email &#8211; Forward to an external account</title>
		<link>http://www.intelliadmin.com/index.php/2010/06/exchange-email-forward-to-an-external-account/</link>
		<comments>http://www.intelliadmin.com/index.php/2010/06/exchange-email-forward-to-an-external-account/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 13:43:33 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=2322</guid>
		<description><![CDATA[It is not as simple as it sounds. You have Exchange, and want forward to an outside email address. With some other email servers, there is a one line entry where you can add an external account. Not so with Exchange. Lets me walk you through it. First, you need to create a contact. You [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>It is not as simple as it sounds. You have Exchange, and want forward to an outside email address.</p>
<p>With some other email servers, there is a one line entry where you can add an external account. Not so with Exchange.</p>
<p>Lets me walk you through it.</p>
<p>First, you need to create a contact. You do this by getting on your domain controller. Open up Active Directory Users and Computers</p>
<p>Go to the place where you want to create the contact, right click and select new contact</p>
<p><img src="http://www.networksteve.com/images/New%20Contact%20201006.jpg" alt="New Contact"/></p>
<p>Click Next, and see that empty email address with the button next to it?</p>
<p><img src="http://www.networksteve.com/images/Contact%20Settings%20201006.jpg" alt="Contact Setttings"/></p>
<p>Click on it, and pick the SMTP address option</p>
<p><img src="http://www.networksteve.com/images/SMTP%20Address%20201006.jpg" alt="SMTP Address Settings"/></p>
<p>Click OK, and you can enter the external address you want to forward the mail to.</p>
<p><img src="http://www.networksteve.com/images/Email%20Address%20Settings%20201006.jpg" alt="Email Address Settings"/></p>
<p>Click OK. Now you have your contact. What Next?</p>
<p>It depends on what you want to do. If you want to simply forward email for an existing user&#8230;simply go to the properties of that user and get to the &#8220;Exchange General&#8221; tab.</p>
<p>If you want to forward email via an internal account, then create a dummy user account and create a mailbox for it. Then go to the &#8220;Exchange General&#8221; section of the properties of that user.</p>
<p><img src="http://www.networksteve.com/images/User%20Settings%20201006.jpg" alt="User Properties"/></p>
<p>Click on the delivery options button.</p>
<p><img src="http://www.networksteve.com/images/Delivery%20Options%20201006.jpg" alt="Delivery Options"/></p>
<p>See the middle part, click the modify button and select the contact you created earlier. If you want email to go to the external account, and the local exchange user, make sure you check the option that says &#8220;Deliver Messages to both&#8230;&#8221;</p>
<p>Now. Click OK on all the boxes. Does it work yet? No. You need to wait a few minutes before Exchange will process all the changes. Keep that in mind when testing &#8211; or you might pull all your hair out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2010/06/exchange-email-forward-to-an-external-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Outlook Profile From the Command Line</title>
		<link>http://www.intelliadmin.com/index.php/2010/01/create-outlook-profile-from-the-command-line/</link>
		<comments>http://www.intelliadmin.com/index.php/2010/01/create-outlook-profile-from-the-command-line/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 20:59:28 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=3902</guid>
		<description><![CDATA[One of the issues when deploying Microsoft Outlook is that there is always some form or wizard that needs to be completed before a user can start accessing their email. Even in Outlook 2010, there are still setup pages the user has to fill out. This can get especially annoying if you have users that [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2010/01/create-outlook-profile-from-the-command-line/" title="Permanent link to Create Outlook Profile From the Command Line"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/email.jpg" width="55" height="55" alt="Post image for Create Outlook Profile From the Command Line" /></a>
</p><p>One of the issues when deploying Microsoft Outlook is that there is <i>always</i> some form or wizard that needs to be completed before a user can start accessing their email.</p>
<p>Even in Outlook 2010, there are still setup pages the user has to fill out. </p>
<p><img src="http://www.intelliadmin.com/images/Outlook%202010%20Setup%20Screen.jpg" alt="Outlook 2010 Setup"/></p>
<p>This can get especially annoying if you have users that logon to different computers across your network.</p>
<p>&#8220;Michael here. Um I am at the branch in Siberia. Need help with my Outlook again.&#8221;</p>
<p><img src="http://www.intelliadmin.com/images/MichaelScott.jpg" alt="Michael"/></p>
<p>Wouldn&#8217;t it be great if Michael could just launch Outlook and get right into his email?</p>
<p>Yes, you wouldn&#8217;t get to hear Michael&#8217;s great stories, but then you would have time to do other things.</p>
<p>We have an answer for this problem, and it is called Profile Generator.</p>
<p>Here is how it works. Simply visit the download page:</p>
<p><a href="http://www.intelliadmin.com/index.php/outlookprofilegeneratordownload/"><img src="http://www.intelliadmin.com/images/Profile%20Generator%20Download%20Page%203.0.jpg" alt="Profile Generator Settings"/></a></p>
<p>(Link: <a href="http://www.intelliadmin.com/index.php/outlookprofilegeneratordownload/">http://www.intelliadmin.com/index.php/outlookprofilegeneratordownload/</a>)</p>
<p>Set your exchange server name, and pick your options. </p>
<p>Want Outlook to be configured with cache mode disabled?</p>
<p>- Check that box.</p>
<p>What about those laptops on the road?  </p>
<p>- You can set it to configure HTTP based access. </p>
<p>Need to enable encryption?  </p>
<p>- Check that box.</p>
<p>Then, once you have completed your selections, click the download button. </p>
<p><img src="http://www.intelliadmin.com/images/Profile%20Generator%203.0%20Download%20Button.jpg" alt="Profile Generator 3.0 Download"/></p>
<p>Our server will build a custom program that will apply all of the requested settings, and you can download it instantly.</p>
<p>Put the program in the users logon script, and now you have a lot more time on your hands. </p>
<p>Users are happy because their Outlook &#8220;Just works&#8221; everywhere on your network, and you are happy since you no longer have to deal with helping them set it up.</p>
<p>It works with Exchange 2003, 2007, and 2010 &#8211; and is compatible with Outlook XP, 2003, 2007, and 2010. </p>
<p>Only $299 for a company license. No per-user costs, just one price.</p>
<p>Check it out at:</p>
<p><a href="http://www.intelliadmin.com/index.php/profile-generator/">http://www.intelliadmin.com/index.php/profile-generator/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2010/01/create-outlook-profile-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</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>
		<item>
		<title>Create PRF Files</title>
		<link>http://www.intelliadmin.com/index.php/2009/01/create-prf-files/</link>
		<comments>http://www.intelliadmin.com/index.php/2009/01/create-prf-files/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 21:04:35 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=3907</guid>
		<description><![CDATA[One of the issues when deploying Microsoft Outlook is that there is always some form or wizard that needs to be completed before a user can start accessing their email. Even in Outlook 2010, there are still setup pages the user has to fill out. This can get especially annoying if you have users that [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2009/01/create-prf-files/" title="Permanent link to Create PRF Files"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/email.jpg" width="55" height="55" alt="Post image for Create PRF Files" /></a>
</p><p>One of the issues when deploying Microsoft Outlook is that there is <i>always</i> some form or wizard that needs to be completed before a user can start accessing their email.</p>
<p>Even in Outlook 2010, there are still setup pages the user has to fill out. </p>
<p><img src="http://www.intelliadmin.com/images/Outlook%202010%20Setup%20Screen.jpg" alt="Outlook 2010 Setup"/></p>
<p>This can get especially annoying if you have users that logon to different computers across your network.</p>
<p>PRF Files can be used to automatically generate the profile, but getting your arms around the PRF format can take weeks to figure out.</p>
<p>We have an answer for this problem, and it is called Profile Generator. </p>
<p>Here is how it works. Simply visit the download page:</p>
<p><a href="http://www.intelliadmin.com/index.php/outlookprofilegeneratordownload/"><img src="http://www.intelliadmin.com/images/Profile%20Generator%20Download%20Page%203.0.jpg" alt="Profile Generator Settings"/></a></p>
<p>(Link: <a href="http://www.intelliadmin.com/index.php/outlookprofilegeneratordownload/">http://www.intelliadmin.com/index.php/outlookprofilegeneratordownload/</a>)</p>
<p>Set your exchange server name, and pick your options. </p>
<p>Want Outlook to be configured with cache mode disabled?</p>
<p>- Check that box.</p>
<p>What about those laptops on the road?  </p>
<p>- You can set it to configure HTTP based access. </p>
<p>Need to enable encryption?  </p>
<p>- Check that box.</p>
<p>Then, once you have completed your selections, click the download button. </p>
<p><img src="http://www.intelliadmin.com/images/Profile%20Generator%203.0%20Download%20Button.jpg" alt="Profile Generator 3.0 Download"/></p>
<p>Our server will build a custom program that will apply all of the requested settings, and you can download it instantly.</p>
<p>Put the program in the users logon script, and now you have a lot more time on your hands. </p>
<p>Users are happy because their Outlook &#8220;Just works&#8221; everywhere on your network, and you are happy since you no longer have to deal with helping them set it up.</p>
<p>It works with Exchange 2003, 2007, and 2010 &#8211; and is compatible with Outlook XP, 2003, 2007, and 2010. </p>
<p>Only $299 for a company license. No per-user costs, just one price.</p>
<p>Check it out at:</p>
<p><a href="http://www.intelliadmin.com/index.php/profile-generator/">http://www.intelliadmin.com/index.php/profile-generator/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2009/01/create-prf-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

