text
stringlengths
0
4.23k
Remarks
If you don't specify any paramters, the mapadmin command displays the current settings for User Name Mapping.
For all options that specify a user or group name, the following formats can be used:
For Windows users, use the formats: <domain>\<username>, \\<computer>\<username>, \<computer>\<username>, or <computer>\<username>
<domain>\<username>
\\<computer>\<username>
\<computer>\<username>
<computer>\<username>
For Windows groups, use the formats: <domain>\<groupname>, \\<computer>\<groupname>, \<computer>\<groupname>, or <computer>\<groupname>
<domain>\<groupname>
\\<computer>\<groupname>
\<computer>\<groupname>
<computer>\<groupname>
For UNIX users, use the formats: <NISdomain>\<username>, <username>@<NISdomain>, <username>@PCNFS, or PCNFS\<username>
<NISdomain>\<username>
<username>@<NISdomain>
<username>@PCNFS
PCNFS\<username>
For UNIX groups, use the formats: <NISdomain>\<groupname>, <groupname>@<NISdomain>, <groupname>@PCNFS, or PCNFS\<groupname>
<NISdomain>\<groupname>
<groupname>@<NISdomain>
<groupname>@PCNFS
PCNFS\<groupname>
md
Creates a directory or subdirectory. Command extensions, which are enabled by default, allow you to use a single md command to create intermediate directories in a specified path.
Note
This command is the same as the mkdir command.
Syntax
md [<drive>:]<path>
Parameters
Parameter
Description
<drive>:
Specifies the drive on which you want to create the new directory.
<path>
Specifies the name and location of the new directory. The maximum length of any single path is determined by the file system. This is a required parameter.
/?
Displays help at the command prompt.
<drive>
<path>
Examples
To create a directory named Directory1 within the current directory, type:
md Directory1
To create the directory tree Taxes\Property\Current within the root directory, with command extensions enabled, type:
md \Taxes\Property\Current
To create the directory tree Taxes\Property\Current within the root directory as in the previous example, but with command extensions disabled, type the following sequence of commands:
md \Taxes
md \Taxes\Property
md \Taxes\Property\Current
merge vdisk
Applies to: Windows Server 2022, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012
Merges a differencing virtual hard disk (VHD) with its corresponding parent VHD. The parent VHD will be modified to include the modifications from the differencing VHD. This command modifies the parent VHD. As a result, other differencing VHDs that are dependent on the parent will no longer be valid.
Important
You must choose and detach a VHD for this operation to succeed. Use the select vdisk command to select a VHD and shift the focus to it.
Syntax
merge vdisk depth=<n>
Parameters
Parameter
Description
depth=<n>
Indicates the number of parent VHD files to merge together. For example, depth=1 indicates that the differencing VHD will be merged with one level of the differencing chain.
<n>
depth=1
Examples
To merge a differencing VHD with its parent VHD, type:
merge vdisk depth=1
mkdir
Creates a directory or subdirectory. Command extensions, which are enabled by default, allow you to use a single mkdir command to create intermediate directories in a specified path.
Note
This command is the same as the md command.
Syntax
mkdir [<drive>:]<path>