Skip to content

Commit f6b219f

Browse files
authored
Merge branch 'main' into user/ertorres/move-note
2 parents 276cafc + c9b3d93 commit f6b219f

13 files changed

+619
-462
lines changed

.openpublishing.publish.config.json

Lines changed: 30 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,6 @@
11
{
2-
"dependent_packages": [{
3-
"id": "Microsoft.DocAsCode.MAML2Yaml",
4-
"nuget_feed": "https://www.myget.org/F/op/api/v2",
5-
"path_to_root": "_dependentPackages/MAML2Yaml",
6-
"target_framework": "net45",
7-
"version": "latest"
8-
}],
9-
"dependent_repositories": [{
10-
"branch_mapping": {},
11-
"branch": "master",
12-
"path_to_root": "_themes",
13-
"url": "https://github.com/Microsoft/templates.docs.msft"
14-
}],
15-
"docsets_to_publish": [{
2+
"docsets_to_publish": [
3+
{
164
"build_entry_point": "docs",
175
"build_output_subfolder": "windows-powershell",
186
"build_source_folder": "docset",
@@ -38,22 +26,39 @@
3826
"PowershellCmdlet": "Content",
3927
"Conceptual": "Content"
4028
},
41-
"xref_query_tags": [ "/dotnet" ],
29+
"xref_query_tags": [
30+
"/dotnet"
31+
],
4232
"version": 0
43-
}],
44-
45-
"git_repository_branch_open_to_public_contributors": "master",
46-
"git_repository_url_open_to_public_contributors": "https://github.com/MicrosoftDocs/windows-powershell-docs",
47-
"need_preview_pull_request": true,
48-
33+
}
34+
],
4935
"notification_subscribers": [],
5036
"sync_notification_subscribers": [],
51-
"contribution_branch_mappings": {},
37+
"branches_to_filter": [],
38+
"git_repository_url_open_to_public_contributors": "https://github.com/MicrosoftDocs/windows-powershell-docs",
39+
"git_repository_branch_open_to_public_contributors": "main",
5240
"skip_source_output_uploading": false,
53-
54-
"need_generate_pdf_url_template": false,
41+
"need_preview_pull_request": true,
42+
"contribution_branch_mappings": {},
43+
"dependent_repositories": [
44+
{
45+
"path_to_root": "_themes",
46+
"url": "https://github.com/Microsoft/templates.docs.msft",
47+
"branch": "main",
48+
"branch_mapping": {}
49+
}
50+
],
5551
"branch_target_mapping": {},
56-
"branches_to_filter": [],
52+
"dependent_packages": [
53+
{
54+
"id": "Microsoft.DocAsCode.MAML2Yaml",
55+
"nuget_feed": "https://www.myget.org/F/op/api/v2",
56+
"path_to_root": "_dependentPackages/MAML2Yaml",
57+
"target_framework": "net45",
58+
"version": "latest"
59+
}
60+
],
61+
"need_generate_pdf_url_template": false,
5762
"targets": {},
5863
"docs_build_engine": {
5964
"name": "docfx_v3"

docset/winserver2019-ps/activedirectory/New-ADGroup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Many object properties are defined by setting cmdlet parameters.
2828
Properties that cannot be set by cmdlet parameters can be set using the **OtherAttributes** parameter.
2929

3030
The **Name** and **GroupScope** parameters specify the name and scope of the group and are required to create a new group.
31-
You can define the new group as a security or distribution group by setting the **GroupType** parameter.
31+
You can define the new group as a security or distribution group by setting the **GroupCategory** parameter.
3232
The **Path** parameter specifies the container or organizational unit (OU) for the group.
3333

3434
The following methods explain different ways to create an object by using this cmdlet.

docset/winserver2019-ps/dism/Add-AppxProvisionedPackage.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ Adds an app package (.appx) that will install for each new user to a Windows ima
1717

1818
### Offline
1919
```
20-
Add-AppxProvisionedPackage [-FolderPath <String>] [-PackagePath <String>] [-DependencyPackagePath <String[]>]
21-
[-LicensePath <String>] [-SkipLicense] [-CustomDataPath <String>] -Path <String> [-WindowsDirectory <String>]
20+
Add-AppxProvisionedPackage [-FolderPath <String>] [-PackagePath <String>] [-DependencyPackagePath <String[]>]
21+
[-OptionalPackagePath <String[]>] [-LicensePath <String>] [-SkipLicense] [-CustomDataPath <String>] -Path <String> [-WindowsDirectory <String>]
2222
[-SystemDrive <String>] [-LogPath <String>] [-ScratchDirectory <String>] [-StubPackageOption <StubPackageOption>] [-LogLevel <LogLevel>] [-Regions <String>]
2323
[<CommonParameters>]
2424
```
2525

2626
### Online
2727
```
2828
Add-AppxProvisionedPackage [-FolderPath <String>] [-PackagePath <String>] [-DependencyPackagePath <String[]>]
29-
[-LicensePath <String>] [-SkipLicense] [-CustomDataPath <String>] [-Online] [-WindowsDirectory <String>]
29+
[-OptionalPackagePath <String[]>] [-LicensePath <String>] [-SkipLicense] [-CustomDataPath <String>] [-Online] [-WindowsDirectory <String>]
3030
[-SystemDrive <String>] [-LogPath <String>] [-ScratchDirectory <String>] [-StubPackageOption <StubPackageOption>] [-LogLevel <LogLevel>] [-Regions <String>]
3131
[<CommonParameters>]
3232
```
@@ -185,6 +185,23 @@ Accept pipeline input: True (ByPropertyName)
185185
Accept wildcard characters: False
186186
```
187187

188+
### -OptionalPackagePath
189+
Specifies the path to an optional package that will also be provisioned. For more information on
190+
optional packages, see
191+
[Optional packages and related set authoring](/windows/msix/package/optional-packages).
192+
193+
```yaml
194+
Type: String[]
195+
Parameter Sets: (All)
196+
Aliases:
197+
198+
Required: False
199+
Position: Named
200+
Default value: None
201+
Accept pipeline input: True (ByPropertyName)
202+
Accept wildcard characters: False
203+
```
204+
188205
### -PackagePath
189206
Specifies the location of the app package (.appx) to add to the Windows image.
190207
This package will be added for every new user account.
Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
---
2+
external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml
3+
Module Name: appx
4+
online version: https://docs.microsoft.com/powershell/module/appx/add-appsharedpackagecontainer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
5+
schema: 2.0.0
6+
---
7+
8+
# Add-AppSharedPackageContainer
9+
10+
## SYNOPSIS
11+
Deploys the shared package container definiton.
12+
13+
## SYNTAX
14+
15+
```
16+
Add-AppSharedPackageContainer [-Path] <String> [-ForceApplicationShutdown] [-Merge] [-Force]
17+
[<CommonParameters>]
18+
```
19+
20+
## DESCRIPTION
21+
The Add-AppSharedPackageContainer cmdlet deploys the shared package container definiton for the particular user.
22+
23+
## EXAMPLES
24+
25+
### Example 1
26+
```powershell
27+
PS C:\> Add-AppSharedPackageContainer -Path C:\MyFolder\ContosoTestContainer.xml
28+
```
29+
30+
This command deploys the definition described in the ContosoTestContainer file.
31+
32+
## PARAMETERS
33+
34+
### -Force
35+
Replaces an existing container of the same name with the newly created
36+
container's definition for the target user(s).
37+
38+
39+
```yaml
40+
Type: SwitchParameter
41+
Parameter Sets: (All)
42+
Aliases:
43+
44+
Required: False
45+
Position: Named
46+
Default value: None
47+
Accept pipeline input: False
48+
Accept wildcard characters: False
49+
```
50+
51+
### -ForceApplicationShutdown
52+
Closes all packages currently running in the Shared Package Container.
53+
54+
```yaml
55+
Type: SwitchParameter
56+
Parameter Sets: (All)
57+
Aliases:
58+
59+
Required: False
60+
Position: Named
61+
Default value: None
62+
Accept pipeline input: False
63+
Accept wildcard characters: False
64+
```
65+
66+
### -Merge
67+
Merges a new container's definition into an existing container
68+
definition of the same name for target user(s).
69+
70+
71+
```yaml
72+
Type: SwitchParameter
73+
Parameter Sets: (All)
74+
Aliases:
75+
76+
Required: False
77+
Position: Named
78+
Default value: None
79+
Accept pipeline input: False
80+
Accept wildcard characters: False
81+
```
82+
83+
### -Path
84+
Path to the XML definition file.
85+
86+
```yaml
87+
Type: String
88+
Parameter Sets: (All)
89+
Aliases: PSPath
90+
91+
Required: True
92+
Position: 0
93+
Default value: None
94+
Accept pipeline input: False
95+
Accept wildcard characters: False
96+
```
97+
98+
### CommonParameters
99+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
100+
101+
## INPUTS
102+
103+
### None
104+
105+
## OUTPUTS
106+
107+
### System.Object
108+
## NOTES
109+
110+
## RELATED LINKS

docset/winserver2022-ps/appx/Appx.md

Lines changed: 28 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Help Version: 5.0.6.4
55
Locale: en-US
66
Module Guid: aeef2bef-eba9-4a1d-a3d2-d0b52df76deb
77
Module Name: Appx
8-
ms.date: 05/19/2017
8+
ms.date: 03/18/2022
99
title: Appx
1010
---
1111

@@ -14,6 +14,10 @@ title: Appx
1414
The Windows PowerShell cmdlets for AppX are designed to streamline the administration of MSIX or AppX package management.
1515

1616
## Appx Cmdlets
17+
18+
### [Add-AppSharedPackageContainer](Add-AppSharedPackageContainer.md)
19+
Deploys the shared package container definiton.
20+
1721
### [Add-AppxPackage](Add-AppxPackage.md)
1822
Adds a signed app package to a user account.
1923

@@ -23,6 +27,9 @@ Adds an appx volume to the Package Manager.
2327
### [Dismount-AppxVolume](Dismount-AppxVolume.md)
2428
Dismounts an appx volume.
2529

30+
### [Get-AppSharedPackageContainer](Get-AppSharedPackageContainer.md)
31+
Gets information about the shared package container.
32+
2633
### [Get-AppxDefaultVolume](Get-AppxDefaultVolume.md)
2734
Gets the default appx volume.
2835

@@ -35,31 +42,44 @@ Gets an app package installation log.
3542
### [Get-AppxPackage](Get-AppxPackage.md)
3643
Gets a list of the app packages that are installed in a user profile.
3744

45+
### [Get-AppxPackageAutoUpdateSettings](Get-AppxPackageAutoUpdateSettings.md)
46+
Provides visibility to the settings configured on a Windows 10 client device for a particular Windows App.
47+
3848
### [Get-AppxPackageManifest](Get-AppxPackageManifest.md)
3949
Gets the manifest of an app package.
4050

4151
### [Get-AppxVolume](Get-AppxVolume.md)
4252
Gets appx volumes for the computer.
4353

44-
### [Get-NonRemovableAppsPolicy](Get-NonRemovableAppsPolicy.md)
45-
Returns the a list of the app packages that are installed and configured as non-removable apps.
54+
### [Invoke-CommandInDesktopPackage](Invoke-CommandInDesktopPackage.md)
55+
Runs a command in the context of a specified app package.
4656

4757
### [Mount-AppxVolume](Mount-AppxVolume.md)
4858
Mounts an appx volume.
4959

5060
### [Move-AppxPackage](Move-AppxPackage.md)
5161
Moves a package from its current location to another appx volume.
5262

63+
### [Remove-AppSharedPackageContainer](Remove-AppSharedPackageContainer.md)
64+
Removes the shared package container.
65+
5366
### [Remove-AppxPackage](Remove-AppxPackage.md)
54-
Removes an app package from a user account.
67+
Removes an app package from one or more user accounts.
68+
69+
### [Remove-AppxPackageAutoUpdateSettings](Remove-AppxPackageAutoUpdateSettings.md)
70+
{{ Fill in the Synopsis }}
5571

5672
### [Remove-AppxVolume](Remove-AppxVolume.md)
5773
Removes an appx volume.
5874

59-
### [Set-AppxDefaultVolume](Set-AppxDefaultVolume.md)
60-
Specifies a default appx volume.
75+
### [Reset-AppSharedPackageContainer](Reset-AppSharedPackageContainer.md)
76+
Destroys all the application data of the container.
6177

62-
### [Set-NonRemovableAppsPolicy](Set-NonRemovableAppsPolicy.md)
63-
Sets an app packages as non-removable (can not be uninstalled).
78+
### [Reset-AppxPackage](Reset-AppxPackage.md)
79+
Use to reset your installed Windows Apps. Restores the Windows app to its initial configuration.
6480

81+
### [Set-AppxDefaultVolume](Set-AppxDefaultVolume.md)
82+
Specifies a default appx volume.
6583

84+
### [Set-AppxPackageAutoUpdateSettings](Set-AppxPackageAutoUpdateSettings.md)
85+
Provides access to configure a specific Windows App's Auto Update and Repair settings. Including pausing update checks.

0 commit comments

Comments
 (0)