Good Morning,
I have the following piece of code below that I've tweaked to map a few network drives. I'd like it to be tweaked (but I'm not sure how) so that it maps the network drives, creates a shortcut for each of them on the desktop, renames the shortcut appropriately, and then I guess at the first time they go to open them it'll ask for a password. If possible, if you could make it obvious where some of the changeable stuff is, like "desktop" name or something. I will learn from your input! thanks!
@net use M: \\10.0.0.120\Media Folder\Movies /persistent: yes
@echo Create new P: drive mapping
@net use P: \\10.0.0.120\Media Folder\Pictures /persistent: yes
@echo Create new S: drive mapping
@net use S: \\10.0.0.120\Criticals /persistent: yes
@echo Create new L: drive mapping
@net use F: \\10.0.0.120\Finances & Banking /persistent: yes
@echo Create new N: drive mapping
@net use N: \\10.0.0.120\Documents /persistent: yes
:Exit
@Pause