|
| 1 | +--- |
| 2 | +external help file: Microsoft.Rtc.Management.dll-help.xml |
| 3 | +applicable: Skype for Business Online |
| 4 | +title: Grant-CsTeamsCallParkPolicy |
| 5 | +schema: 2.0.0 |
| 6 | +--- |
| 7 | + |
| 8 | +# Grant-CsTeamsCallParkPolicy |
| 9 | + |
| 10 | +## SYNOPSIS |
| 11 | + |
| 12 | +The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature in Microsoft Teams. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different Teams phone. The Grant-CsTeamsCallParkPolicy cmdlet lets you assign a custom policy to a specific user. |
| 13 | + |
| 14 | +NOTE: the call park feature currently only available in desktop and web clients. Call Park functionality is currently completely disabled in mobile clients. Supported with TeamsOnly mode |
| 15 | + |
| 16 | +## SYNTAX |
| 17 | + |
| 18 | +### Identity (Default) |
| 19 | +``` |
| 20 | +Grant-CsTeamsCallParkPolicy [[-Identity] <UserIdParameter>] [-PolicyName] <String> [-Tenant <System.Guid>] |
| 21 | + [-DomainController <Fqdn>] [-PassThru] [-WhatIf] [-Confirm] [<CommonParameters>] |
| 22 | +``` |
| 23 | + |
| 24 | +### GrantToTenant |
| 25 | +``` |
| 26 | +Grant-CsTeamsCallParkPolicy [-PolicyName] <String> [-Tenant <System.Guid>] [-DomainController <Fqdn>] |
| 27 | + [-PassThru] [-Global] [-WhatIf] [-Confirm] [<CommonParameters>] |
| 28 | +``` |
| 29 | + |
| 30 | +## DESCRIPTION |
| 31 | +The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature in Microsoft Teams. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different phone. The Grant-CsTeamsCallParkPolicy cmdlet lets you assign a custom policy to a specific user. |
| 32 | + |
| 33 | + |
| 34 | +## EXAMPLES |
| 35 | + |
| 36 | +### Example 1 |
| 37 | +```powershell |
| 38 | +PS C:\> Grant-CsTeamsCallParkPolicy -PolicyName SalesPolicy -Identity "Ken Myer" |
| 39 | +``` |
| 40 | + |
| 41 | +Assigns a custom policy "Sales Policy" to the user "Ken Myer" |
| 42 | + |
| 43 | +## PARAMETERS |
| 44 | + |
| 45 | +### -Confirm |
| 46 | +Prompts you for confirmation before running the cmdlet. |
| 47 | + |
| 48 | +```yaml |
| 49 | +Type: SwitchParameter |
| 50 | +Parameter Sets: (All) |
| 51 | +Aliases: cf |
| 52 | + |
| 53 | +Required: False |
| 54 | +Position: Named |
| 55 | +Default value: None |
| 56 | +Accept pipeline input: False |
| 57 | +Accept wildcard characters: False |
| 58 | +``` |
| 59 | +
|
| 60 | +### -DomainController |
| 61 | +Internal Microsoft use only. |
| 62 | +
|
| 63 | +```yaml |
| 64 | +Type: Fqdn |
| 65 | +Parameter Sets: (All) |
| 66 | +Aliases: |
| 67 | + |
| 68 | +Required: False |
| 69 | +Position: Named |
| 70 | +Default value: None |
| 71 | +Accept pipeline input: False |
| 72 | +Accept wildcard characters: False |
| 73 | +``` |
| 74 | +
|
| 75 | +### -Global |
| 76 | +Internal Microsoft use only. |
| 77 | +
|
| 78 | +```yaml |
| 79 | +Type: SwitchParameter |
| 80 | +Parameter Sets: GrantToTenant |
| 81 | +Aliases: |
| 82 | + |
| 83 | +Required: False |
| 84 | +Position: Named |
| 85 | +Default value: None |
| 86 | +Accept pipeline input: False |
| 87 | +Accept wildcard characters: False |
| 88 | +``` |
| 89 | +
|
| 90 | +### -Identity |
| 91 | +The User Id of the user to whom the policy is being assigned. |
| 92 | +
|
| 93 | +```yaml |
| 94 | +Type: UserIdParameter |
| 95 | +Parameter Sets: Identity |
| 96 | +Aliases: |
| 97 | + |
| 98 | +Required: False |
| 99 | +Position: 0 |
| 100 | +Default value: None |
| 101 | +Accept pipeline input: True (ByPropertyName, ByValue) |
| 102 | +Accept wildcard characters: False |
| 103 | +``` |
| 104 | +
|
| 105 | +### -PassThru |
| 106 | +If present, causes the cmdlet to pass the user object (or objects) through the Windows PowerShell pipeline. By default, the cmdlet does not pass objects through the pipeline. |
| 107 | +
|
| 108 | +```yaml |
| 109 | +Type: SwitchParameter |
| 110 | +Parameter Sets: (All) |
| 111 | +Aliases: |
| 112 | + |
| 113 | +Required: False |
| 114 | +Position: Named |
| 115 | +Default value: None |
| 116 | +Accept pipeline input: False |
| 117 | +Accept wildcard characters: False |
| 118 | +``` |
| 119 | +
|
| 120 | +### -PolicyName |
| 121 | +"Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope ("tag:"). For example, a policy that has the Identity tag:Redmond has a PolicyName equal to Redmond; a policy with the Identity tag:RedmondConferencingPolicy has a PolicyName equal to RedmondConferencingPolicy. |
| 122 | +
|
| 123 | +If you set PolicyName to a null value, then the command will unassign any per-user policy assigned to the user. |
| 124 | +
|
| 125 | +```yaml |
| 126 | +Type: String |
| 127 | +Parameter Sets: (All) |
| 128 | +Aliases: |
| 129 | + |
| 130 | +Required: True |
| 131 | +Position: 1 |
| 132 | +Default value: None |
| 133 | +Accept pipeline input: False |
| 134 | +Accept wildcard characters: False |
| 135 | +``` |
| 136 | +
|
| 137 | +### -Tenant |
| 138 | +Internal Microsoft use only. |
| 139 | +
|
| 140 | +```yaml |
| 141 | +Type: System.Guid |
| 142 | +Parameter Sets: (All) |
| 143 | +Aliases: |
| 144 | + |
| 145 | +Required: False |
| 146 | +Position: Named |
| 147 | +Default value: None |
| 148 | +Accept pipeline input: False |
| 149 | +Accept wildcard characters: False |
| 150 | +``` |
| 151 | +
|
| 152 | +### -WhatIf |
| 153 | +Shows what would happen if the cmdlet runs. |
| 154 | +The cmdlet is not run. |
| 155 | +
|
| 156 | +```yaml |
| 157 | +Type: SwitchParameter |
| 158 | +Parameter Sets: (All) |
| 159 | +Aliases: wi |
| 160 | + |
| 161 | +Required: False |
| 162 | +Position: Named |
| 163 | +Default value: None |
| 164 | +Accept pipeline input: False |
| 165 | +Accept wildcard characters: False |
| 166 | +``` |
| 167 | +
|
| 168 | +### CommonParameters |
| 169 | +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. |
| 170 | +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). |
| 171 | +
|
| 172 | +## INPUTS |
| 173 | +
|
| 174 | +### Microsoft.Rtc.Management.AD.UserIdParameter |
| 175 | +
|
| 176 | +
|
| 177 | +## OUTPUTS |
| 178 | +
|
| 179 | +### System.Object |
| 180 | +
|
| 181 | +## NOTES |
| 182 | +
|
| 183 | +## RELATED LINKS |
0 commit comments