So the basic idea is to create a .bat file and whenever you open it, it tells you to enter "your login", and after you enter the login, it transfers the login to an actual script line to open a folder. (How bad of an explanation)! For example.
Hello, please enter your login.
*user enters 07user*
The script will proceed to open a location for example:
c:/folder/07user.
and here's my current "code" I'm using.
Code: Select all
@echo off
color ac
title Subst Local Drive
echo Working...
subst X: C:/
echo Opening X:\Users\user1...
explorer X:\Users\user1
echo Done!
echo Shutting down...
timeout 3