text
stringlengths
0
4.23k
Calls Closed Locally
Calls closed by this computer.
Signaling and ILMI Packets Sent
Number of integrated local management interface (ILMI) packets sent to the switch to which this computer is attempting to connect.
Signaling and ILMI Packets Received
Number of ILMI packets received from the atM switch.
Examples
To display call information for all current connections to the atM network adapter installed on this computer, type:
atmadm /c
To display the registered atM network service access point (NSAP) address for each adapter installed in this computer, type:
atmadm /a
To display statistics for monitoring the status of active atM connections, type:
atmadm /s
attach vdisk
Applies to: Windows Server 2022, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012
Attaches (sometimes called mounts or surfaces) a virtual hard disk (VHD) so that it appears on the host computer as a local hard disk drive. If the VHD already has a disk partition and file system volume when you attach it, the volume inside the VHD is assigned a drive letter.
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
attach vdisk [readonly] { [sd=<SDDL>] | [usefilesd] } [noerr]
Parameters
Parameter
Description
readonly
Attaches the VHD as read-only. Any write operation returns an error.
sd=<SDDL string>
Sets the user filter on the VHD. The filter string must be in the Security Descriptor Definition Language (SDDL) format. By default the user filter allows access like on a physical disk. SDDL strings can be complex, but in its simplest form, a security descriptor that protects access is known as a discretionary access control list (DACL). It uses the form: D:<dacl_flags><string_ace1><string_ace2>... <string_acen>Common DACL flags are:A. Allow accessD. Deny accessCommon rights are:GA. All accessGR. Read access GW. Write accessCommon user accounts are:BA. Built in administratorsAU. Authenticated usersCO. Creator ownerWD. EveryoneExamples:D:P:(A;;GR;;;AU. Gives read-access to all authenticated users.D:P:(A;;GA;;;WD. Gives everyone full access.
usefilesd
Specifies that the security descriptor on the .vhd file should be used on the VHD. If the Usefilesd parameter is not specified, the VHD will not have an explicit security descriptor unless it is specified with the Sd parameter.
noerr
Used for scripting only. When an error is encountered, DiskPart continues to process commands as if the error did not occur. Without this parameter, an error causes DiskPart to exit with an error code.
sd=<SDDL string>
D:<dacl_flags><string_ace1><string_ace2>
<string_acen>
Common DACL flags are:A. Allow accessD. Deny accessCommon rights are:GA. All accessGR. Read access GW. Write accessCommon user accounts are:BA. Built in administratorsAU. Authenticated usersCO. Creator ownerWD. EveryoneExamples:D:P:(A;;GR;;;AU. Gives read-access to all authenticated users.D:P:(A;;GA;;;WD. Gives everyone full access.
Examples
To attach the selected VHD as read-only, type:
attach vdisk readonly
attrib
Displays, sets, or removes attributes assigned to files or directories. If used without parameters, attrib displays attributes of all files in the current directory.
Syntax
attrib [{+|-}r] [{+|-}a] [{+|-}s] [{+|-}h] [{+|-}i] [<drive>:][<path>][<filename>] [/s [/d] [/l]]
Parameters
Parameter
Description
{+|-}r
Sets (+) or clears (-) the Read-only file attribute.
{+\|-}a
Sets (+) or clears (-) the Archive file attribute. This attribute set marks files that have changed since the last time they were backed up. Note that the xcopy command uses archive attributes.
{+\|-}s
Sets (+) or clears (-) the System file attribute. If a file uses this attribute set, you must clear the attribute before you can change any other attributes for the file.
{+\|-}h
Sets (+) or clears (-) the Hidden file attribute. If a file uses this attribute set, you must clear the attribute before you can change any other attributes for the file.
{+\|-}i
Sets (+) or clears (-) the Not Content Indexed file attribute.
[<drive>:][<path>][<filename>]
Specifies the location and name of the directory, file, or group of files for which you want to display or change attributes.You can use the ? and * wildcard characters in the filename parameter to display or change the attributes for a group of files.