<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Configure Exchange 2010 InternalUrl PowerShell script</title>
	<atom:link href="http://msunified.net/2010/01/13/configure-exchange-2010-internalurl-powershell-script/feed/" rel="self" type="application/rss+xml" />
	<link>http://msunified.net/2010/01/13/configure-exchange-2010-internalurl-powershell-script/</link>
	<description>Technical blog about Exchange, OCS and Lync by Ståle Hansen</description>
	<lastBuildDate>Tue, 07 Feb 2012 08:42:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Steen Kristensen</title>
		<link>http://msunified.net/2010/01/13/configure-exchange-2010-internalurl-powershell-script/#comment-1928</link>
		<dc:creator><![CDATA[Steen Kristensen]]></dc:creator>
		<pubDate>Mon, 19 Dec 2011 15:13:24 +0000</pubDate>
		<guid isPermaLink="false">http://msunified.net/?p=1135#comment-1928</guid>
		<description><![CDATA[Great script - thanks]]></description>
		<content:encoded><![CDATA[<p>Great script &#8211; thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://msunified.net/2010/01/13/configure-exchange-2010-internalurl-powershell-script/#comment-1856</link>
		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Mon, 12 Dec 2011 13:54:03 +0000</pubDate>
		<guid isPermaLink="false">http://msunified.net/?p=1135#comment-1856</guid>
		<description><![CDATA[[...]  [...]]]></description>
		<content:encoded><![CDATA[<p>[...]  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Script to set internal and external URLs on all of your Exchange Virtual Directories at once &#124; The Day to Day Findings of an IT Engineer</title>
		<link>http://msunified.net/2010/01/13/configure-exchange-2010-internalurl-powershell-script/#comment-1674</link>
		<dc:creator><![CDATA[Script to set internal and external URLs on all of your Exchange Virtual Directories at once &#124; The Day to Day Findings of an IT Engineer]]></dc:creator>
		<pubDate>Fri, 25 Nov 2011 17:03:31 +0000</pubDate>
		<guid isPermaLink="false">http://msunified.net/?p=1135#comment-1674</guid>
		<description><![CDATA[[...] on November 25, 2011 by SeanLaBrie     I stumbled upon this script earlier today, it was posted on msunified.net. This is script is great! a one stop shop for setting all of the necessary URLs needed for both [...]]]></description>
		<content:encoded><![CDATA[<p>[...] on November 25, 2011 by SeanLaBrie     I stumbled upon this script earlier today, it was posted on msunified.net. This is script is great! a one stop shop for setting all of the necessary URLs needed for both [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ståle Hansen</title>
		<link>http://msunified.net/2010/01/13/configure-exchange-2010-internalurl-powershell-script/#comment-1434</link>
		<dc:creator><![CDATA[Ståle Hansen]]></dc:creator>
		<pubDate>Fri, 04 Nov 2011 09:16:21 +0000</pubDate>
		<guid isPermaLink="false">http://msunified.net/?p=1135#comment-1434</guid>
		<description><![CDATA[Cool, thanks. I may be mistaken but seems like the url variable for ActiveSync Vdir externally is wrong, should be $urlpath2 and not $urlpath, or is it by design?]]></description>
		<content:encoded><![CDATA[<p>Cool, thanks. I may be mistaken but seems like the url variable for ActiveSync Vdir externally is wrong, should be $urlpath2 and not $urlpath, or is it by design?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thunder</title>
		<link>http://msunified.net/2010/01/13/configure-exchange-2010-internalurl-powershell-script/#comment-1433</link>
		<dc:creator><![CDATA[Thunder]]></dc:creator>
		<pubDate>Fri, 04 Nov 2011 08:59:33 +0000</pubDate>
		<guid isPermaLink="false">http://msunified.net/?p=1135#comment-1433</guid>
		<description><![CDATA[Edited this Script to be able to give External and Internal Adresses with orderen List Output.


&lt;code&gt;#ChangeAutodiscoverPath.ps1
#Changing InternalURL Path
$urlpath = Read-Host &quot;Type Internal Client Access FQDN starting with http:// or https://&quot;
Set-AutodiscoverVirtualDirectory -Identity * –internalurl “$urlpath/autodiscover/autodiscover.xml”
Set-ClientAccessServer –Identity * –AutodiscoverServiceInternalUri “$urlpath/autodiscover/autodiscover.xml”
Set-webservicesvirtualdirectory -Identity * –internalurl “$urlpath/ews/exchange.asmx”
Set-oabvirtualdirectory –Identity * –internalurl “$urlpath/oab”
Set-owavirtualdirectory –Identity * –internalurl “$urlpath/owa”
Set-ecpvirtualdirectory –Identity * –internalurl “$urlpath/ecp”
Set-ActiveSyncVirtualDirectory -Identity * -InternalUrl &quot;$urlpath/Microsoft-Server-ActiveSync&quot;
#Changing ExternalURL Path
$urlpath2 = Read-Host &quot;Type External Client Access FQDN starting with http:// or https://&quot;
Set-AutodiscoverVirtualDirectory -Identity * –externalurl “$urlpath2/autodiscover/autodiscover.xml”
Set-ClientAccessServer –Identity * –AutodiscoverServiceInternalUri “$urlpath2/autodiscover/autodiscover.xml”
Set-webservicesvirtualdirectory –Identity * –externalurl “$urlpath2/ews/exchange.asmx”
Set-oabvirtualdirectory –Identity * –externalurl “$urlpath2/oab”
Set-owavirtualdirectory –Identity * –externalurl “$urlpath2/owa”
Set-ecpvirtualdirectory –Identity * –externalurl “$urlpath2/ecp”
Set-ActiveSyncVirtualDirectory -Identity * -ExternalUrl &quot;$urlpath/Microsoft-Server-ActiveSync&quot;
#get commands to doublecheck the config
get-AutodiscoverVirtualDirectory &#124; fl identity,internalurl, externalurl
get-ClientAccessServer &#124; fl identity,AutodiscoverServiceInternalUri
get-webservicesvirtualdirectory &#124; fl identity,internalurl,externalurl
get-oabvirtualdirectory &#124; fl identity,internalurl,externalurl
get-owavirtualdirectory &#124; fl identity,internalurl,externalurl
get-ecpvirtualdirectory &#124; fl identity,internalurl,externalurl
get-ActiveSyncVirtualDirectory &#124; fl identity,internalurl,externalurl


&lt;/code&gt;]]></description>
		<content:encoded><![CDATA[<p>Edited this Script to be able to give External and Internal Adresses with orderen List Output.</p>
<p><code>#ChangeAutodiscoverPath.ps1<br />
#Changing InternalURL Path<br />
$urlpath = Read-Host "Type Internal Client Access FQDN starting with http:// or https://"<br />
Set-AutodiscoverVirtualDirectory -Identity * –internalurl “$urlpath/autodiscover/autodiscover.xml”<br />
Set-ClientAccessServer –Identity * –AutodiscoverServiceInternalUri “$urlpath/autodiscover/autodiscover.xml”<br />
Set-webservicesvirtualdirectory -Identity * –internalurl “$urlpath/ews/exchange.asmx”<br />
Set-oabvirtualdirectory –Identity * –internalurl “$urlpath/oab”<br />
Set-owavirtualdirectory –Identity * –internalurl “$urlpath/owa”<br />
Set-ecpvirtualdirectory –Identity * –internalurl “$urlpath/ecp”<br />
Set-ActiveSyncVirtualDirectory -Identity * -InternalUrl "$urlpath/Microsoft-Server-ActiveSync"<br />
#Changing ExternalURL Path<br />
$urlpath2 = Read-Host "Type External Client Access FQDN starting with http:// or https://"<br />
Set-AutodiscoverVirtualDirectory -Identity * –externalurl “$urlpath2/autodiscover/autodiscover.xml”<br />
Set-ClientAccessServer –Identity * –AutodiscoverServiceInternalUri “$urlpath2/autodiscover/autodiscover.xml”<br />
Set-webservicesvirtualdirectory –Identity * –externalurl “$urlpath2/ews/exchange.asmx”<br />
Set-oabvirtualdirectory –Identity * –externalurl “$urlpath2/oab”<br />
Set-owavirtualdirectory –Identity * –externalurl “$urlpath2/owa”<br />
Set-ecpvirtualdirectory –Identity * –externalurl “$urlpath2/ecp”<br />
Set-ActiveSyncVirtualDirectory -Identity * -ExternalUrl "$urlpath/Microsoft-Server-ActiveSync"<br />
#get commands to doublecheck the config<br />
get-AutodiscoverVirtualDirectory | fl identity,internalurl, externalurl<br />
get-ClientAccessServer | fl identity,AutodiscoverServiceInternalUri<br />
get-webservicesvirtualdirectory | fl identity,internalurl,externalurl<br />
get-oabvirtualdirectory | fl identity,internalurl,externalurl<br />
get-owavirtualdirectory | fl identity,internalurl,externalurl<br />
get-ecpvirtualdirectory | fl identity,internalurl,externalurl<br />
get-ActiveSyncVirtualDirectory | fl identity,internalurl,externalurl</p>
<p></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ståle Hansen</title>
		<link>http://msunified.net/2010/01/13/configure-exchange-2010-internalurl-powershell-script/#comment-509</link>
		<dc:creator><![CDATA[Ståle Hansen]]></dc:creator>
		<pubDate>Wed, 14 Jul 2010 08:38:16 +0000</pubDate>
		<guid isPermaLink="false">http://msunified.net/?p=1135#comment-509</guid>
		<description><![CDATA[Hi Alistair. Thanks for commenting in my blog. Answered your question in the technet post you refered to. Hope we can solve the problem there :)]]></description>
		<content:encoded><![CDATA[<p>Hi Alistair. Thanks for commenting in my blog. Answered your question in the technet post you refered to. Hope we can solve the problem there :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alistair</title>
		<link>http://msunified.net/2010/01/13/configure-exchange-2010-internalurl-powershell-script/#comment-505</link>
		<dc:creator><![CDATA[Alistair]]></dc:creator>
		<pubDate>Tue, 13 Jul 2010 20:11:28 +0000</pubDate>
		<guid isPermaLink="false">http://msunified.net/?p=1135#comment-505</guid>
		<description><![CDATA[Hi,
I&#039;ve tried to run this script, it seems to have worked correctly however my Outlook clients are still getting prompted to accept the certificate (Outlook clients are connecting to .domain.com, which isn&#039;t on the certificate; so I want them to connect to mail.domain.com instead as this is the common name).  See my post here:

http://social.technet.microsoft.com/Forums/en/exchange2010/thread/20c35117-d7fc-4a43-81f0-4eea964febab?prof=required

I&#039;d appreciate any ideas you may have on this matter.

Thanks.]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
I&#8217;ve tried to run this script, it seems to have worked correctly however my Outlook clients are still getting prompted to accept the certificate (Outlook clients are connecting to .domain.com, which isn&#8217;t on the certificate; so I want them to connect to mail.domain.com instead as this is the common name).  See my post here:</p>
<p><a href="http://social.technet.microsoft.com/Forums/en/exchange2010/thread/20c35117-d7fc-4a43-81f0-4eea964febab?prof=required" rel="nofollow">http://social.technet.microsoft.com/Forums/en/exchange2010/thread/20c35117-d7fc-4a43-81f0-4eea964febab?prof=required</a></p>
<p>I&#8217;d appreciate any ideas you may have on this matter.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Web Services InternalURL powershell configuration &#171; msunified.net</title>
		<link>http://msunified.net/2010/01/13/configure-exchange-2010-internalurl-powershell-script/#comment-150</link>
		<dc:creator><![CDATA[Web Services InternalURL powershell configuration &#171; msunified.net]]></dc:creator>
		<pubDate>Wed, 13 Jan 2010 22:20:13 +0000</pubDate>
		<guid isPermaLink="false">http://msunified.net/?p=1135#comment-150</guid>
		<description><![CDATA[[...] NOTE: This script has been updated in a post related to Exchange 2010 here: http://msunified.net/2010/01/13/configure-exchange-2010-internalurl-powershell-script/ [...]]]></description>
		<content:encoded><![CDATA[<p>[...] NOTE: This script has been updated in a post related to Exchange 2010 here: <a href="http://msunified.net/2010/01/13/configure-exchange-2010-internalurl-powershell-script/" rel="nofollow">http://msunified.net/2010/01/13/configure-exchange-2010-internalurl-powershell-script/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

