text
stringlengths
0
4.23k
[/p user:<perm> [...]
Sample output
Output
Access control entry (ACE) applies to
OI
Object inherit. This folder and files.
CI
Container inherit. This folder and subfolders.
IO
Inherit only. The ACE does not apply to the current file/directory.
No output message
This folder only.
(OI)(CI)
This folder, subfolders, and files.
(OI)(CI)(IO)
Subfolders and files only.
(CI)(IO)
Subfolders only.
(OI)(IO)
Files only.
Remarks
You can use wildcards (? and *) to specify multiple files.
You can specify more than one user.
call
Calls one batch program from another without stopping the parent batch program. The call command accepts labels as the target of the call.
Note
Call has no effect at the command prompt when it is used outside of a script or batch file.
Syntax
call [drive:][path]<filename> [<batchparameters>]]
call [:<label> [<arguments>]]
Parameters
Parameter
Description
[<drive>:][<path>]<filename>
Specifies the location and name of the batch program that you want to call. The <filename> parameter is required, and it must have a .bat or .cmd extension.
<batchparameters>
Specifies any command-line information required by the batch program.
:<label>
Specifies the label that you want a batch program control to jump to.
<arguments>
Specifies the command-line information to be passed to the new instance of the batch program, beginning at :<label>.
/?
Displays help at the command prompt.
[<drive>:][<path>]<filename>
<filename>
<batchparameters>
:<label>
<arguments>
:<label>
Batch parameters
The batch script argument references (%0, %1, ...) are listed in the following tables.
Using the %* value in a batch script refers to all the arguments (for example, %1, %2, %3...).
You can use the following optional syntaxes as substitutions for batch parameters (%n):
Batch Parameter
Description
%~1
Expands %1 and removes surrounding quotation marks.
%~f1