Is it possible to re-share folders from a shared drive in Windows?

2

We have a Windows server with shares used by legacy software. We also have a NAS.

Ideally we would just map a network drive to the NAS and then replace the current shares with new shares of the same name. It would give us time to refactor the legacy software without running out of disk space.

However, we can't seem to share anything from the mounted shared drive (and I'm not very familiar with Windows).

Jay Stramel

Posted 2011-09-19T19:56:48.013

Reputation: 201

Answers

1

You can't do it using standard windows commands. Junctions won't help either.

A possibility would be to mount the share in Linux using samba, then to share it from there (maybe using samba or NFS).

bryan

Posted 2011-09-19T19:56:48.013

Reputation: 7 848

0

Depending on the operating systems and applications involved, symbolic links might work. That is, keep the existing shares on the Windows server but replace the content with symbolic links to the content on the NAS. Note that the clients will be connecting to the NAS, not the server, so this is only an option if the clients can already authenticate.

You can create symbolic links with the mklink commands.

Harry Johnston

Posted 2011-09-19T19:56:48.013

Reputation: 5 054