Skip to content

Commit 1781be5

Browse files
authored
Merge pull request #11216 from anmandav/patch-1
Creating documentation for [Get|Set]-CsTeamsSipDevicesConfiguration commandlets
2 parents 87090d3 + b0ec6ca commit 1781be5

File tree

2 files changed

+111
-0
lines changed

2 files changed

+111
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
3+
Module Name: MicrosoftTeams
4+
title: Get-CsTeamsSipDevicesConfiguration
5+
author: anmandav
6+
ms.author: anmandav
7+
online version: https://learn.microsoft.com/powershell/module/teams/get-csteamssipdevicesconfiguration
8+
schema: 2.0.0
9+
---
10+
11+
# Get-CsTeamsSipDevicesConfiguration
12+
13+
## SYNOPSIS
14+
15+
This cmdlet is used to retrieve the organization-wide Teams SIP devices configuration.
16+
17+
## SYNTAX
18+
19+
```powershell
20+
Get-CsTeamsSipDevicesConfiguration
21+
```
22+
23+
## DESCRIPTION
24+
25+
This cmdlet is used to retrieve the organization-wide Teams SIP devices configuration which contains settings that are applicable to SIP devices connected to Teams using Teams Sip Gateway.
26+
27+
To execute the cmdlet, you need to hold a role within your organization such as Global Administrator, Global Reader, Teams Administrator, or Teams Communication Administrator.
28+
29+
## Examples
30+
31+
### Example 1
32+
33+
```powershell
34+
Get-CsTeamsSipDevicesConfiguration
35+
```
36+
```Output
37+
Identity : Global
38+
BulkSignIn : Enabled
39+
```
40+
In this example, the organization has Bulk SignIn enabled for their SIP devices.
41+
42+
## RELATED LINKS
43+
44+
[Set-CsTeamsSipDevicesConfiguration](Set-CsTeamsSipDevicesConfiguration.md)
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
---
2+
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
3+
Module Name: MicrosoftTeams
4+
title: Set-CsTeamsSipDevicesConfiguration
5+
author: anmandav
6+
ms.author: anmandav
7+
online version: https://learn.microsoft.com/powershell/module/teams/set-csteamssipdevicesconfiguration
8+
schema: 2.0.0
9+
---
10+
11+
# Set-CsTeamsSipDevicesConfiguration
12+
13+
## SYNOPSIS
14+
15+
This cmdlet is used to manage the organization-wide Teams SIP devices configuration.
16+
17+
## SYNTAX
18+
19+
```powershell
20+
Set-CsTeamsSipDevicesConfiguration
21+
[-BulkSignIn <String>]
22+
[-WhatIf]
23+
[-Confirm]
24+
[<CommonParameters>]
25+
```
26+
27+
## DESCRIPTION
28+
29+
This cmdlet is used to manage the organization-wide Teams SIP devices configuration which contains settings that are applicable to SIP devices connected to Teams using Teams Sip Gateway.
30+
31+
To execute the cmdlet, you need to hold a role within your organization such as Global Administrator, Teams Administrator, or Teams Communication Administrator.
32+
33+
## EXAMPLES
34+
35+
### Example 1
36+
37+
```powershell
38+
Set-CsTeamsSipDevicesConfiguration -BulkSignIn "Enabled"
39+
```
40+
In this example, Bulk SignIn is set to Enabled across the organization.
41+
42+
### Example 2
43+
44+
```powershell
45+
Set-CsTeamsSipDevicesConfiguration -BulkSignIn "Disabled"
46+
```
47+
In this example, Bulk SignIn is set to Disabled across the organization.
48+
49+
## PARAMETERS
50+
51+
### -BulkSignIn
52+
Indicates whether Bulk SingIn into Teams SIP devices is enabled or disabled for the common area phone (CAP) accounts across the organization. Possible values are **Enabled** and '**Disabled**.
53+
54+
```yaml
55+
Type: String
56+
Position: Named
57+
Default value: None
58+
Accept pipeline input: False
59+
Accept wildcard characters: False
60+
```
61+
62+
### CommonParameters
63+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
64+
65+
## RELATED LINKS
66+
67+
[Get-CsTeamsSipDevicesConfiguration](Get-CsTeamsSipDevicesConfiguration.md)

0 commit comments

Comments
 (0)