I want to create a .bat file (or any other type of file where I can have the user one-click) to map a network drive.
Right now I can open the command prompt and type:
("employee" is the password)
Which mostly solves the problems I was having before when I mapped the network drive through tools -> map network drive, the password prompt would always show up after a reboot.
I just want to be able to click the bat file and have that code execute as most users cannot do this themself.
Thanks
Right now I can open the command prompt and type:
Code:
net use Z: \\server\foldername\ employee
Which mostly solves the problems I was having before when I mapped the network drive through tools -> map network drive, the password prompt would always show up after a reboot.
I just want to be able to click the bat file and have that code execute as most users cannot do this themself.
Thanks
Comment