Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Please add parameter help to Set-CsTeamsUpdateManagementPolicy #11975

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
148 changes: 139 additions & 9 deletions teams/teams-ps/teams/Set-CsTeamsUpdateManagementPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,22 @@ Use this cmdlet to modify a Teams Update Management policy.
## SYNTAX

```
Set-CsTeamsUpdateManagementPolicy
Set-CsTeamsUpdateManagementPolicy [-Identity] <String>
[-AllowManagedUpdates <Boolean>]
[-AllowPreview <Boolean>]
[-AllowPublicPreview <String>]
[-BlockLegacyAuthorization <Boolean>]
[-Confirm]
[-Description <String>]
[-DisabledInProductMessages <System.Management.Automation.PSListModifier`1[System.String]>]
[-Description <String>] [-AllowManagedUpdates <Boolean>] [-AllowPreview <Boolean>] [-UpdateDayOfWeek <Int64>]
[-UpdateTime <String>] [-UpdateTimeOfDay <DateTime>] [-AllowPublicPreview <String>]
[-UseNewTeamsClient <String>] [-BlockLegacyAuthorization <Boolean>] [-Identity] <String> [-Force]
[-ProgressAction <ActionPreference>] [-WhatIf] [-Confirm] [<CommonParameters>]
[-Force]
[-ProgressAction <ActionPreference>]
[-UpdateDayOfWeek <Int64>]
[-UpdateTime <String>]
[-UpdateTimeOfDay <DateTime>]
[-UseNewTeamsClient <String>]
[-WhatIf]
[<CommonParameters>]
```

## DESCRIPTION
Expand All @@ -40,6 +50,81 @@ In this example, the policy "Campaign Policy" is modified, disabling the in-prod

## PARAMETERS

### -Identity
The unique identifier of the policy.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -AllowManagedUpdates
{{ Fill AllowManagedUpdates Description }}

```yaml
Type: Boolean
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -AllowPreview
{{ Fill AllowPreview Description }}

```yaml
Type: Boolean
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -AllowPublicPreview
{{ Fill AllowPublicPreview Description }}

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -BlockLegacyAuthorization
{{ Fill BlockLegacyAuthorization Description }}

```yaml
Type: Boolean
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -Confirm
Prompts you for confirmation before running the cmdlet.

Expand Down Expand Up @@ -90,16 +175,61 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -Identity
The unique identifier of the policy.
### -UpdateDayOfWeek
{{ Fill UpdateDayOfWeek Description }}

```yaml
Type: Int64
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -UpdateTime
{{ Fill UpdateTime Description }}

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 1
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -UpdateTimeOfDay
{{ Fill UpdateTimeOfDay Description }}

```yaml
Type: DateTime
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -UseNewTeamsClient
{{ Fill UseNewTeamsClient Description }}

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Expand Down
Loading