Windows 7 - multiple drives/folders/servers as one share.

For the techie guys - opinions please.

What I've learnt
1.) You can't create symlinks to local drives on a server and then access then from another PC, so my solution is to use shares. (see code block2)
2.) You need to enable remote symlink access on the client accessing the share
Code:
fsutil behavior set SymlinkEvaluation R2R:1
fsutil behavior set SymlinkEvaluation R2L:1

This seems to work - I now have an accessible central media link share. Busy seeing what XBMC does with it.

Code:
$directories = "\\media-server\mediaC$\movies\", ""\\media-server\mediaD$\movies\
$target = "\\MEDIA-SERVER\MediaLink\Movies\"

foreach ($dir in $directories)
{
    Get-ChildItem $dir | 
    ForEach {
cmd /c mklink  /D "$target$_" "$dir$_"
}
}
 
Last edited:
Crap man... all was going well until I hit Openelec on a pi.

(guys with just windows setups, the above will work for you across servers)
 
Last edited:
Crap man... all was going well until I hit Openelec on a pi.

(guys with just windows setups, the above will work for you across servers)
Symlinks or hard links? Did you try both? Symlinks act like a shortcut....hard links are more like actual sub folders
 
Symlinks or hard links? Did you try both? Symlinks act like a shortcut....hard links are more like actual sub folders
Don't hardlinks take up the same space though?

Starting to look into creating the central share from the linux side to the windows servers....and see if that works.
 
Ahhh multiple servers.. Ok so Storage Spaces won't help you one bit....

*ponder*
 
I am using Drive Bender to pool multiple drives into one large drive. I then create one share for all the pooled drives.

You will have to read up more on whether shares are supported for pooling...

Edit: It seems like they make it possible see the blurb below form their Features:

"Pooling drives on remote servers
Over the years we have been asked if it was possible to add a networked based drive to an existing pool. Well we are happy to say that, new to Drive Bender v2 ER1, you can add a networked server drive or NAS device. Drive Bender is able to add any UNC based resource to the local pool (even those requiring authentication)."

Am using it on Win 7 Home Premium / Ultimate 64bit.
 
Last edited:
I am using Drive Bender to pool multiple drives into one large drive. I then create one share for all the pooled drives.

You will have to read up more on whether shares are supported for pooling...

Edit: It seems like they make it possible see the blurb below form their Features:

"Pooling drives on remote servers
Over the years we have been asked if it was possible to add a networked based drive to an existing pool. Well we are happy to say that, new to Drive Bender v2 ER1, you can add a networked server drive or NAS device. Drive Bender is able to add any UNC based resource to the local pool (even those requiring authentication)."

Am using it on Win 7 Home Premium / Ultimate 64bit.

I'll download and give it a try... running out of options :p
 
...and I just went through all the PCs and took out drives that weren't registering in windows... 7 drives in total ranging from 250GB to 3TB.

I'm now going through them to see which are actually dead... and which were faking it :p

Really need to get my storage sorted out.
 
Why don't you setup a dedicates nas box using zfs as your fs sharing drive pool?
 
Why don't you setup a dedicates nas box using zfs as your fs sharing drive pool?

Yip - the route I'm thinking of going...

DriveBender might work - but still trying to find a few things out - not much information on their site.
 
Top
Sign up to the MyBroadband newsletter
X