<?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>sidefumbling &#187; Windows Mobile</title>
	<atom:link href="http://www.flobee.net/category/winmo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flobee.net</link>
	<description>The consequence of not having six hydrocoptic marzelvanes.</description>
	<lastBuildDate>Fri, 20 Jan 2012 17:04:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Use the Exchange Management Shell or LDAP to get a list of quarantined mobile devices</title>
		<link>http://www.flobee.net/get-a-list-of-quarantined-mobile-devices/</link>
		<comments>http://www.flobee.net/get-a-list-of-quarantined-mobile-devices/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 15:23:14 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Windows Mobile]]></category>
		<category><![CDATA[Windows Phone]]></category>
		<category><![CDATA[inline code]]></category>

		<guid isPermaLink="false">http://www.flobee.net/?p=558</guid>
		<description><![CDATA[You can use Exchange Control Panel to view the list of Exchange ActiveSync devices that are in a quarantined state.  I wanted to be able to get this list without using ECP, but I didn&#8217;t know where this information is stored: Exchange or AD?  Long story short, it is stored in AD.  Every Exchange ActiveSync [...]]]></description>
			<content:encoded><![CDATA[<p>You can use Exchange Control Panel to view the list of Exchange ActiveSync devices that are in a quarantined state.  I wanted to be able to get this list without using ECP, but I didn&#8217;t know where this information is stored: Exchange or AD?  Long story short, it is stored in AD.  Every Exchange ActiveSync partnership exists as an AD object (whose class is msExchActiveSyncDevice) located as a  child object of the user object whose mailbox has the partnership.  The access state of the device is stored as an integer in the msExchDeviceAccessState attribute of the object.</p>
<p>To use EMS to get the list, run this command:</p>
<pre class="brush:ps;gutter:false">Get-ActiveSyncDevice -filter {deviceaccessstate -eq 'quarantined'}</pre>
<p>If you want to use LDAP to get the list, this is the corresponding search filter:</p>
<p>(&amp;(objectclass=msexchactivesyncdevice)(msexchdeviceaccessstate=3))</p>
<p>The device access state values are 1 for allowed, 2 for blocked, 3 for quarantined.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flobee.net/get-a-list-of-quarantined-mobile-devices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The correct way to restrict users to specific devices with Exchange ActiveSync</title>
		<link>http://www.flobee.net/the-correct-way-to-restrict-users-to-specific-devices-with-exchange-activesync/</link>
		<comments>http://www.flobee.net/the-correct-way-to-restrict-users-to-specific-devices-with-exchange-activesync/#comments</comments>
		<pubDate>Tue, 01 Mar 2011 17:58:49 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://www.flobee.net/?p=541</guid>
		<description><![CDATA[One way to control access to a mailbox with Exchange ActiveSync is to restrict a user to a specific device ID (or more than one), as described in this TechNet help page. The prerequisite listed on the page is only that the user be enabled for EAS. You will find, however, that if you list [...]]]></description>
			<content:encoded><![CDATA[<p>One way to control access to a mailbox with Exchange ActiveSync is to restrict a user to a specific device ID (or more than one), as described in <a href="http://technet.microsoft.com/en-us/library/bb232080.aspx">this </a>TechNet help page.  The prerequisite listed on the page is only that the user be enabled for EAS.  You will find, however, that if you list one or more device IDs in the ActiveSyncAllowedDevicesIDs property and attempt to sync with a device that is not in the list, it will still be able to.</p>
<p style="text-align: left;">The reason for this is not explained clearly in Microsoft documentation, but can be inferred by <a href="http://msexchangeteam.com/archive/2010/11/15/456931.aspx">this</a> good post on the Exchange blog.  It details the flow logic when a device is accessing a mailbox and the order in which permissive and preventative access is handled.  This image from the post sums up the flow:</p>
<p style="text-align: left;"><a title="Device access flow" href="http://www.flobee.net/images/ABQ-PermissiveOrg.png"><img class="aligncenter" title="Device access flow" src="http://www.flobee.net/images/ABQ-PermissiveOrg.png" alt="" width="299" height="163" /></a></p>
<p style="text-align: left;">When a device attempts to sync with a mailbox, the Allow/Block list on the user object is checked first, followed by any device access rules defined at the org level, and then the global access rule (the decision point labeled as Anything Unknown).  The default configuration at the org level is a permissive organization, where any device not explicitly blocked at the user level or does not match any device access rule is allowed.</p>
<p style="text-align: left;">The important distinction, however, is that specifying an allowed device ID at the user level is not exclusive, while specifying a blocked device ID is [effectively] exclusive.  This means that the access logic doesn&#8217;t stop at the user level when an allowed device ID is specified, though it does when a blocked device ID is specified.  Therefore, in a default permissive organization, specifying an allowed device ID for a user does not restrict the user to only that device.  In order to restrict a user to the device ID(s) specified on the user object, it is also necessary to define a device access rule and/or change the global access policy so that a device will otherwise be blocked (or quarantined).</p>
<p style="text-align: left;">To understand the action taken by Exchange when a device attempts to synchronize, I have made my own flowchart (click to zoom):</p>
<p style="text-align: left;"><a title="EAS Device Access Flow" href="http://www.flobee.net/images/EASDeviceAccessFlowchart.png"><img class="aligncenter" title="EAS Device Access Flow" src="http://www.flobee.net/images/EASDeviceAccessFlowchart.png" alt="" width="319" height="296" /></a></p>
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://www.flobee.net/the-correct-way-to-restrict-users-to-specific-devices-with-exchange-activesync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix your presumably bricked Wizard</title>
		<link>http://www.flobee.net/how-to-fix-your-presumably-bricked-wizard/</link>
		<comments>http://www.flobee.net/how-to-fix-your-presumably-bricked-wizard/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 22:15:05 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://www.flobee.net/?p=158</guid>
		<description><![CDATA[Recently I have been using various betas of CRACING&#8217;s CR96 Touch HD builds of Windows Mobile 6.5. When I tried to install 6.5.0.2.9, RUU kept crashing on my Windows 7 x64 workstation. I am pretty sure I installed previous CR96 Touch HD betas aftering installing Windows 7. I tried application compatibility when running RUU (XP [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I have been using various betas of CRACING&#8217;s <a href="http://forum.xda-developers.com/showthread.php?t=494802" target="_blank">CR96 Touch HD</a> builds of Windows Mobile 6.5.  When I tried to install 6.5.0.2.9, RUU kept crashing on my Windows 7 x64 workstation.  I am pretty sure I installed previous CR96 Touch HD betas aftering installing Windows 7.  I tried application compatibility when running RUU (XP SP2), running as administrator, different RUUs, all with the same MFC application error.</p>
<p>I sent time trying to get an RUU to run successfully, but then went on <a href="http://forum.xda-developers.com/showthread.php?t=293480" target="_blank">ShellTool</a>.  I started flashing the new ROM with it, but after an hour it was still sitting there.  I disconnected the Wizard and either soft- or hard-reset the phone.  Now it got ugly.  The boot screen would come up, displaying the IPL,SPL,Radio, and OS (the latter being 6.5.0.0), but it would never go past it.</p>
<p>I was able to boot the Wizard into the bootloader, so I tried <a href="http://forum.xda-developers.com/download.php?id=9864" target="_blank">MTTY</a>.  I couldn&#8217;t get the USB port to be listed in the drop-down, thinking it was something with Windows 7 or x64.  I then went on to <a href="http://www.nuerom.com/BlogEngine/page/nueTTY-Console.aspx" target="_blank">nueTTY</a>.  I was able to connect with it, so I ran d2s, which backs up the on-chip ROM to SD.  This was successful in that I was now able to put a ROM on the SD card and boot into the bootloader, which prompted me to flash the ROM (I could not get it do this prior to running d2s.  Unfortunately, now booting showed only an IPL, SPL, and Radio version&#8230;.no ROM version installed.</p>
<p>Telling it to flash the ROM resulted in the BINFS being written successfully and then immediately failing with a checksum error.  Now I was really stuck.  I couldn&#8217;t get RUU to run, couldn&#8217;t flash from SD card, there is no OS on the device anymore, and I couldn&#8217;t find anything helpful while using TTY.  So I finally decided to try <a href="http://www.microsoft.com/windows/virtual-pc/default.aspx" target="_blank">Windows XP Mode</a> in Windows 7.  After getting that installed and running, I installed ActiveSync 4.5.  Running the RUU that came with 6.5.0.2.9 only resulted in errors about needing a newer RUU.  I figure this had something to do with the fact that I no longer had any OS on the Wizard.  But RUU didn&#8217;t crash, which was a good sign.  I tried nueTTY again (which needs .NET FW 2.0 and VSTO 2008 runtime).  It could see the Wizard connected, but then dropped right back to a command prompt.  I tried MTTY again, learning that USB will only show up as a valid port if the ActiveSync processes are killed.  MTTY connected, but I couldn&#8217;t find any commands that would help me.</p>
<p>Still with me?  Well, we&#8217;re on the final leg now.  While still using Windows XP Mode, I ran the <a href="http://www.flobee.net/download/CUSTOM__RUU_Wizard.zip">RUU</a> that is for the Wizard and doesn&#8217;t do any CID checks.  This time it detected the Wizard and flashed 6.5.0.2.9 succesfully!  Finally!  That was a harrowing couple of days.</p>
<p>So, what are the key takeaways from this? No, it isn&#8217;t &#8220;Don&#8217;t flash with cooked ROMs that are only in beta.&#8221;
<ul>
<li>Be sure to kill the ActiveSync/WMDC processes to get MTTY to see the USB port.</li>
<li>Connecting to a Windows Mobile device works just fine in Windows XP Mode; the Pocket PC USB Sync driver will be installed automatically once you attach the port in the USB menu of Windows XP Mode.</li>
<li>Running a terminal program, such as MTTY or nueTTY, really can brick your phone if you don&#8217;t know what you&#8217;re doing.</li>
<li>The No ID version of RUU for the Wizard is always good to have on hand.</li>
</ul>
<p>My aging Wizard is now running IPL and SPL 3.08, radio 2.19.11, and CR96 Touch HD ROM 6.5.0.2.9 beta.  My Tilt is running HardSPL 3.29, radio 1.70.19.09, and shifu&#8217;s 3.2 ROM (6.5).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flobee.net/how-to-fix-your-presumably-bricked-wizard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop ActiveSync from opening an Explorer window when a device is connected</title>
		<link>http://www.flobee.net/stop-activesync-from-opening-an-explorer-window-when-a-device-is-connected/</link>
		<comments>http://www.flobee.net/stop-activesync-from-opening-an-explorer-window-when-a-device-is-connected/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 15:45:17 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://www.flobee.net/?p=71</guid>
		<description><![CDATA[Does connecting and/or disconnecting a Windows Mobile handheld to your desktop result in an Explorer window opening? It has been happening to me for so long, and it is really annoying. Long story short, this is caused by a registry entry. Navigate to HKLM\Software\Microsoft\Windows CE Services\AutoStartOnConnect. You will see a value for (Default) with the [...]]]></description>
			<content:encoded><![CDATA[<p>Does connecting and/or disconnecting a Windows Mobile handheld to your desktop result in an Explorer window opening?  It has been happening to me for so long, and it is really annoying.  Long story short, this is caused by a registry entry.</p>
<p>Navigate to <strong>HKLM\Software\Microsoft\Windows CE Services\AutoStartOnConnect</strong>.  You will see a value for <strong>(Default)</strong> with the data set to what appears to be null (nothing visible in the data field).  Click on the <strong>(Default)</strong> name and then press the delete key.  This will change the data to be <strong>(value not set)</strong>.  If the same thing happens when you disconnect your handheld, do the same thing in the <strong>\AutoStartOnDisconnect</strong> key.  The change takes effect immediately.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flobee.net/stop-activesync-from-opening-an-explorer-window-when-a-device-is-connected/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pocket Controller skin for AT&amp;T tilt</title>
		<link>http://www.flobee.net/pocket-controller-skin-for-att-tilt/</link>
		<comments>http://www.flobee.net/pocket-controller-skin-for-att-tilt/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 17:16:23 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://www.flobee.net/?p=294</guid>
		<description><![CDATA[If you use SOTI&#8216;s Pocket Controller Professional to control your Windows Mobile device from your desktop, you know that you can display the screen in a skin and control the virtual hardware buttons&#160;in PCP.&#160; You can download skins from within PCP, but only during the first year of purchase.&#160; They consider the skin catalog a [...]]]></description>
			<content:encoded><![CDATA[<p>If you use <a target="_blank" href="http://www.soti.net">SOTI</a>&#8216;s Pocket Controller Professional to control your Windows Mobile device from your desktop, you know that you can display the screen in a skin and control the virtual hardware buttons&nbsp;in PCP.&nbsp; You can download skins from within PCP, but only during the first year of purchase.&nbsp; They consider the skin catalog a &quot;service.&quot;&nbsp; After the year is up, you have to purchase the application again (at an upgrade price), which includes product upgrades for the year, too.&nbsp; However, PCP hasn&#8217;t even been updated in a year, so it seems a pretty cheap way to earn revenue, considering SOTI even solicits images from customers to add to the skin catalog.&nbsp; (They used to provide the entire skin catalog free of charge.)</p>
<p>My work installation is beyond the one year of service, so I couldn&#8217;t download a skin for my AT&amp;T Tilt.&nbsp; My home installation (separate license), however, was within the service year, so I downloaded the skin and copied it to my work installation.&nbsp; I could not find anything in the program or on SOTI&#8217;s site regarding copyright of the skin images, so I am posting the Tilt images (displayed half-size) for anyone who needs it.</p>
<p><a target="_blank" href="http://www.flobee.net/images/ATT-TILT_Vertical.png"><img class="" height="323" alt="Tilt vertical image" width="172" src="http://www.flobee.net/images/ATT-TILT_Vertical.png" /></a></p>
<p><a target="_blank" href="http://www.flobee.net/images/ATT-TILT_Horizontal.png"><img class="" height="275" alt="Tilt horizontal image" width="321" src="http://www.flobee.net/images/ATT-TILT_Horizontal.png" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flobee.net/pocket-controller-skin-for-att-tilt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Upgraded Wizard to 6.1</title>
		<link>http://www.flobee.net/upgraded-wizard-to-6-1/</link>
		<comments>http://www.flobee.net/upgraded-wizard-to-6-1/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 18:52:14 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://www.flobee.net/?p=281</guid>
		<description><![CDATA[The Faria ROM I have been using for awhile started having issues recently.&#160; I was having to soft reset more often (sometimes a couple of times per day), and I couldn&#8217;t turn on WiFi anymore.&#160; Memory would start at about 21MB and slowly work its way down, though a lot of that is probably due [...]]]></description>
			<content:encoded><![CDATA[<p>The Faria ROM I have been using for awhile started having issues recently.&nbsp; I was having to soft reset more often (sometimes a couple of times per day), and I couldn&#8217;t turn on WiFi anymore.&nbsp; Memory would start at about 21MB and slowly work its way down, though a lot of that is probably due to the applications installed.</p>
<p>So I figured it was time to either reflash with the Faria ROM or use another.&nbsp; I settled on another, discussed <a target="_blank" href="http://forum.xda-developers.com/showthread.php?t=367019">here</a> at XDA Developers.&nbsp; This is a 6.1 ROM, which is nice because of some of the improvements, such as native threaded SMS.&nbsp; I also have more memory after a reset: about 24MB versus 21MB with Faria.&nbsp; Usage feels much snappier, too.&nbsp; I thought that it might simply be because OMAPClock is included, but when I checked it I was still running at 180MHz.&nbsp; So if it feels snappy now, I can&#8217;t wait to try it at 252MHz, which is what I normally run at.</p>
<p align="center"><img class="" height="575" alt="HTC Wizard with WinMo 6.1" width="310" src="http://www.flobee.net/images/htcwizard61.png" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flobee.net/upgraded-wizard-to-6-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to CID Unlock an AKU2 Cingular 8125 (HTC Wizard)</title>
		<link>http://www.flobee.net/how-to-cid-unlock-an-aku2-cingular-8125-htc-wizard/</link>
		<comments>http://www.flobee.net/how-to-cid-unlock-an-aku2-cingular-8125-htc-wizard/#comments</comments>
		<pubDate>Wed, 29 Aug 2007 18:23:51 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://www.flobee.net/?p=245</guid>
		<description><![CDATA[Getting WM6 on my Cingular 8125 proved to be a much more vexing challenge than I anticipated, especially considering the development for it over at xda-developers.com.&#160; The main issue was getting the 8125 CID Unlocked, which allows non-home carrier ROMs to be installed.&#160; Running a multitude of tools to unlock the device resulted in failure [...]]]></description>
			<content:encoded><![CDATA[<p>Getting WM6 on my Cingular 8125 proved to be a much more vexing challenge than I anticipated, especially considering the development for it over at xda-developers.com.&nbsp; The main issue was getting the 8125 CID Unlocked, which allows non-home carrier ROMs to be installed.&nbsp; Running a multitude of tools to unlock the device resulted in failure but I couldn&#8217;t figure out why because it was supposed to work, especially on the Wizard.</p>
<p>Then I found <a target="_blank" href="http://forum.xda-developers.com/showthread.php?t=263116">this</a> post on xda-developers.com which indicates that Wizards that have been upgraded to Windows Mobile 5 with AKU2 (notable for the DirectPush functionality) have the portion of the DOC (Disk on Chip) that stores the carrier ID set to read-only.&nbsp; Faria&#8217;s instructions show how to successfully CID Unlock the device by first downgrading the ROM to a non-AKU2 version.&nbsp; Of course, it can&#8217;t be any ROM since the CID is still locked, so it has to be one from Cingular or something cooked.</p>
<p>I could not find anywhere the Cingular 1.8 ROM that is recommend to use.&nbsp; I trolled Google, AT&amp;T forums, xda-developers, Google Groups, but the binaries had been pulled awhile ago.&nbsp; The other option was a cooked ROM that doesn&#8217;t check for a carrier ID.&nbsp; Again, I could not find the one mentioned, until I found a forum post that linked to another <a target="_blank" href="http://www.mobismart.net/forums/viewtopic.php?p=4916">post</a> on a French forum where the ROM is available.&nbsp; That took awhile to download.</p>
<p>After finally having all the pieces necessary, I was able to downgrade this morning, CID Unlock the device, upgrade the IPL/SPL, radio, and finally Faria&#8217;s WM6 ROM:</p>
<p align="center"><img width="310" height="575" alt="" src="http://www.flobee.net/images/fariawm6.png" /></p>
<p align="left">Combining information and steps from a several different topics at xda-developers and elsewhere, this is what I did:</p>
<ol>
<li><a target="_blank" href="http://www.mobismart.net/forums/viewtopic.php?p=4916">Downloaded</a> and installed the custom 1.05 ROM, called CUSTOM__RUU_Wizard_1050412_WWE_101_11210_WWE.exe.</li>
<li><a target="_blank" href="http://forum.xda-developers.com/attachment.php?attachmentid=25702&amp;d=1135865869">Downloaded</a> and ran lokiwiz&#8217;s CID Unlocker .2b.</li>
<li><a target="_blank" href="http://rapidshare.com/files/38880130/ruu_prodigy_226102_22610105_022511_tmous_wwe_ship.exe.html">Downloaded</a> and installed the T-Mobile 2.26 ROM.</li>
<li><a target="_blank" href="http://rapidshare.com/files/23952493/IPL_SPL_3.08.rar.html">Downloaded</a> and installed IPL/SPL 3.08.</li>
<li><a target="_blank" href="http://www.rapidshare.com/files/17020712/Radio_ROM_2.19.11.rar">Downloaded</a> and installed radio 2.19.</li>
<li><a target="_blank" href="http://forum.xda-developers.com/showthread.php?t=297762">Downloaded</a> and installed Faria&#8217;s WM6 ROM.</li>
</ol>
<p>Woohoo!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flobee.net/how-to-cid-unlock-an-aku2-cingular-8125-htc-wizard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

