scripting - IF ELSE problem COMMAND BATCH - Stack Overflow
I have problem about IF ELSE in Command Batch script... In Notepad: Code: :CHECKACCOUNT if /I "%user%"=="insertusername" ( GOTO :ACCOUNT ) ELSE ( GOTO :CHECKPASSACCT ) :CHECKPASSACCT if /I ... You can simplify this down to: ......