Skip to content

Commit 7a1aa9f

Browse files
Merge branch 'master' into startlayout-v-tishe
2 parents 16eabfb + dc300d4 commit 7a1aa9f

36 files changed

+146
-49
lines changed

docset/winserver2019-ps/printmanagement/Set-PrintConfiguration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ The final command sets the value of the printer configuration to the modified va
7777

7878
### Example 3: Set the default paper size of all printers
7979
```
80-
PS C:\>$Printers = Get-Printer * Foreach ($Printer in $Printers){ Set-PrintConfiguration -PrinterName $Printer.name -PaperSize A4}
80+
PS C:\> $Printers = Get-Printer ; Foreach ($Printer in $Printers){Set-PrintConfiguration -PrinterName $Printer.name -PaperSize A4}
8181
```
8282

8383
This command gets all the printers into a variable $Printers and then loops through all the printers and displays the properties.

docset/winserver2019-ps/startlayout/Export-StartLayout.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@ PS C:\> Export-StartLayout -Path "C:\Layouts\Marketing.json"
5151

5252
This command exports the layout of the tiles on the Windows 11 Start menu to a file named Marketing.json in the C:\Layouts folder. Note that JSON is the only supported format for the output file and only the `-Path` parameter is supported.
5353

54+
### Example 3: Export the layout with the applications' IDs
55+
```
56+
PS C:\> Export-StartLayout -UseDesktopApplicationID -Path "C:\Layouts\Marketing.json"
57+
```
58+
59+
This command exports the layout of the tiles on the Start menu of a computer running Windows 10, version 1809 or later, to a file named Marketing.json in the C:\Layouts folder. It exports the applications' IDs instead of paths to a shortcut link.
60+
5461
## PARAMETERS
5562

5663
### -Confirm
@@ -103,7 +110,7 @@ Accept wildcard characters: False
103110
104111
### -UseDesktopApplicationID
105112
Specifies that the layout file should export the DesktopApplicationID value instead of DesktopApplicationLinkPath which is the default.
106-
DesktopApplicationID is the application's ID and DesktopApplicationLinkPath is a path to a shortcut link (.lnk file) to a Windows desktop application.
113+
DesktopApplicationID is the application's ID and DesktopApplicationLinkPath is a path to a shortcut link (.lnk file) to a Windows desktop application. It is available on computers running Windows 10, version 1809 or later.
107114
108115
```yaml
109116
Type: SwitchParameter

docset/winserver2022-ps/iisadministration/Clear-IISCentralCertProvider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
6060
6161
## OUTPUTS
6262
63-
### None
63+
### System.Object
6464
6565
## NOTES
6666

docset/winserver2022-ps/iisadministration/Clear-IISConfigCollection.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
9292
9393
## OUTPUTS
9494
95+
### System.Object
96+
9597
## NOTES
9698
9799
## RELATED LINKS

docset/winserver2022-ps/iisadministration/Disable-IISCentralCertProvider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
5050

5151
## OUTPUTS
5252

53-
### None
53+
### System.Object
5454

5555
## NOTES
5656

docset/winserver2022-ps/iisadministration/Disable-IISSharedConfig.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,12 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
108108
109109
## INPUTS
110110
111+
### None
112+
111113
## OUTPUTS
112114
115+
### System.Object
116+
113117
## NOTES
114118
115119
## RELATED LINKS

docset/winserver2022-ps/iisadministration/Enable-IISCentralCertProvider.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
130130

131131
## INPUTS
132132

133-
### None
133+
### System.String
134+
135+
### System.Security.SecureString
134136

135137
## OUTPUTS
136138

137-
### None
139+
### System.Object
138140

139141
## NOTES
140142

docset/winserver2022-ps/iisadministration/Enable-IISSharedConfig.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,14 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
158158
159159
## INPUTS
160160
161+
### System.String
162+
163+
### System.Security.SecureString
164+
161165
## OUTPUTS
162166
167+
### System.Object
168+
163169
## NOTES
164170
165171
## RELATED LINKS

docset/winserver2022-ps/iisadministration/Export-IISConfiguration.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,14 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
156156
157157
## INPUTS
158158
159+
### System.String
160+
161+
### System.Security.SecureString
162+
159163
## OUTPUTS
160164
165+
### System.Object
166+
161167
## NOTES
162168
163169
## RELATED LINKS

docset/winserver2022-ps/iisadministration/Get-IISAppPool.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
7272
7373
## INPUTS
7474
75-
### string, string[]
75+
### System.String[]
7676
7777
## OUTPUTS
7878
79-
### Microsoft.Web.Administration.ApplicationPool, Microsoft.Web.Administration.ApplicationPool[]
79+
### System.Object
8080
8181
## NOTES
8282

0 commit comments

Comments
 (0)