Hi,
So I don't know if this is possible, our company has a huge load of shared drives that different clients use, we get a lot of calls and we always have to remote into a machine to map a drive which is stupid and time consuming, what I want is a program/vbsscript that i can email the clients, when they click on the link it must give them a dropdown box with all available drive letters, and next to that an option to enter an network path, or possibly another dropdown box where all the most common shares are located and they can just click on the share and available drive letter and it will map it.
I hope you guys understand what i'm saying.
Creating a batch file is easy enough, and i have no issue in creating 30 batch files for all different possible paths, the problem with batch files is if another drive is already mapped to a drive letter, it will delete that drive letter and replace it with new share.
a typical batch will look like this :
net use T: /delete
net use T: \\FLS001\Share\
Pause
Exit
So I don't know if this is possible, our company has a huge load of shared drives that different clients use, we get a lot of calls and we always have to remote into a machine to map a drive which is stupid and time consuming, what I want is a program/vbsscript that i can email the clients, when they click on the link it must give them a dropdown box with all available drive letters, and next to that an option to enter an network path, or possibly another dropdown box where all the most common shares are located and they can just click on the share and available drive letter and it will map it.
I hope you guys understand what i'm saying.
Creating a batch file is easy enough, and i have no issue in creating 30 batch files for all different possible paths, the problem with batch files is if another drive is already mapped to a drive letter, it will delete that drive letter and replace it with new share.
a typical batch will look like this :
net use T: /delete
net use T: \\FLS001\Share\
Pause
Exit