<?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>Andy's Techie Blog &#187; Windows 7</title>
	<atom:link href="http://andyparkes.co.uk/blog/index.php/category/windows/windows-7/feed/" rel="self" type="application/rss+xml" />
	<link>http://andyparkes.co.uk/blog</link>
	<description>Professional Geek</description>
	<lastBuildDate>Tue, 07 Feb 2012 21:40:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Disappearing Desktop Shortcuts on Windows 7</title>
		<link>http://andyparkes.co.uk/blog/index.php/2011/05/23/disappearing-desktop-shortcuts-on-windows-7/</link>
		<comments>http://andyparkes.co.uk/blog/index.php/2011/05/23/disappearing-desktop-shortcuts-on-windows-7/#comments</comments>
		<pubDate>Mon, 23 May 2011 07:45:53 +0000</pubDate>
		<dc:creator>AndyParkes</dc:creator>
				<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://andyparkes.co.uk/blog/index.php/2011/05/23/disappearing-desktop-shortcuts-on-windows-7/</guid>
		<description><![CDATA[Had a bit of weird support query I wanted to blog about in case I need it again, it helps anyway else or for further comment! Client called as she’d setup some shortcuts on her desktop to some files she uses on a regular basis and they had disappeared. I wasn’t sure where they’d gone, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fandyparkes.co.uk%2Fblog%2Findex.php%2F2011%2F05%2F23%2Fdisappearing-desktop-shortcuts-on-windows-7%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fandyparkes.co.uk%2Fblog%2Findex.php%2F2011%2F05%2F23%2Fdisappearing-desktop-shortcuts-on-windows-7%2F&amp;source=AndyParkes&amp;style=normal&amp;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p>Had a bit of weird support query I wanted to blog about in case I need it again, it helps anyway else or for further comment!</p>
<p>Client called as she’d setup some shortcuts on her desktop to some files she uses on a regular basis and they had disappeared. </p>
<p>I wasn’t sure where they’d gone, maybe she’d deleted them by mistake, so put it down to one of those things and we re-created them and left it at that.</p>
<p>She called me about a week later with the same problem. We re-created the shortcuts again and I setup auditing on the PC to track file deletes from the desktop.</p>
<p>She called back about a week later with the same thing.</p>
<p>After I’d setup auditing I went away and did some more research and found this Microsoft support article,</p>
<h3><a href="http://support.microsoft.com/kb/978980">Desktop shortcuts disappear in Windows 7</a> (KB 978980)</h3>
<p>Basically there is a “System Maintenance Troubleshooter” task that runs periodically and one of the areas of maintenance is to tidy up broken desktop shortcuts (a shortcut whose target doesn’t exist). If it finds more than four broken shortcuts on the desktop it deletes them <strong>all.</strong></p>
<p>The thing is as far as I could tell they weren’t broken shortcuts – the missing shortcuts all pointed to files on the network but they were all accessible, she uses them on a daily basis!</p>
<p>The annoying thing about this is the “workaround” provided by the support article.</p>
<p><strong>Method 1</strong> – Keep the number of broken shortcuts to four or less</p>
<p><strong>Method 2</strong> – Disable the System maintenance troubleshooter</p>
<blockquote><p><font style="background-color: #ffffff">Click Start and then click Control Panel</font></p>
<p><font style="background-color: #ffffff">Under System and Security click Find and Fix Problems</font></p>
<p><font style="background-color: #ffffff">On the left navigation pane click Change Settings</font></p>
<p><font style="background-color: #ffffff">Set Computer Maintenance to Off</font></p>
</blockquote>
<p>As far as I can tell the shortcuts aren’t broken so how can I keep them to less then four!</p>
<p>Disabling system maintenance is something I’m not inclined to do either. </p>
<p>So what to do instead?</p>
<p>One option is to follow the <a href="http://www.ghacks.net/2010/03/30/fix-windows-7-desktop-shortcuts-disappearing/">details in this post.</a></p>
<p>The system maintenance tasks are basically powershell scripts stored in <em><strong>c:\windows\Diagnostics\Scheduled\Maintenance</strong></em></p>
<p>The scripts are viewable and after tweaking the permissions to allow you to edit them you can make any changes you like.</p>
<p>The article suggests deleting a section of the code so that it will always return an empty list of broken shortcuts hence there will be nothing to delete.</p>
<p>My preference is to change the parameter on the threshold for broken shortcuts as it’s a little less drastic than chopping code out. </p>
<blockquote><p>if(-not([String]::IsNullOrEmpty($brokenDesktopShortcuts) -and [String]::IsNullOrEmpty($brokenStartupShortcuts)) -and (((Get-ListLength $brokenDesktopShortcuts) + (Get-ListLength $brokenStartupShortcuts)) -gt <strong>100</strong>))      <br />{      </p>
</blockquote>
<p>The bit in bold was 4 originally.</p>
<p>The comments in the article have similar suggestions including a batch file you can use to do the whole thing for you. </p>
<p>My only concern about this is that the scripts could be changed in a future service pack or software update and you’d end up with the same problem.</p>
<p>I also don’t understand why the System Maintenance Troubleshooter has no configurable options other than “On/Off”.</p>
<p>I haven’t actually implemented this for the customer as I provided my own couple of workarounds to try.</p>
<p>The first is that if you create a folder on the desktop and put the shortcuts in there the problem goes away entirely – it’s an extra click so again this isn’t always desirable.</p>
<p>The second is that since this Windows 7 why not make use of the <a href="http://ibitsolutions.co.uk/blog/43-tips-and-tricks/133-outlook-2010-and-windows-7">“Jump Lists” feature</a> – it’s designed exactly with this scenario in mind! </p>
<p>I ran through jump lists and she was very pleased with that as it was easier than having to navigate to the desktop to find the shortcuts. </p>
<p>Anyone else come across this? Any other suggestions for something I’m missing.</p>
<div><!-- Wordbooker created FB tags --> <fb:like layout="button_count" show_faces="false" send="false" action="like" font="arial" colorscheme="dark"  href="http://andyparkes.co.uk/blog/index.php/2011/05/23/disappearing-desktop-shortcuts-on-windows-7/" width="250"></fb:like> <div style="float:right;"><!-- Wordbooker created FB tags --> <fb:share-button class="meta" type="button" href="http://andyparkes.co.uk/blog/index.php/2011/05/23/disappearing-desktop-shortcuts-on-windows-7/" > </fb:share-button></div></div>]]></content:encoded>
			<wfw:commentRss>http://andyparkes.co.uk/blog/index.php/2011/05/23/disappearing-desktop-shortcuts-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ZTE MF627 and Window7</title>
		<link>http://andyparkes.co.uk/blog/index.php/2009/10/24/zte-mf627-and-window7/</link>
		<comments>http://andyparkes.co.uk/blog/index.php/2009/10/24/zte-mf627-and-window7/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 17:02:09 +0000</pubDate>
		<dc:creator>AndyParkes</dc:creator>
				<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://andyparkes.co.uk/blog/index.php/2009/10/24/zte-mf627-and-window7/</guid>
		<description><![CDATA[Further to my last post on this I&#8217;ve had still had mixed results getting my Three modem to connect to my Windows 7 systems. Now that Windows 7 is on general release I had a quick look on the Three support website and find a support article specific to my problem A quick firmware upgrade [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fandyparkes.co.uk%2Fblog%2Findex.php%2F2009%2F10%2F24%2Fzte-mf627-and-window7%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fandyparkes.co.uk%2Fblog%2Findex.php%2F2009%2F10%2F24%2Fzte-mf627-and-window7%2F&amp;source=AndyParkes&amp;style=normal&amp;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p>Further to my <a href="http://andyparkes.co.uk/blog/index.php/2009/09/30/zte-mf627-and-windows-7/">last post on this</a> I&#8217;ve had still had mixed results getting my Three modem to connect to my Windows 7 systems. </p>
<p>Now that Windows 7 is on general release I had a quick look on the Three support website and find a support article specific to my problem</p>
<p>A quick firmware upgrade is all that is needed</p>
<p>From <a title="http://www.three.co.uk/Help_Support/Mobile_Broadband_Help" href="http://www.three.co.uk/Help_Support/Mobile_Broadband_Help">http://www.three.co.uk/Help_Support/Mobile_Broadband_Help</a></p>
<blockquote><p>If you have a <strong>ZTE MF627</strong> and have already upgraded to <strong>Windows 7</strong> or <strong>Snow Leopard</strong>, your modem will not work until you download the firmware updates. You will be able to install the dashboard software (and you should do this!) but you will not be able to connect. Once you have installed the dashboard, using an alternative connection, or on another computer, go to <strong><a href="http://www.three.co.uk/Help_Support/About_my_mobile/Downloads">www.three.co.uk/Help_Support/About_my_mobile/Downloads</a></strong> and select <strong>ZTE</strong> and then <strong>MF627</strong>. You will then have the option to download the correct firmware for your modem &#8211; either <strong>Driver Setup &#8211; For Windows 7 Only</strong> or <strong>Driver Setup &#8211; For Mac 10.6 Only</strong>. Click the correct link to download the .exe/.zip file, and if you are using an alternative computer, transfer the .exe/.zip file to the computer that has <strong>Windows 7</strong> or <strong>Snow Leopard </strong>already installed.</p>
<p>Plug in your modem, double click on the .exe/.zip file and follow the on screen instructions to install the firmware. It is very important that you do not remove the modem during this process, and that you do not switch your computer off before it is finished. If you have a laptop, make sure it is plugged into the wall, or you have at least an hour of battery charge left.</p>
<p>Once installed, remove your modem and restart your computer. Your modem will now work.</p>
</blockquote>
<p>The firmware update is was straight forward to install and only takes a few minutes. It does mean you lose the whole “plug and play” aspect of Three’s mobile broadband offering but I imagine new subscribers will get devices with the latest firmware</p>
<div><!-- Wordbooker created FB tags --> <fb:like layout="button_count" show_faces="false" send="false" action="like" font="arial" colorscheme="dark"  href="http://andyparkes.co.uk/blog/index.php/2009/10/24/zte-mf627-and-window7/" width="250"></fb:like> <div style="float:right;"><!-- Wordbooker created FB tags --> <fb:share-button class="meta" type="button" href="http://andyparkes.co.uk/blog/index.php/2009/10/24/zte-mf627-and-window7/" > </fb:share-button></div></div>]]></content:encoded>
			<wfw:commentRss>http://andyparkes.co.uk/blog/index.php/2009/10/24/zte-mf627-and-window7/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>ZTE MF627 and Windows 7</title>
		<link>http://andyparkes.co.uk/blog/index.php/2009/09/30/zte-mf627-and-windows-7/</link>
		<comments>http://andyparkes.co.uk/blog/index.php/2009/09/30/zte-mf627-and-windows-7/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 07:06:03 +0000</pubDate>
		<dc:creator>AndyParkes</dc:creator>
				<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://andyparkes.co.uk/blog/index.php/2009/09/30/zte-mf627-and-windows-7/</guid>
		<description><![CDATA[Just a quick one! I recently acquired a 3 Mobile broadband dongle The specific model of the dongle is ZTE MF627 When i ran the installer program on my laptop (which is running Windows 7 Professional) everything seemed to install ok but it refused to pick up the modem I tried it on my netbook [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fandyparkes.co.uk%2Fblog%2Findex.php%2F2009%2F09%2F30%2Fzte-mf627-and-windows-7%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fandyparkes.co.uk%2Fblog%2Findex.php%2F2009%2F09%2F30%2Fzte-mf627-and-windows-7%2F&amp;source=AndyParkes&amp;style=normal&amp;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p>Just a quick one!</p>
<p>I recently acquired a 3 Mobile broadband dongle</p>
<p>The specific model of the dongle is ZTE MF627</p>
<p>When i ran the installer program on my laptop (which is running Windows 7 Professional) everything seemed to install ok but it refused to pick up the modem</p>
<p>I tried it on my netbook which is also running Windows 7 and had exactly the same problem</p>
<p>I then tested it on XP SP3 and Vista SP2 systems and they worked fine</p>
<p>Having decided it must be something to do with Windows 7 I tried running the connection program as administrator (as helpfully suggested by <a href="http://www.sikhgeek.com">Vijay</a> via <a href="http://twitter.com/AndyParkes/status/4351209978">Twitter</a>) but this didn’t seem to make any difference for me either</p>
<p>So I went back to the beginning, removed the software and when i re-installed and I changed the compatibility settings to run as XP SP3 and to run as administrator (which it would have done anyway, since it was installing a program)</p>
<p>I did try Vista SP2 initially but this didn’t want to run at all</p>
<p>On my device the installer program is called “VersionControl.exe”</p>
<p>It then re-installed and it worked! </p>
<p>Now that it is installed the connection program doesn’t appear to need any compatibility settings and I’m able to connect ok</p>
<p>I had about three hours sleep last night though so your milage may vary <img src='http://andyparkes.co.uk/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><strong>Minor Update:</strong><br />
When you connect to the Internet the software will automatically update.<br />
Since the software is an auto-updater there is no way to force compatibility settings. I did an update and promptly couldn&#8217;t connect again</p>
<p>Uninstalled and followed my original method and i reconnected ok</p>
<div><!-- Wordbooker created FB tags --> <fb:like layout="button_count" show_faces="false" send="false" action="like" font="arial" colorscheme="dark"  href="http://andyparkes.co.uk/blog/index.php/2009/09/30/zte-mf627-and-windows-7/" width="250"></fb:like> <div style="float:right;"><!-- Wordbooker created FB tags --> <fb:share-button class="meta" type="button" href="http://andyparkes.co.uk/blog/index.php/2009/09/30/zte-mf627-and-windows-7/" > </fb:share-button></div></div>]]></content:encoded>
			<wfw:commentRss>http://andyparkes.co.uk/blog/index.php/2009/09/30/zte-mf627-and-windows-7/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows 7 Upgrade Advisor</title>
		<link>http://andyparkes.co.uk/blog/index.php/2009/08/07/windows-7-upgrade-advistor/</link>
		<comments>http://andyparkes.co.uk/blog/index.php/2009/08/07/windows-7-upgrade-advistor/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 11:57:08 +0000</pubDate>
		<dc:creator>AndyParkes</dc:creator>
				<category><![CDATA[Netbooks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://andyparkes.co.uk/blog/index.php/2009/08/07/windows-7-update-advistor/</guid>
		<description><![CDATA[In case you have been living under a rock Windows 7 RTM was made available to Technet and MSDN subscribers yesterday I grabbed my ISO’s this morning and was thinking about how best to approach the upgrade on my netbook. I then remembered that when Vista was first released there was a tool for letting [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fandyparkes.co.uk%2Fblog%2Findex.php%2F2009%2F08%2F07%2Fwindows-7-upgrade-advistor%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fandyparkes.co.uk%2Fblog%2Findex.php%2F2009%2F08%2F07%2Fwindows-7-upgrade-advistor%2F&amp;source=AndyParkes&amp;style=normal&amp;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p>In case you have been living under a rock Windows 7 RTM was made available to Technet and MSDN subscribers yesterday</p>
<p>I grabbed my ISO’s this morning and was thinking about how best to approach the upgrade on <a href="http://andyparkes.co.uk/blog/index.php/2009/07/15/my-new-toy-samsung-nc110/">my netbook</a>.</p>
<p>I then remembered that when Vista was first released there was a tool for letting you know if your system would be up to the task and thankfully there is also a Windows 7 version.</p>
<p><a title="http://www.microsoft.com/windows/windows-7/get/upgrade-advisor.aspx" href="http://www.microsoft.com/windows/windows-7/get/upgrade-advisor.aspx">Windows 7 Upgrade Advisor (Beta)</a></p>
<p>Here a grab of the final report,</p>
<p><a href="http://andyparkes.co.uk/blog/wp-content/uploads/2009/08/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://andyparkes.co.uk/blog/wp-content/uploads/2009/08/image_thumb.png" width="607" height="318" /></a> </p>
<p>No major problems. </p>
<p>It’s suggesting I do a backup as I’ll need to do “custom install” (i.e a clean install). Since the netbook is running XP this is to be expected. </p>
<p>It also says that ActiveSync isn’t compatible with Windows 7. This isn’t a surprise either as it was replaced with Windows Mobile Device Manager in Vista.</p>
<p>At the top of the report it says that the system meets all four of the system requirements. Drilling into it you see this,</p>
<p><a href="http://andyparkes.co.uk/blog/wp-content/uploads/2009/08/image1.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://andyparkes.co.uk/blog/wp-content/uploads/2009/08/image_thumb1.png" width="607" height="195" /></a> </p>
<p>&#160;</p>
<p>I haven’t installed any extra RAM in the netbook yet, so was pleased it didn’t kick up too much of fuss about that. I was also glad to see that it’s Aero capable!</p>
<p>Guess what I’ll be doing this weekend? <img src='http://andyparkes.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<div><!-- Wordbooker created FB tags --> <fb:like layout="button_count" show_faces="false" send="false" action="like" font="arial" colorscheme="dark"  href="http://andyparkes.co.uk/blog/index.php/2009/08/07/windows-7-upgrade-advistor/" width="250"></fb:like> <div style="float:right;"><!-- Wordbooker created FB tags --> <fb:share-button class="meta" type="button" href="http://andyparkes.co.uk/blog/index.php/2009/08/07/windows-7-upgrade-advistor/" > </fb:share-button></div></div>]]></content:encoded>
			<wfw:commentRss>http://andyparkes.co.uk/blog/index.php/2009/08/07/windows-7-upgrade-advistor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

