Skip to content

Latest commit

 

History

History
111 lines (77 loc) · 2.91 KB

New-CsApplicationAccessPolicy.md

File metadata and controls

111 lines (77 loc) · 2.91 KB
external help file online version applicable title schema manager author ms.author ms.reviewer
Microsoft.Rtc.Management.dll-help.xml
Microsoft Teams
New-CsApplicationAccessPolicy
2.0.0
zhengni
frankpeng7
frpeng

New-CsApplicationAccessPolicy

SYNOPSIS

Creates a new application access policy. Application access policy contains a list of application (client) IDs. When granted to a user, those applications will be authorized to access online meetings on behalf of that user.

SYNTAX

Identity

New-CsApplicationAccessPolicy [-Identity <XdsIdentity>] [-AppIds <PSListModifier>] [-Description <String>]

DESCRIPTION

This cmdlet creates a new application access policy. Application access policy contains a list of application (client) IDs. When granted to a user, those applications will be authorized to access online meetings on behalf of that user.

EXAMPLES

Create a new application access policy with one app ID

PS C:\> New-CsApplicationAccessPolicy -Identity "ASimplePolicy" -AppIds "d39597bf-8407-40ca-92ef-1ec26b885b7b" -Description "Some description"

The command shown above shows how to create a new policy with one app IDs configured.

Create a new application access policy with multiple app IDs

PS C:\> New-CsApplicationAccessPolicy -Identity "ASimplePolicy" -AppIds "d39597bf-8407-40ca-92ef-1ec26b885b71", "57caaef9-5ed0-48d5-8862-e5abfa71b3e1", "dc17674c-81d9-4adb-bfb2-8f6a442e4620" -Description "Some description"

The command shown above shows how to create a new policy with a list of (three) app IDs configured.

PARAMETERS

-Identity

Unique identifier assigned to the policy when it was created.

Type: XdsIdentity
Parameter Sets: (All)
Aliases: 

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

-AppIds

A list of application (client) IDs. For details of application (client) ID, refer to: Get tenant and app ID values for signing in.

Type: PSListModifier
Parameter Sets: (All)
Aliases:

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

-Description

Specifies the description of the policy.

Type: String
Parameter Sets: (All)
Aliases: 

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

INPUTS

OUTPUTS

NOTES

RELATED LINKS

Grant-CsApplicationAccessPolicy Get-CsApplicationAccessPolicy Set-CsApplicationAccessPolicy Remove-CsApplicationAccessPolicy