This is the example, a shortcut was installed to this code
:
@echo off
::@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
:: $Header: C:/DBAREIS/Projects.PVCS/Win32/ScriptingTipsAndTricks/EXAMPLE[cmd].Environment Variable Indirection [one variable contains full or partial name of another].cmd.pvcs 1.0 11 Jul 2014 19:31:02 $
::@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
::--- You must specify "ENABLEDELAYEDEXPANSION" -----------------------
setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
::--- Display the "USERNAME" (standard Windows variable) indirectly ---
set VarName=USERNAME
echo %VarName% = !%VarName%!