I am currently writing a help desk batch script, and I am currently running into an issue. I would like our help desk guys to be able to be prompted to select a user profile, once they select the user profile the script will copy the profile folder to a specified directory.
What I am having trouble with is assigning unique variables to each c:\users subfolders, which are essentially the profile names. If I can assign them to variables then I can just create a prompt menu referencing the variable.Do I even have the right start here? Here is my code to convert it to variable. How can I do this for each subdirectory? Any help would be greatly appreciated.
@echo off
for /f "delims=|" %%f in ('dir /b c:\users\') do (set profvar=%%f%%)
Thank you very much for your help. Can this be achieved more efficiently with wmic?
I think this will do what you're asking for.
The first loop uses variable
VARCOUNT
as counter and creates a variable namedprofvar#
where the#
is the value ofVARCOUNT
.The second loop loops from 1 to the value of
VARCOUNT
and prints the value of each variable with the number in front of it.The
SET /P SELPROF=...
line prompts the user to enter a number and the last line prints the selected profile name.