If you use in a batch file something like 'if %1 == OK
',
this may crash your batch file because, if %1 is
empty, it will result in a syntax error. Instead, use 'if
%1. == OK.
'.
|
|
|
|
|
Recommanded by Microsoft in book "Distributing Microsoft Office 2000" | |
Featured in Lockergnome e-Zine |