You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This cmdlet creates a new brand font package for the tenant. Each font package must have a unique name. The font file must be added to the SharePoint Brand Center before creating a font package. For more information, see [Brand Fonts](/sharepoint/brand-fonts).
This example creates a new font package named "Tahoma" with specified JSON configuration.
84
+
85
+
### EXAMPLE 2
86
+
87
+
```powershell
88
+
# With $packageJson from EXAMPLE 1
89
+
Add-SPOFontPackage -Title "Contoso Font Package" -PackageJson $packageJson -IsHidden $true
90
+
```
91
+
92
+
This example creates a hidden font package with specified JSON configuration.
93
+
94
+
## PARAMETERS
95
+
96
+
### -Title
97
+
98
+
> Applicable: SharePoint Online
99
+
100
+
Specifies the display name of the new font package.
101
+
102
+
```yaml
103
+
Type: System.String
104
+
Parameter Sets: (All)
105
+
Aliases:
106
+
107
+
Required: True
108
+
Position: Named
109
+
Default value: None
110
+
Accept pipeline input: False
111
+
Accept wildcard characters: False
112
+
```
113
+
114
+
### -PackageJson
115
+
116
+
> Applicable: SharePoint Online
117
+
118
+
Specifies the JSON configuration for the font package.
119
+
120
+
```yaml
121
+
Type: System.String
122
+
Parameter Sets: (All)
123
+
Aliases:
124
+
125
+
Required: True
126
+
Position: Named
127
+
Default value: None
128
+
Accept pipeline input: False
129
+
Accept wildcard characters: False
130
+
```
131
+
132
+
### -IsHidden
133
+
134
+
> Applicable: SharePoint Online
135
+
136
+
Specifies whether the font package should be hidden from users. When set to `$true`, the font package will not be visible in the **Change the look** options, but can still be applied using the `Set-SPOFontPackage` cmdlet.
137
+
138
+
```yaml
139
+
Type: System.Boolean
140
+
Parameter Sets: (All)
141
+
Aliases:
142
+
143
+
Required: False
144
+
Position: Named
145
+
Default value: False
146
+
Accept pipeline input: True (ByValue)
147
+
Accept wildcard characters: False
148
+
```
149
+
150
+
### CommonParameters
151
+
152
+
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).
@@ -50,73 +59,90 @@ You must be a SharePoint Embedded Administrator to run this cmdlet.
50
59
For permissions and the most current information about Windows PowerShell for SharePoint Embedded Containers, see the documentation at [Intro to SharePoint Embedded Containers Management Shell](/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell).
51
60
52
61
> [!NOTE]
53
-
> Containers in the Recycle Bin will not be retrieved by using the `Get-SPOContainer` cmdlet.
54
-
> The OwningApplicationId for Microsoft Loop is `a187e399-0c36-4b98-8f04-1edc167a0996`.
55
-
> The OwningApplicationId for Microsoft Designer is `5e2795e3-ce8c-4cfb-b302-35fe5cd01597`.
62
+
> You can't retrieve containers in the Recycle Bin using this cmdlet.
63
+
>
64
+
> Use the following `OwningApplicationId` values to identify specific Microsoft applications:
Example 7 displays the next list of paged view of containers belonging to the application, sorted in ascending order of storage.
137
+
Example 8 displays the next list of paged view of containers belonging to the application, sorted in ascending order of storage.
112
138
113
-
### Example 8
139
+
### Example 9
114
140
115
141
```powershell
116
142
Get-SPOContainer -OwningApplicationId 423poi45 -ArchiveStatus RecentlyArchived | ft
117
143
```
118
144
119
-
Example 8 returns a tabular list of recently archived containers belonging to the SharePoint Embedded application with the OwningApplicationId of 423poi45.
145
+
Example 9 returns a tabular list of recently archived containers belonging to the SharePoint Embedded application with the OwningApplicationId of 423poi45.
120
146
121
147
## PARAMETERS
122
148
@@ -130,7 +156,7 @@ The ArchiveStatus parameter is used to display containers in various stages of a
130
156
- RecentlyArchived – Displays containers in the "Recently archived" state.
131
157
- FullyArchived – Displays containers in the "Fully archived" state.
132
158
- Reactivating – Displays containers in the "Reactivating" state.
Use this parameter to provide the paging token to view the remaining containers as shown in Example 4. If there are no more containers to display, the cmdlet output will return the message `End of containers view.` Otherwise, use the given paging token to retrieve the next batch of up to 200 containers. For displaying the next set of archived containers, `-ArchiveStatus` paramter needs to be used along with this parameter.
232
+
Use this parameter to provide the paging token to view the remaining containers as shown in Example 4. If there are no more containers to display, the cmdlet output will return the message `End of containers view.` Otherwise, use the given paging token to retrieve the next batch of up to 200 containers. For displaying the next set of archived containers, `-ArchiveStatus` parameter needs to be used along with this parameter.
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters).
0 commit comments