Skip to content

Commit f788db2

Browse files
Update New-CsTeamsFilesPolicy.md
adding missing parameters
1 parent b40bf5b commit f788db2

File tree

1 file changed

+71
-4
lines changed

1 file changed

+71
-4
lines changed

teams/teams-ps/teams/New-CsTeamsFilesPolicy.md

Lines changed: 71 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ The policies also specify third party app id to allow file storage(eg. Box).
1414

1515
## SYNTAX
1616

17-
```
18-
New-CsTeamsFilesPolicy [-NativeFileEntryPoints <String>] [-DefaultFileUploadAppId <String>]
19-
[-Identity] <String> [<CommonParameters>]
17+
```powershell
18+
New-CsTeamsFilesPolicy [-NativeFileEntryPoints <String>] [-SPChannelFilesTab <String>]
19+
[-DefaultFileUploadAppId <String>] [-FileSharingInChatswithExternalUsers <String>] [-Identity] <String>
20+
[-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2021
```
2122

2223
## DESCRIPTION
@@ -26,7 +27,7 @@ Teams administrators would be able to create a customized teams files policy to
2627
## EXAMPLES
2728

2829
### Example 1
29-
```
30+
```powershell
3031
New-CsTeamsFilesPolicy -Identity "CustomTeamsFilesPolicy" -NativeFileEntryPoints Disabled/Enabled
3132
```
3233

@@ -64,6 +65,7 @@ Accept pipeline input: False
6465
Accept wildcard characters: False
6566

6667
```
68+
6769
### -DefaultFileUploadAppId
6870
This can be used by the 3p apps to configure their app, so when the files will be dragged and dropped in compose, it will get uploaded in that 3P app.
6971
@@ -79,6 +81,71 @@ Accept pipeline input: False
7981
Accept wildcard characters: False
8082
```
8183
84+
### -Force
85+
86+
Suppresses the display of any non-fatal error message that might arise when running the command.
87+
88+
```yaml
89+
Type: SwitchParameter
90+
Parameter Sets: (All)
91+
Aliases:
92+
93+
Required: False
94+
Position: Named
95+
Default value: False
96+
Accept pipeline input: False
97+
Accept wildcard characters: False
98+
```
99+
100+
### -FileSharingInChatswithExternalUsers
101+
102+
Indicates if file sharing in chats with external users is enabled.
103+
104+
```yaml
105+
Type: String
106+
Parameter Sets: (All)
107+
Aliases:
108+
109+
Required: False
110+
Position: Named
111+
Default value: None
112+
Accept pipeline input: False
113+
Accept wildcard characters: False
114+
```
115+
116+
### -SPChannelFilesTab
117+
118+
Indicates whether Iframe channel files tab is enabled, if not, integrated channel files tab will be enabled.
119+
120+
```yaml
121+
Type: String
122+
Parameter Sets: (All)
123+
Aliases:
124+
125+
Required: False
126+
Position: Named
127+
Default value: None
128+
Accept pipeline input: False
129+
Accept wildcard characters: False
130+
```
131+
132+
### -WhatIf
133+
134+
Shows what would happen if the cmdlet runs.
135+
The cmdlet is not run.
136+
137+
```yaml
138+
Type: SwitchParameter
139+
Parameter Sets: (All)
140+
Aliases: wi
141+
142+
Required: False
143+
Position: Named
144+
Default value: None
145+
Accept pipeline input: False
146+
Accept wildcard characters: False
147+
```
148+
82149
### CommonParameters
83150
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
84151

0 commit comments

Comments
 (0)