• Welcome to Overclockers Forums! Join us to reply in threads, receive reduced ads, and to customize your site experience!

Installing M$ Office 2010 on a Mapped Network Drive

Overclockers is supported by our readers. When you click a link to make a purchase, we may earn a commission. Learn More.

Anubis_386

Member
Joined
Apr 20, 2006
Location
England - Where VAT hurts my pocket :(
I got Microsoft Office 2010 the other day and wanted to install it on the RAID10 array in my server as opposed to on my SSD but when I went to install it an error message came up saying I couldn't install it to a Network Drive..

Would anyone know how to get around this? Cheers :beer:
 
Yeh, Ultimate 64bit .. I did a little reading on Virtual Hard Disks and it might work, however I read that once you reboot the VHD will no longer to mounted.. I don't know if thats correct, but it wouldn't be very useful if it is.
 
You can use the diskpart utility to execute a script at start-up.

To do this, you need to create two files:
1) A diskpart script containing the following:
Code:
select vdisk file="%path to .vhd%"
attach vdisk
No file extension is necessary when saving this text.
Assign the volume a drive letter once and it should stick when remounted.

2)a .cmd script containing the following:
Code:
diskpart < %path to file created in script 1)%
Save this in the start-up directory and the .vhd should be mounted upon log on.
 
Back