Skip to content

New ApplicationIdentifier param on New/Set-AuthServer #12743

New issue

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

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

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 14, 2025
Merged
Show file tree
Hide file tree
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
19 changes: 19 additions & 0 deletions exchange/exchange-ps/exchange/New-AuthServer.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ New-AuthServer [-Name] <String> -AuthMetadataUrl <String> -Type <AuthServerType>
### AppSecret
```
New-AuthServer [-Name] <String> -Type <AuthServerType>
[-ApplicationIdentifier <String>]
[-Confirm]
[-DomainController <Fqdn>]
[-DomainName <MultiValuedProperty>]
Expand Down Expand Up @@ -125,6 +126,24 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -ApplicationIdentifier
This parameter is available in the April 18, 2025 Hotfix update (HU) for Exchange 2019 CU15 and Exchange 2016 CU23.

{{ Fill ApplicationIdentifier Description }}

```yaml
Type: String
Parameter Sets: AppSecret
Aliases:
Applicable: Exchange Server 2016, Exchange Server 2019

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

### -Confirm
The Confirm switch specifies whether to show or hide the confirmation prompt. How this switch affects the cmdlet depends on if the cmdlet requires confirmation before proceeding.

Expand Down
31 changes: 31 additions & 0 deletions exchange/exchange-ps/exchange/Set-AuthServer.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,19 @@ Set-AuthServer [-Identity] <AuthServerIdParameter>
[<CommonParameters>]
```

### AppSecret
```
Set-AuthServer [-Identity] <AuthServerIdParameter>
[-ApplicationIdentifier <String>]
[-Confirm]
[-DomainController <Fqdn>]
[-DomainName <MultiValuedProperty]>]
[-Enabled <Boolean>]
[-Name <String>]
[-WhatIf]
[<CommonParameters>]
```

## DESCRIPTION
Partner applications authorized by Exchange can access their resources after they're authenticated using server-to-server authentication. A partner application can authenticate by using self-issued tokens trusted by Exchange or by using an authorization server trusted by Exchange. You can use the New-AuthServer cmdlet to create a trusted authorization server object in Exchange, which allows it to trust tokens issued by the authorization server.

Expand Down Expand Up @@ -100,6 +113,24 @@ Accept pipeline input: True
Accept wildcard characters: False
```

### -ApplicationIdentifier
This parameter is available in the April 18, 2025 Hotfix update (HU) for Exchange 2019 CU15 and Exchange 2016 CU23.

{{ Fill ApplicationIdentifier Description }}

```yaml
Type: String
Parameter Sets: AppSecret
Aliases:
Applicable: Exchange Server 2016, Exchange Server 2019

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

### -AuthMetadataUrl
The AuthMetadataUrl parameter specifies the URL of the authorization server. This can be the AuthMetadataUrl of your Exchange Online organization.

Expand Down