copying explorer network drives

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I work on multiple PCs and would like them all to have the same look in
windows explorer. I would like the same network drives on all of the PCs.
How can I do this? Is there a config file for windows explorer that I could
copy to the other PCs?
 
In
Scott said:
I work on multiple PCs and would like them all to have the same look
in windows explorer. I would like the same network drives on all of
the PCs. How can I do this? Is there a config file for windows
explorer that I could copy to the other PCs?

The same "look" isn't the same thing as "same network drives" - for the
latter, you could use a batch file in your startup folder -

net use * /del
net use h: \\server\share /persistent:no
net use y: \\server\anothershare /persistent:no

and so forth.
 
Back
Top