Skip to content

Commit 8ce054b

Browse files
author
Greg Van Liew
authored
Merge pull request MicrosoftDocs#529 from Microsoft/extensibility
.pkgdef $RootPath$ should be $RootKey$
2 parents 3fb5627 + 7ebfd37 commit 8ce054b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/extensibility/how-to-manage-a-private-gallery-by-using-registry-settings.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If you are an administrator or the developer of an Isolated Shell extension, you
3737
You can create a .pkgdef file to control access to galleries on multiple computers. This file must have the following format.
3838

3939
```
40-
[$RootPath$\ExtensionManager\Repositories\{UniqueGUID}]
40+
[$RootKey$\ExtensionManager\Repositories\{UniqueGUID}]
4141
@={URI}  (REG_SZ)
4242
Disabled=0 | 1 (DWORD)
4343
Priority=0 (highest priority) ... MaxInt (lowest priority) (DWORD) (uint)
@@ -66,15 +66,15 @@ DisplayNamePackageGuid={GUID} (REG_SZ)
6666
You can disable a gallery in a .pkgdef file. The following entry disables the Visual Studio Gallery:
6767

6868
```
69-
[$RootPath$\ExtensionManager\Repositories\{0F45E408-7995-4375-9485-86B8DB553DC9}]
69+
[$RootKey$\ExtensionManager\Repositories\{0F45E408-7995-4375-9485-86B8DB553DC9}]
7070
"Disabled"=dword:00000001
7171
7272
```
7373

7474
The following entry disables the Samples Gallery:
7575

7676
```
77-
[$RootPath$\ExtensionManager\Repositories\{AEB9CB40-D8E6-4615-B52C-27E307F8506C}]
77+
[$RootKey$\ExtensionManager\Repositories\{AEB9CB40-D8E6-4615-B52C-27E307F8506C}]
7878
"Disabled"=dword:00000001
7979
8080
```

docs/extensibility/private-galleries.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ You can share the controls, templates, and tools that you develop by posting the
6262
An administrator can make a private gallery available to several computers at the same time by modifying the system registry on each computer. To accomplish this, create a .pkgdef file that describes the new registry keys and their values. The format of this file is as follows.
6363

6464
```
65-
[$RootPath$\ExtensionManager\Repositories\{UniqueGUID}]
65+
[$RootKey$\ExtensionManager\Repositories\{UniqueGUID}]
6666
@={URI}  (REG_SZ)
6767
Disabled=0 | 1 (DWORD)
6868
Priority=0 (highest priority) ... MaxInt (lowest priority) (DWORD) (uint)

0 commit comments

Comments
 (0)