Skip to content

Commit 2729928

Browse files
authored
Update Get-CsGraphPolicy.md
1 parent c5447ad commit 2729928

File tree

1 file changed

+31
-32
lines changed

1 file changed

+31
-32
lines changed

skype/skype-ps/skype/Get-CsGraphPolicy.md

Lines changed: 31 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -8,51 +8,38 @@ schema: 2.0.0
88
# Get-CsGraphPolicy
99

1010
## SYNOPSIS
11-
Provide the topic introduction here.
11+
Use the `Get-CsGraphPolicy` cmdlet to return information about one or more graph policies configured for your organization. Graph policies determine whether users can pre-load content or files that are attached to an Outlook meeting invitation into a Skype for Business Online meeting.
1212

1313
## SYNTAX
14-
1514
```
16-
Get-CsGraphPolicy [[-Identity] <Object>] [-BypassDualWrite <Object>] [-Filter <Object>] [-LocalStore]
17-
[-Tenant <Object>] [-AsJob] [<CommonParameters>]
15+
Get-CsGraphPolicy [[-Identity] <XdsIdentity>] [-Filter <String>] [-LocalStore] [-Tenant <Guid>] [-AsJob]
16+
[<CommonParameters>]
1817
```
1918

2019
## DESCRIPTION
21-
Provide the detailed description here.
20+
Skype for Business Online supports a Global CsGraphPolicy that is set by default to enable Outlook content pre-load in Skype for Business Online meetings. The Global policy can't be changed by you. Use the `Get-CsGraphPolicy` cmdlet to get a predefined graph policy in your organization.
21+
22+
To return a list of all the Role-Based Access Control (RBAC) roles a cmdlet has been assigned to (including any custom RBAC roles you have created), run the following command:
23+
24+
Get-CsAdminRole | Where-Object {$_.Cmdlets -Match "Get-CsGraphPolicy"}
2225

2326
## EXAMPLES
2427

2528
### -------------------------- Example 1 --------------------------
2629
```
27-
Insert example commands for example 1.
30+
Get-CsGraphPolicy
2831
```
2932

30-
Insert descriptive text for example 1.
33+
This example returns all predefined graph policies in your organization.
3134

3235

3336
## PARAMETERS
3437

35-
### -BypassDualWrite
36-
PARAMVALUE: $true | $false
37-
38-
```yaml
39-
Type: Object
40-
Parameter Sets: (All)
41-
Aliases:
42-
Applicable: Skype for Business Online
43-
44-
Required: False
45-
Position: Named
46-
Default value: None
47-
Accept pipeline input: False
48-
Accept wildcard characters: False
49-
```
50-
5138
### -Filter
52-
PARAMVALUE: String
39+
This parameter accepts a wildcard string and returns all graph policies with identities matching that string. For example, a Filter value of "*Enabled*" will return all policies which contain the string "Enabled".
5340

5441
```yaml
55-
Type: Object
42+
Type: String
5643
Parameter Sets: (All)
5744
Aliases:
5845
Applicable: Skype for Business Online
@@ -65,10 +52,10 @@ Accept wildcard characters: False
6552
```
6653
6754
### -Identity
68-
PARAMVALUE: XdsIdentity
55+
Specifies the identity of the predefined graph policy to return.
6956
7057
```yaml
71-
Type: Object
58+
Type: XdsIdentity
7259
Parameter Sets: (All)
7360
Aliases:
7461
Applicable: Skype for Business Online
@@ -81,7 +68,7 @@ Accept wildcard characters: False
8168
```
8269
8370
### -LocalStore
84-
PARAMVALUE: SwitchParameter
71+
This parameter is reserved for internal Microsoft use
8572
8673
```yaml
8774
Type: SwitchParameter
@@ -97,10 +84,18 @@ Accept wildcard characters: False
9784
```
9885
9986
### -Tenant
100-
PARAMVALUE: Guid
87+
Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example:
88+
89+
-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"
90+
91+
You can return your tenant ID by running this command:
92+
93+
Get-CsTenant | Select-Object DisplayName, TenantID
94+
95+
If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment.
10196
10297
```yaml
103-
Type: Object
98+
Type: Guid
10499
Parameter Sets: (All)
105100
Aliases:
106101
Applicable: Skype for Business Online
@@ -113,7 +108,11 @@ Accept wildcard characters: False
113108
```
114109
115110
### -AsJob
116-
{{Fill AsJob Description}}
111+
Indicates that this cmdlet runs as a background job.
112+
113+
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.
114+
115+
For more information about Windows PowerShell background jobs, see [about_Jobs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_jobs?view=powershell-6) and [about_Remote_Jobs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_remote_jobs?view=powershell-6).
117116
118117
```yaml
119118
Type: SwitchParameter
@@ -138,4 +137,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
138137
## NOTES
139138
140139
## RELATED LINKS
141-
140+
[Grant-CsGraphPolicy](https://docs.microsoft.com/en-us/powershell/module/skype/grant-csgraphpolicy?view=skype-ps)

0 commit comments

Comments
 (0)