I'm trying to get a .bat script to copy files from a user's documents to a flash drive, however of course not all of us have our documents in our user directory - the following is what we have:
for %%a in (A B C D E F G H I J K L M N O P Q R S T U V W X Y Z) do (
IF EXIST %%a:\STUDYvault.id SET drive=%%a:\ && GOTO Meep:
)
xcopy "%USERPROFILE%\Documents\ExampleFolder" "%drive%Backup\ExampleFolder" /S /D /Y /I
Is there an argument or workaround we can do to replace "%USERPROFILE%\Documents" with say, %userdocumentsdir% or something? Can't find anything via google.
Thanks for your time!
There isn't such environment value, you'll have to grab it from registry.
You can do it like this:
Note that the code is meant to run on .bat file.
Source: this discussion (that shouldn't really be in serverfault I guess)