Skip to content

Commit cfc048a

Browse files
fixing various updates
1 parent 6a2bde3 commit cfc048a

5 files changed

Lines changed: 27 additions & 23 deletions

File tree

teams/teams-ps/MicrosoftTeams/Get-CsAgent.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ title: Get-CsAgent
1313

1414
# Get-CsAgent
1515

16-
> [!CAUTION]
17-
> This cmdlet will only work for customers that are participating in the AI Agent private preview for this feature. General Availability for this functionality has not been determined at this time.
18-
1916
## SYNOPSIS
2017
Use the Get-CsAgent cmdlet to list the AI Agent(s).
2118

@@ -26,7 +23,10 @@ Get-CsAgent [-Id <string>] [<CommonParameters>]
2623
```
2724

2825
## DESCRIPTION
29-
Use the Get-CsAgent cmdlet to list the AI Agent(s).
26+
Use the Get-CsAgent cmdlet to list the AI Agent(s) configured in the tenant. When the -Id parameter is omitted, all AI Agents in the tenant are returned.
27+
28+
> [!CAUTION]
29+
> This cmdlet will only work for customers that are participating in the AI Agent private preview for this feature. General Availability for this functionality has not been determined at this time.
3030
3131
## EXAMPLES
3232

@@ -82,4 +82,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
8282
8383
[Set-CsAgent](./Set-CsAgent.md)
8484
85-
[Remove-CsAgent](./Remove-CsAgent.md)
85+
[Remove-CsAgent](./Remove-CsAgent.md)
86+
87+
[New-CsOnlineApplicationInstanceAssociation](./New-CsOnlineApplicationInstanceAssociation.md)

teams/teams-ps/MicrosoftTeams/MicrosoftTeams.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Use the Find-CsGroup cmdlet to search groups.
6060
Use the Find-CsOnlineApplicationInstance cmdlet to find application instances that match your search criteria.
6161

6262
### [Get-CsAgent](Get-CsAgent.md)
63-
Retrieves the Agent(s) in the tenant
63+
Retrieves the AI Agent(s) in the tenant.
6464

6565
### [Get-AllM365TeamsApps](Get-AllM365TeamsApps.md)
6666
This cmdlet returns all Microsoft Teams apps in the app catalog, including Microsoft, custom, and non-Microsoft apps.
@@ -780,7 +780,7 @@ Trigger a new direct assignments to group policy assignments cleanup.
780780
Trigger a new direct assignments to group policy assignments migration
781781

782782
### [New-CsAgent](New-CsAgent.md)
783-
Create an Agent that can be associated with a Teams Phone Resource Account.
783+
Create an AI Agent that can be associated with a Teams Phone Resource Account.
784784

785785
### [New-CsApplicationAccessPolicy](New-CsApplicationAccessPolicy.md)
786786
Creates a new application access policy. Application access policy contains a list of application (client) IDs.
@@ -1125,7 +1125,7 @@ Creates a new app in the Teams tenant app store.
11251125
The Register-CsOnlineDialInConferencingServiceNumber command allows you to assign any additional service number that you may have acquired to your conference bridge.
11261126

11271127
### [Remove-CsAgent](Remove-CsAgent.md)
1128-
Deletes an Agent.
1128+
Deletes an AI Agent.
11291129

11301130
### [Remove-CsApplicationAccessPolicy](Remove-CsApplicationAccessPolicy.md)
11311131
Deletes an existing application access policy.
@@ -1434,7 +1434,7 @@ Removes the tenant's hierarchy.
14341434
Remove an owner or member from a team, and from the unified group which backs the team.
14351435

14361436
### [Set-CsAgent](Set-CsAgent.md)
1437-
Modifies an Agent that can be associated with a Teams Phone Resource Account.
1437+
Modifies an AI Agent that can be associated with a Teams Phone Resource Account.
14381438

14391439
### [Set-CsApplicationAccessPolicy](Set-CsApplicationAccessPolicy.md)
14401440
Modifies an existing application access policy.

teams/teams-ps/MicrosoftTeams/New-CsAgent.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Use the New-CsAgent cmdlet to create an AI Agent that can be associated with a T
3535
New-CsAgent -Name "SmartAgent" -AIAgentId "1a438619-c158-4483-bb04-7ca8de89ca58" -AIAgentType "MicrosoftCopilotStudio"
3636
```
3737

38-
This example creates a new AI Agent that is assigned with Microsoft Copilot Studio.
38+
This example creates a new AI Agent that is associated with Microsoft Copilot Studio.
3939

4040
## PARAMETERS
4141

@@ -50,7 +50,7 @@ Aliases:
5050

5151
Required: True
5252
Position: Named
53-
Default value: Off
53+
Default value: None
5454
Accept pipeline input: False
5555
Accept wildcard characters: False
5656
```
@@ -73,7 +73,7 @@ Accept wildcard characters: False
7373
7474
### -AIAgentType
7575
76-
Type of given AI Agent. i.e. MicrosoftCopilotStudio
76+
The type of AI Agent provider. Currently supported value: MicrosoftCopilotStudio.
7777
7878
```yaml
7979
Type: String
@@ -82,14 +82,14 @@ Aliases:
8282

8383
Required: True
8484
Position: Named
85-
Default value: False
85+
Default value: None
8686
Accept pipeline input: False
8787
Accept wildcard characters: False
8888
```
8989
9090
### -AIAgentTargetTagTemplateId
9191
92-
Tag Template Id of this AI Agent. If given, this command will validate if the given tag template id exists or not. If the given Id of the tag template does not exist, this will command fail.
92+
Tag Template Id of this AI Agent. If given, this command will validate if the given tag template id exists or not. If the given Id of the tag template does not exist, this command will fail.
9393
9494
```yaml
9595
Type: System.String
@@ -125,4 +125,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
125125
126126
[Remove-CsAgent](./Remove-CsAgent.md)
127127
128-
[New-CsTagsTemplate](./New-CsTagsTemplate.md)
128+
[New-CsTagsTemplate](./New-CsTagsTemplate.md)
129+
130+
[New-CsOnlineApplicationInstanceAssociation](./New-CsOnlineApplicationInstanceAssociation.md)

teams/teams-ps/MicrosoftTeams/Remove-CsAgent.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
applicable: Microsoft Teams
3-
author: tomkau
3+
author: minwoolee-msft
44
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
55
Locale: en-US
66
Module Name: MicrosoftTeams
@@ -65,7 +65,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
6565
6666
## OUTPUTS
6767
68-
### Microsoft.Rtc.Management.OAA.Models.AIAgentConfiguration
68+
### None
6969
7070
## NOTES
7171
@@ -75,4 +75,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
7575
7676
[Set-CsAgent](./Set-CsAgent.md)
7777
78-
[Get-CsAgent](./Get-CsAgent.md)
78+
[Get-CsAgent](./Get-CsAgent.md)

teams/teams-ps/MicrosoftTeams/Set-CsAgent.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ title: Set-CsAgent
1414
# Set-CsAgent
1515

1616
## SYNOPSIS
17-
Use the Set-CsAgent cmdlet to change an AI Agent
17+
Use the Set-CsAgent cmdlet to change an AI Agent.
1818

1919
## SYNTAX
2020

2121
```
22-
Set-CsAgent -Instance <instance> [<CommonParameters>]
22+
Set-CsAgent -Instance <AIAgentConfiguration> [<CommonParameters>]
2323
```
2424

2525
## DESCRIPTION
@@ -37,7 +37,7 @@ $AIAgent.Name = "NewName"
3737
Set-CsAgent -Instance $AIAgent
3838
```
3939

40-
This example sets a new name value of a AI Agent with the Id `3a4b3d9b-91d8-4fbf-bcff-6907f325842c`
40+
This example sets a new name value of an AI Agent with the Id `3a4b3d9b-91d8-4fbf-bcff-6907f325842c`
4141

4242
## PARAMETERS
4343

@@ -46,7 +46,7 @@ This example sets a new name value of a AI Agent with the Id `3a4b3d9b-91d8-4fbf
4646
The instance of the AI Agent to change.
4747

4848
```yaml
49-
Type: System.String
49+
Type: Microsoft.Rtc.Management.OAA.Models.AIAgentConfiguration
5050
Parameter Sets: (All)
5151
Aliases:
5252

@@ -77,4 +77,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
7777
7878
[Get-CsAgent](./Get-CsAgent.md)
7979
80-
[Remove-CsAgent](./Remove-CsAgent.md)
80+
[Remove-CsAgent](./Remove-CsAgent.md)

0 commit comments

Comments
 (0)