I have found another work around that may work with some NAS. Instead of pointing the backup folder to a network share, I created a VHD on the network share and mount the VHD as a local drive. Here is what I did:
- Start Windows 8 Disk Management, under Action, select create VHD. Put the VHD in the NAS folder where the backup will be stored. Select either VHD or VHDX (usable only under Windows 8 or Windows Server 2012). Select Dynamically Expanding type and the appropriate size. For mine, I created a 300GB VHDX.
- A new disk will be available under Disk Management and requires initialization, formatting and letter assignment. After this, you can perform a backup pointing to this drive and see if it works.
To mount the VHD every time the system starts up, create a scheduled task that runs the following windows command script:
- START "Diskpart" /WAIT %SystemRoot%\System32\Diskpart.exe /s %SystemRoot%\CMD\AttachBackupVHD.script
- The AttachBackupVHD.script contains the following DISKPART command:
SELECT VDISK FILE="NAS location\Backup.vhdx"
ATTACH VDISK
EXIT
I tested this on an Iomega/Lenovo NASix201 and Western Digital DX4000 (Windows Storage Server 2008 Essential) and the backup worked on both devices. Backup to ReadyNas devices did not work as the connection to the VHD was lost during backup. Your mileage may vary.