<?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/"
		>
<channel>
	<title>Comments for ExchangeBytes</title>
	<atom:link href="http://www.exchangebytes.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.exchangebytes.com</link>
	<description>Exchange and Related Technologies</description>
	<lastBuildDate>Mon, 19 Mar 2012 20:00:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Exchange 2003/2007/2010 ActiveSync Proxy and Redirection by DeanSesko</title>
		<link>http://www.exchangebytes.com/?p=598#comment-120</link>
		<dc:creator>DeanSesko</dc:creator>
		<pubDate>Mon, 19 Mar 2012 20:00:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.exchangebytes.com/?p=598#comment-120</guid>
		<description><![CDATA[What Proxy server are you using?  For ISA/TMG you would need to point the CAS Array default gateway to the Proxy server and setup the Rules in ISA/TMG to forward the original request]]></description>
		<content:encoded><![CDATA[<p>What Proxy server are you using?  For ISA/TMG you would need to point the CAS Array default gateway to the Proxy server and setup the Rules in ISA/TMG to forward the original request</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exchange 2003/2007/2010 ActiveSync Proxy and Redirection by Jaska</title>
		<link>http://www.exchangebytes.com/?p=598#comment-119</link>
		<dc:creator>Jaska</dc:creator>
		<pubDate>Mon, 19 Mar 2012 17:56:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.exchangebytes.com/?p=598#comment-119</guid>
		<description><![CDATA[I have tried to find solution for a bit different proxy problem.

Is there a program that would be a proxy between a phone and active sync server? It should direct everything through in both directions. In a phone everything is configured as for the server but ip-address. In the server it looks like everyting comes from the phone but the ip-address seems to be the proxy.

And this is for push, not for OWA.]]></description>
		<content:encoded><![CDATA[<p>I have tried to find solution for a bit different proxy problem.</p>
<p>Is there a program that would be a proxy between a phone and active sync server? It should direct everything through in both directions. In a phone everything is configured as for the server but ip-address. In the server it looks like everyting comes from the phone but the ip-address seems to be the proxy.</p>
<p>And this is for push, not for OWA.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exchange 2010 ActiveSync Device Info by DeanSesko</title>
		<link>http://www.exchangebytes.com/?p=623#comment-110</link>
		<dc:creator>DeanSesko</dc:creator>
		<pubDate>Tue, 28 Feb 2012 19:17:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.exchangebytes.com/?p=623#comment-110</guid>
		<description><![CDATA[Try
Changing 

$Resultset = foreach($mbx in get-mailbox) {Get-ActiveSyncDeviceStatistics -Mailbox:$mbx.Identity &#124;Select-Object @{name=&quot;Username&quot;;expression={$mbx.name}},DeviceType,@{name=&quot;Device&quot;;expression={$_.DeviceUserAgent.ToString().Split(&quot;/&quot;)[0]}},@{name=&quot;OSVersion&quot;;expression={$_.DeviceUserAgent.ToString().Split(&quot;/&quot;)[1]}},LastSuccessSync}

to 

$Resultset = foreach($mbx in get-mailbox) {Get-ActiveSyncDeviceStatistics -Mailbox:$mbx.Identity -ShowRecoveryPassword:$true &#124;Select-Object @{name=&quot;Username&quot;;expression={$mbx.name}},DeviceType,@{name=&quot;Device&quot;;expression={$_.DeviceUserAgent.ToString().Split(&quot;/&quot;)[0]}},@{name=&quot;OSVersion&quot;;expression={$_.DeviceUserAgent.ToString().Split(&quot;/&quot;)[1]}},LastSuccessSync}

and  

$Object = &quot;&quot; &#124; Select-Object Username,DeviceType,Device,Version,LastSuccessSync

to

$Object = &quot;&quot; &#124; Select-Object Username,DeviceType,Device,Version,LastSuccessSync,RecoveryPassword

let me know how that works

Thanks

Dean]]></description>
		<content:encoded><![CDATA[<p>Try<br />
Changing </p>
<p>$Resultset = foreach($mbx in get-mailbox) {Get-ActiveSyncDeviceStatistics -Mailbox:$mbx.Identity |Select-Object @{name=&#8221;Username&#8221;;expression={$mbx.name}},DeviceType,@{name=&#8221;Device&#8221;;expression={$_.DeviceUserAgent.ToString().Split(&#8220;/&#8221;)[0]}},@{name=&#8221;OSVersion&#8221;;expression={$_.DeviceUserAgent.ToString().Split(&#8220;/&#8221;)[1]}},LastSuccessSync}</p>
<p>to </p>
<p>$Resultset = foreach($mbx in get-mailbox) {Get-ActiveSyncDeviceStatistics -Mailbox:$mbx.Identity -ShowRecoveryPassword:$true |Select-Object @{name=&#8221;Username&#8221;;expression={$mbx.name}},DeviceType,@{name=&#8221;Device&#8221;;expression={$_.DeviceUserAgent.ToString().Split(&#8220;/&#8221;)[0]}},@{name=&#8221;OSVersion&#8221;;expression={$_.DeviceUserAgent.ToString().Split(&#8220;/&#8221;)[1]}},LastSuccessSync}</p>
<p>and  </p>
<p>$Object = &#8220;&#8221; | Select-Object Username,DeviceType,Device,Version,LastSuccessSync</p>
<p>to</p>
<p>$Object = &#8220;&#8221; | Select-Object Username,DeviceType,Device,Version,LastSuccessSync,RecoveryPassword</p>
<p>let me know how that works</p>
<p>Thanks</p>
<p>Dean</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exchange 2010 ActiveSync Device Info by jim sullivan</title>
		<link>http://www.exchangebytes.com/?p=623#comment-109</link>
		<dc:creator>jim sullivan</dc:creator>
		<pubDate>Mon, 27 Feb 2012 19:03:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.exchangebytes.com/?p=623#comment-109</guid>
		<description><![CDATA[great thanks,  now how can i show a list of recovery passwords for each user.]]></description>
		<content:encoded><![CDATA[<p>great thanks,  now how can i show a list of recovery passwords for each user.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exchange 2010 ActiveSync Device Info by Exchange 2010 ActiveSync Device Info « ExchangeBytes &#171; JC&#8217;s Blog-O-Gibberish</title>
		<link>http://www.exchangebytes.com/?p=623#comment-95</link>
		<dc:creator>Exchange 2010 ActiveSync Device Info « ExchangeBytes &#171; JC&#8217;s Blog-O-Gibberish</dc:creator>
		<pubDate>Fri, 27 Jan 2012 13:44:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.exchangebytes.com/?p=623#comment-95</guid>
		<description><![CDATA[[...] Exchange 2010 ActiveSync Device Info «&#160;ExchangeBytes  Posted on January 27, 2012 by johnacook   http://www.exchangebytes.com/?p=623 [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Exchange 2010 ActiveSync Device Info «&nbsp;ExchangeBytes  Posted on January 27, 2012 by johnacook   <a href="http://www.exchangebytes.com/?p=623" rel="nofollow">http://www.exchangebytes.com/?p=623</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exchange 2003/2007/2010 ActiveSync Proxy and Redirection by Exchange 2003/2007/2010 ActiveSync Proxy and Redirection « ExchangeBytes &#171; JC&#8217;s Blog-O-Gibberish</title>
		<link>http://www.exchangebytes.com/?p=598#comment-26</link>
		<dc:creator>Exchange 2003/2007/2010 ActiveSync Proxy and Redirection « ExchangeBytes &#171; JC&#8217;s Blog-O-Gibberish</dc:creator>
		<pubDate>Fri, 30 Sep 2011 22:39:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.exchangebytes.com/?p=598#comment-26</guid>
		<description><![CDATA[[...] ActiveSync Proxy and Redirection «&#160;ExchangeBytes  Posted on September 30, 2011 by johnacook   http://www.exchangebytes.com/?p=598  Share this:StumbleUponDiggRedditLike this:LikeBe the first to like this [...]]]></description>
		<content:encoded><![CDATA[<p>[...] ActiveSync Proxy and Redirection «&nbsp;ExchangeBytes  Posted on September 30, 2011 by johnacook   <a href="http://www.exchangebytes.com/?p=598" rel="nofollow">http://www.exchangebytes.com/?p=598</a>  Share this:StumbleUponDiggRedditLike this:LikeBe the first to like this [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exchange 2003/2007/2010 ActiveSync Proxy and Redirection by Exchange 2003/2007/2010 ActiveSync Proxy and Redirection « ExchangeBytes &#171; JC&#8217;s Blog-O-Gibberish</title>
		<link>http://www.exchangebytes.com/?p=598#comment-25</link>
		<dc:creator>Exchange 2003/2007/2010 ActiveSync Proxy and Redirection « ExchangeBytes &#171; JC&#8217;s Blog-O-Gibberish</dc:creator>
		<pubDate>Fri, 30 Sep 2011 22:39:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.exchangebytes.com/?p=598#comment-25</guid>
		<description><![CDATA[[...] ActiveSync Proxy and Redirection «&#160;ExchangeBytes  Posted on September 30, 2011 by johnacook   http://www.exchangebytes.com/?p=598  Share this:StumbleUponDiggRedditLike this:LikeBe the first to like this [...]]]></description>
		<content:encoded><![CDATA[<p>[...] ActiveSync Proxy and Redirection «&nbsp;ExchangeBytes  Posted on September 30, 2011 by johnacook   <a href="http://www.exchangebytes.com/?p=598" rel="nofollow">http://www.exchangebytes.com/?p=598</a>  Share this:StumbleUponDiggRedditLike this:LikeBe the first to like this [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exchange 2003/2007/2010 ActiveSync Proxy and Redirection by Exchange 2003/2007/2010 ActiveSync Proxy and Redirection « ExchangeBytes &#171; JC&#8217;s Blog-O-Gibberish</title>
		<link>http://www.exchangebytes.com/?p=598#comment-24</link>
		<dc:creator>Exchange 2003/2007/2010 ActiveSync Proxy and Redirection « ExchangeBytes &#171; JC&#8217;s Blog-O-Gibberish</dc:creator>
		<pubDate>Fri, 30 Sep 2011 22:39:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.exchangebytes.com/?p=598#comment-24</guid>
		<description><![CDATA[[...] ActiveSync Proxy and Redirection «&#160;ExchangeBytes  Posted on September 30, 2011 by johnacook   http://www.exchangebytes.com/?p=598  Share this:StumbleUponDiggRedditLike this:LikeBe the first to like this [...]]]></description>
		<content:encoded><![CDATA[<p>[...] ActiveSync Proxy and Redirection «&nbsp;ExchangeBytes  Posted on September 30, 2011 by johnacook   <a href="http://www.exchangebytes.com/?p=598" rel="nofollow">http://www.exchangebytes.com/?p=598</a>  Share this:StumbleUponDiggRedditLike this:LikeBe the first to like this [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exchange 2003/2007/2010 ActiveSync Proxy and Redirection by Exchange 2003/2007/2010 ActiveSync Proxy and Redirection « ExchangeBytes &#171; JC&#8217;s Blog-O-Gibberish</title>
		<link>http://www.exchangebytes.com/?p=598#comment-23</link>
		<dc:creator>Exchange 2003/2007/2010 ActiveSync Proxy and Redirection « ExchangeBytes &#171; JC&#8217;s Blog-O-Gibberish</dc:creator>
		<pubDate>Fri, 30 Sep 2011 22:39:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.exchangebytes.com/?p=598#comment-23</guid>
		<description><![CDATA[[...] ActiveSync Proxy and Redirection «&#160;ExchangeBytes  Posted on September 30, 2011 by johnacook   http://www.exchangebytes.com/?p=598  Share this:StumbleUponDiggRedditLike this:LikeBe the first to like this [...]]]></description>
		<content:encoded><![CDATA[<p>[...] ActiveSync Proxy and Redirection «&nbsp;ExchangeBytes  Posted on September 30, 2011 by johnacook   <a href="http://www.exchangebytes.com/?p=598" rel="nofollow">http://www.exchangebytes.com/?p=598</a>  Share this:StumbleUponDiggRedditLike this:LikeBe the first to like this [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Microsoft Release Exchange 2010 SP1 RU 4 by Chris Einkorn</title>
		<link>http://www.exchangebytes.com/?p=480#comment-8</link>
		<dc:creator>Chris Einkorn</dc:creator>
		<pubDate>Fri, 01 Jul 2011 20:52:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.exchangebytes.com/?p=480#comment-8</guid>
		<description><![CDATA[The awesome addition to SP1 for me is that the UM role can now be virtualized.]]></description>
		<content:encoded><![CDATA[<p>The awesome addition to SP1 for me is that the UM role can now be virtualized.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
