-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3161 from robinharwood/roharwoo_clusterawareupdat…
…ing_rebase ClusterAwareUpdating module changes for WS2022
- Loading branch information
Showing
10 changed files
with
1,190 additions
and
415 deletions.
There are no files selected for viewing
418 changes: 305 additions & 113 deletions
418
docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 121 additions & 0 deletions
121
docset/winserver2022-ps/clusterawareupdating/Get-CauDeviceInfoForFeatureUpdates.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
--- | ||
description: The Get-CauDeviceInfoForFeatureUpdates cmdlet gets device information for feature updates to use with Cluster-Aware Updating (CAU). | ||
external help file: ClusterAwareUpdating.dll-Help.xml | ||
Module Name: ClusterAwareUpdating | ||
ms.date: 09/17/2021 | ||
online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-caudeviceinfoforfeatureupdates?view=windowsserver2022-ps&wt.mc_id=ps-gethelp | ||
schema: 2.0.0 | ||
title: Get-CauDeviceInfoForFeatureUpdates | ||
--- | ||
|
||
# Get-CauDeviceInfoForFeatureUpdates | ||
|
||
## SYNOPSIS | ||
Gets device information for feature updates to use with CAU. | ||
|
||
## SYNTAX | ||
|
||
``` | ||
Get-CauDeviceInfoForFeatureUpdates [[-ClusterName] <String>] [-Credential <PSCredential>] | ||
-PathToDirectory <String> [<CommonParameters>] | ||
``` | ||
|
||
## DESCRIPTION | ||
|
||
The `Get-CauDeviceInfoForFeatureUpdates` cmdlet gets device information for feature updates to use | ||
with Cluster-Aware Updating (CAU). | ||
|
||
## EXAMPLES | ||
|
||
### Example 1: Get device information | ||
|
||
```powershell | ||
$Parameters = @{ | ||
ClusterName = 'CONTOSO-FC1' | ||
PathToDirectory = 'C:\temp\contoso-device-info' | ||
} | ||
Get-CauDeviceInfoForFeatureUpdates $Parameters | ||
``` | ||
|
||
This example gets device information for CAU for the specified cluster. This example uses | ||
splatting to pass parameter values from the `$Parameters` variable to the command. Learn more about | ||
[Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). | ||
|
||
## PARAMETERS | ||
|
||
### -ClusterName | ||
|
||
Specifies the name of the cluster fow which to get device information. | ||
|
||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: False | ||
Position: 0 | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -Credential | ||
Specifies the administrative credentials for the target cluster. | ||
```yaml | ||
Type: PSCredential | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: False | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -PathToDirectory | ||
Specifies a directory. | ||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: True | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### CommonParameters | ||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, | ||
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, | ||
-WarningAction, and -WarningVariable. For more information, see | ||
[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). | ||
## INPUTS | ||
### None | ||
## OUTPUTS | ||
### System.String | ||
### Microsoft.ClusterAwareUpdating.ActivityIdMap | ||
## NOTES | ||
## RELATED LINKS | ||
[Get-CauClusterRole](get-cauclusterrole.md) | ||
[Get-CauPlugin](get-cauplugin.md) | ||
[Get-CauReport](get-caureport.md) | ||
[Get-CauRun](get-caurun.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.