Skydrive Error 0x800705B4 on Windows 8.1

Every now and then I get a Skydrive error 0x800705B4 on Windows 8.1. It seems to happen with Word or Excel documents a lot. It’s a little painful because I normally then have to fire up another computer to access the file that I need. I searched the web and found various mentions of this issue in forums but no definitive answer on really how to fix the 0x800705B4 error specifically.

In this post, I outline what I did to rectify the 0x800705B4 error. These steps worked for me but your mileage may vary :D. Fingers crossed it works for you too. I thought it might have something to do with the fact that I changed my Skydrive directory from the default to another drive letter, but that seemed to be unrelated.

Below is the 0x800705B4 error that I received.

I checked the Skydrive FAQ website and found that they have a troubleshooter available for download. I ran the troubleshooter, it took a few minutes.

The Skydrive Troubleshooter then prompted to run a maintenance task.

It then let me know that it had indeed found an issue and that it had fixed that issue.

I clicked on View Detailed information to see that it had restarted Skydrive and ran scheduled maintenance tasks.

I then tried to open my excel document and low and behold it worked. This is the first time a troubleshooter that I’ve downloaded from Microsoft has ever worked! Kudos to them!

Native-Boot a Windows 8.1 Preview VHD

The Windows 8.1 Preview has been released. Wouldn’t it be great to take it for a test run without having to dual-boot, run it in a Virtual Machine or fire it up on a spare workstation? Why not Native-Boot a Windows 8.1 Preview VHD file? It gives you all the benefits of a Virtual Machine but all the performance of a bare-metal dual boot installation. Win-Win!

 

Create a VHD File

Open up Computer Mangement, and navigate to Disk Management. Right click and Create VHD.

Specify the location of the VHD file, the size and whether you would like it to be a VHD or a VHDX. It’s recommended also that if you’re using this for anything but testing then you should use a Fixed Size disk as you will get a performance boost.

**NOTE**- The VHD file needs to be on a Basic disk. This won’t work with Dynamic Disks.

Once that has been created, go back into Computer Management. Right click Disk Management and select Attach VHD

It may already be attached. If so skip this step.

Intialize the disk and create a New Simple Volume. Take note of the Drive Letter.

Mount the Windows 8.1 ISO.

 

Install the OS on the VHD file

Open an elevated Command Prompt and navigate to the location of ImageX. At the command prompt, type the following

imagex /apply M:\sources\install.wim 1 K:

Where M: is the drive letter where you have mounted your Windows 8 ISO and K: is the drive letter of the VHD file.

 

Modify the BCD Store

First, backup your BCD Store.

  • Bcdedit /export C:\Bcdbackup.

Now, take a copy of an already existing boot entry, to generate a new GUID.

  • bcdedit /copy {default} /d “Windows 8.1 VHD”

Copy the GUID and enter that in the next commands.

  • Bcdedit /set {4176393d-e226-11e2-bee4-88532e7a2b77} device vhd=[D:]\vhds\windows8.1.vhdx
  • Bcdedit /set {4176393d-e226-11e2-bee4-88532e7a2b77} osdevice vhd=[D:]\vhds\windows8.1.vhdx

If you would like to make the Windows 8.1 VHD installation the default. Type the following.

  • Bcdedit /default {4176393d-e226-11e2-bee4-88532e7a2b77}

To check everything is as it should be, run a msconfig at the command prompt.

Now reboot!

Go you colourful, little fish! Enjoy your Start Button!

For more information on the BCDEdit command line options see the link below.

http://technet.microsoft.com/en-us/library/dd799299(v=ws.10).aspx