Resolution: Error Syncing Windows Phone to Zune

So after several hours of trying to sync my Windows Phone to Zune, I have a couple of things for you to try. These have helped me and I hope they will help you.

Fix the Drivers

This will work well if Windows is not detecting the phone. The Microsoft Fix It can be found here: http://support.microsoft.com/mats/Windows_phone_7_and_Zune_diagnostic/

Forget the Phone

Well this is not me being sarcastic! In your Zune Settings > Phone > Sync Options > Forget this Phone. Once you do that unplug your phone and plug it back in. This seems to work exceptionally well.

Reinstall Zune

If you made it past that point, chances are something might be messed up in your Zune software. It could be that the information for the phone is corrupted within the Zune software, if this is the case try this Fix It: http://support.microsoft.com/kb/929358

Temporarily Turn Off Zune Launcher

This trick worked for me very well, I think what can happen is that the zunelauncher.exe doesn’t release the phone’s resources, thereby blocking Zune from syncing with your phone. Here is what to do:

  1. Disconnect your phone.
  2. Open Task Manager (Ctrl-Alt-Del and select Task Manager).
  3. In the processes tab, select zunelauncher.exe and click on End Task.
  4. Open Zune.
  5. Connect your phone.

If this solution works with you open msconfig and disable zunelauncher. This will prevent it from starting on startup of your computer. Please note: doing this will prevent Zune from launching when your phone is connected to your computer.

Reset to Factory

Use this as a last resort backup photos and other material you wish to keep to your Sky Drive, because you will lose all your data and applications. If you bought any apps, you are allowed to download them 5 times before you have to pay for them again, so only install them again if you have resolved all your issues. I don’t want to hear that you had to pay for your applications again.  Do this sparingly!

On your phone go to Settings > About > reset your phone.

Update 9/2/2012

I found one other issue that could cause syncing issues. If your computer has bad RAM or your motherboard doesn’t play nice with the RAM in your computer, you might have intermittent problems syncing. Recently upgraded my computer to 8GB and that caused Zune to have issues. Other symptoms included general slowness with the computer I was using.

Thanks for reading, let me know if this worked for you or if you found another solution.

Advertisement

HP Restore C++ Runtime Error Accessing FBW Files

HP System Restore

This is really bad, I am trying to be a nice guy and restore some files from backups for a friend of the family. The program provided by HP, developed by SoftThinks, gets a runtime error the first run through and then will not run again. Two things I noticed: log files for C:\System Recovery Files prevent the restore utility from working a second time and second, everyone is having issues with this! The forums are littered with everyone complaining about this.

To HP: What good is having backup software without the ability to restore data from it???

How to Restore Files From Backup

There is a utility which SoftThinks refers to on their website and instructions for use but don’t a link to download it! Genious! Here is the link to their documentation: http://www.softthinks.com/FAQs/For_HP.aspx

After much digging I found the utility found below.

Emergency Utility

I have to give credit to the following blogger who helped me tremendously, I was just lucky enough to find his post! I am merely spreading the word on this issue.

http://technopaideia.blogspot.com/2010/09/learning-more-than-i-ever-wanted-to.html

SQL Server – Restore Master Database

I have been working toward a SQL Server certification (70-432). This has resulted in me getting quite a good knowledge of how things work. Here is something interesting I have learned:

Steps (this only works if you have a good backup of Master)

1. Stop the SQL Server instance.

2. From a command prompt (must be running the command prompt as administrator), go into the Binn directory of the SQL Server instance and run “sqlservr -m”. This will start up a special single user mode.

3. Start another command prompt as administrator. Run sqlcmd and then perform the restore, something to the effect of: restore database master from backupdevice if you are using preprogrammed backup devices (something that is recommended).

4. Start SQL Server up normally.

5. Restore MSDB, then Model if necessary.

If you don’t have a valid backup, shame on you! But you can run setup again which will rebuild Master but you have to reattach all databases.