Performs conditional processing in batch programs.
IF [NOT] ERRORLEVEL number command
IF [NOT] string1==string2 command
IF [NOT] EXIST filename command
  NOT               Specifies that Windows should carry out
                    the command only if the condition is false.
  ERRORLEVEL number Specifies a true condition if the last program run
                    returned an exit code equal to or greater than the number
                    specified.
  string1==string2  Specifies a true condition if the specified text strings
                    match.
  EXIST filename    Specifies a true condition if the specified filename
                    exists.
  command           Specifies the command to carry out if the condition is
                    met.  Command can be followed by ELSE command which
                    will execute the command after the ELSE keyword if the
                    specified condition is FALSE
The ELSE clause must occur on the same line as the command after the IF.  For
example:
    IF EXIST filename. (
        del filename.
    ) ELSE (
        echo filename. missing.
    )
The following would NOT work because the del command needs to be terminated
by a newline:
    IF EXIST filename. del filename. ELSE echo filename. missing
Nor would the following work, since the ELSE command must be on the same line
as the end of the IF command:
    IF EXIST filename. del filename.
    ELSE echo filename. missing
The following would work if you want it all on one line:
    IF EXIST filename. (del filename.) ELSE echo filename. missing
						Performance warning: replication was delayed while applying changes to the following object. If this message occurs frequently, ...
Performance warning: replication was delayed while applying changes to the following object. If this message occurs frequently, ...
Performing a configuration version update of "{0}" will prevent it from being migrated to or imported on previous versions ...
Performing this operation from a Windows-In-Windows 64-bit (WOW64) host environment is not supported and may cause unexpected ...
Performs conditional processing in batch programs. IF NOT ERRORLEVEL number command IF NOT string1=string2 command IF NOT ...
Performs networking tasks associated with configuration and maintenance of homegroups. If this service is stopped or disabled, ...
Performs online activation of AD forest using the specified product-key to generate and then publish the Activation Object ...
PERFTRACK (Init-Dora): Offer is accepted on the interface %2 after toggling the broadcast bit in INIT. Offered Address is ...
PERFTRACK (Request-Ack): Address confirmed for the interface %2 after toggling the broadcast bit in INIT-REBOOT. Confirmed ...