Skip to content

Commit 8436002

Browse files
committed
Correct path for COM CLSID registry entry
We noticed that on AKS, where a version of this plugin is implemented and registered successfully, the CLSID appears at the path `HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CCG\COMClasses`. When we attempt to use the documented path `HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\CCG\COMClasses` we get the following error: ``` TimeCreated : 1/25/2022 1:19:21 PM ProviderName : Microsoft-Windows-Containers-CCG Id : 4 Message : Container Credential Guard failed to instantiate the plugin: {...}. Error: Object was not found in registry ```
1 parent 025f16c commit 8436002

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk-api-src/content/ccgplugins/nf-ccgplugins-iccgdomainauthcredentials-getpasswordcredentials.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The return value is an HRESULT. A value of S_OK indicates the call was successfu
7070

7171
The API may be called concurrently. Therefore, the developer needs to ensure that their implementation is thread safe. Additionally, the COM object will be activated out-of-proc and it must be registered appropriately.
7272

73-
The implementer must add a key under “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\CCG\COMClasses” for their COM CLSID. Write access to “CCG\COMClasses” is restricted to SYSTEM and Administrator accounts.
73+
The implementer must add a key under “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CCG\COMClasses” for their COM CLSID. Write access to “CCG\COMClasses” is restricted to SYSTEM and Administrator accounts.
7474

7575
The following is an example credential specification file. For information on supplying this file to Docker, see [Run a container with a gMSA](/virtualization/windowscontainers/manage-containers/gmsa-run-container).
7676

0 commit comments

Comments
 (0)