Skip to content

Commit 8a61e99

Browse files
authored
Merge branch 'master' into patch-1
2 parents e715cf1 + eeb9d6b commit 8a61e99

File tree

7 files changed

+916
-119
lines changed

7 files changed

+916
-119
lines changed

Get-TeamsApp.md

Lines changed: 0 additions & 117 deletions
This file was deleted.
Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
3+
Module Name: Skype for Business Online
4+
online version: https://docs.microsoft.com/powershell/module/skype/get-csteamsipphonepolicy
5+
applicable: Skype for Business Online
6+
title: Get-CSTeamsIPPhonePolicy
7+
author: tonywoodruff
8+
ms.author: anwoodru
9+
ms.reviewer: kponnus
10+
manager: sandrao
11+
schema: 2.0.0
12+
---
13+
14+
# Get-CsTeamsIPPhonePolicy
15+
16+
## SYNOPSIS
17+
18+
Get-CSTeamsIPPhonePolicy allows IT Admins to view policies for IP Phone experiences in Microsoft Teams
19+
20+
## SYNTAX
21+
22+
```
23+
Get-CsTeamsIPPhonePolicy [-LocalStore] [[-Identity] <XdsIdentity>] [-Tenant <Guid>] [-Filter <String>] [-AsJob]
24+
25+
```
26+
27+
## DESCRIPTION
28+
29+
Returns information about the Teams IP Phone Policies configured for use in your organization. Teams IP phone policies enable you to configure the different sign-in experiences based upon the function the device is performing; example: common area phone.
30+
31+
## EXAMPLES
32+
33+
### Example 1
34+
```powershell
35+
PS C:\> Get-CsTeamsIPPhonePolicy -identity CommonAreaPhone
36+
```
37+
38+
Retrieves the IP Phone Policy with name "CommonAreaPhone".
39+
40+
41+
## PARAMETERS
42+
43+
### -Filter
44+
Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the policies, use this syntax: -Filter "tag:*".
45+
46+
```yaml
47+
Type: String
48+
49+
Parameter Sets: (All)
50+
Aliases:
51+
52+
Required: False
53+
Position: Named
54+
Default value: None
55+
Accept pipeline input: False
56+
Accept wildcard characters: False
57+
```
58+
59+
### -Identity
60+
Specify the unique name of the TeamsIPPhonePolicy that you would like to retrieve.
61+
62+
```yaml
63+
Type: XdsIdentity
64+
Parameter Sets: (All)
65+
Aliases:
66+
67+
Required: True
68+
Position: 1
69+
Default value: None
70+
Accept pipeline input: False
71+
Accept wildcard characters: False
72+
```
73+
74+
### -LocalStore
75+
Internal Microsoft Use Only.
76+
77+
```yaml
78+
Type: SwitchParameter
79+
Parameter Sets: (All)
80+
Aliases:
81+
82+
Required: False
83+
Position: Named
84+
Default value: None
85+
Accept pipeline input: False
86+
Accept wildcard characters: False
87+
```
88+
89+
### -Tenant
90+
Internal Microsoft use only.
91+
92+
```yaml
93+
Type: Guid
94+
Parameter Sets: (All)
95+
Aliases:
96+
97+
Required: False
98+
Position: Named
99+
Default value: None
100+
Accept pipeline input: False
101+
Accept wildcard characters: False
102+
```
103+
104+
### -AsJob
105+
Indicates that this cmdlet runs as a background job.
106+
107+
When you specify the AsJob parameter, the command immediately returns an object that represents the background job. You can continue to work in the session while the job finishes. The job is created on the local computer and the results from the Skype for Business Online session are automatically returned to the local computer. To get the job results, use the Receive-Job cmdlet.
108+
109+
```yaml
110+
Type: SwitchParameter
111+
Parameter Sets: (All)
112+
Aliases:
113+
114+
Required: False
115+
Position: Named
116+
Default value: None
117+
Accept pipeline input: False
118+
Accept wildcard characters: False
119+
```
120+
121+
## INPUTS
122+
123+
### None
124+
125+
## OUTPUTS
126+
127+
### System.Object
128+
129+
## NOTES
130+
131+
## RELATED LINKS

0 commit comments

Comments
 (0)