Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Provides the GUID that identifies the Virtual Machine. The following table summarizes the attributes of the VmId property.
| Attribute | Value |
|---|---|
| Data type |
Null-terminated Unicode string containing a GUID |
| Access |
Read/write |
| Status |
Required |
| Structure |
CLUSPROP_SZ |
| Minimum |
NULL |
| Maximum |
see Maximum String Size |
| Default |
NULL |
Remarks
The CLUSPROP_SZ_DECLARE macro creates a CLUSPROP_SZ structure with an array of the correct size.
Examples
The property value portion of a property list entry for VmId can be set with the following example code.
WCHAR szVmIdData[] = L"473d58fa-bda8-4fdc-a235-2b0ed19aa755";
CLUSPROP_SZ_DECLARE( VmIdValue, sizeof(szVmIdData) / sizeof(WCHAR) );
VmIdValue.Syntax.dw = CLUSPROP_SYNTAX_LIST_VALUE_SZ;
VmIdValue.cbLength = sizeof( szVmIdData );
StringCbCopy( VmIdValue.sz, VmIdValue.cbLength, szVmIdData );
Requirements
| Minimum supported client |
None supported |
| Minimum supported server |
Windows Server 2008 Datacenter, Windows Server 2008 Enterprise |