Batch files - How To ... Verify if Variables are Defined
The following code will show if a variable MyVar was defined or not: IF DEFINED MyVar (ECHO MyVar IS defined) ELSE (ECHO MyVar is NOT defined) The following code, which works in batch files for all MS-DOS, Windows and OS/2 versions, uses an alternative .....