-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add commands for managing built-in font packages #659
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
external help file: sharepointonline.xml | ||
Module Name: Microsoft.Online.SharePoint.PowerShell | ||
online version: https://learn.microsoft.com/powershell/module/sharepoint-online/get-spobuiltinfontpackagesettings | ||
applicable: SharePoint Online | ||
title: Get-SPOBuiltInFontPackageSettings | ||
schema: 2.0.0 | ||
author: yixianpu | ||
ms.author: yixianpu | ||
ms.reviewer: | ||
--- | ||
|
||
# Get-SPOBuiltInFontPackageSettings | ||
|
||
## SYNOPSIS | ||
|
||
Gets settings of built-in font packages. | ||
|
||
## SYNTAX | ||
|
||
```powershell | ||
Get-SPOBuiltInFontPackageSettings | ||
``` | ||
|
||
## DESCRIPTION | ||
|
||
Use this cmdlet to get all settings of built-in font packages. | ||
|
||
## EXAMPLE | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this should be
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (applies to the other file too) |
||
|
||
```powershell | ||
Get-SPOBuiltInFontPackageSettings | ||
``` | ||
|
||
## PARAMETERS | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove as you don't have params |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
external help file: sharepointonline.xml | ||
Module Name: Microsoft.Online.SharePoint.PowerShell | ||
online version: https://learn.microsoft.com/powershell/module/sharepoint-online/set-spobuiltinfontpackagesettings | ||
applicable: SharePoint Online | ||
title: Set-SPOBuiltInFontPackageSettings | ||
schema: 2.0.0 | ||
author: yixianpu | ||
ms.author: yixianpu | ||
ms.reviewer: | ||
--- | ||
|
||
# Set-SPOBuiltInFontPackageSettings | ||
|
||
## SYNOPSIS | ||
|
||
Sets settings of built-in font packages. | ||
|
||
## SYNTAX | ||
|
||
```powershell | ||
Set-SPOBuiltInFontPackageSettings [-HideBuiltInFontPackages] <Boolean> | ||
``` | ||
## DESCRIPTION | ||
|
||
Use this cmdlet to set settings of built-in font packages. | ||
|
||
## EXAMPLE | ||
|
||
Set-SPOBuiltInFontPackageSettings -HideBuiltInFontPackages $true | ||
|
||
## PARAMETERS | ||
|
||
### -HideBuiltInFontPackages | ||
|
||
Hide built in font packages from SharePoint sites if this value is true. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel this could be improved a little bit, e.g., to add a bit more info? I'd suggest you work with your PM on this PR.
Also, please take a look at other cmdlet documentations to see if there's anything you'd need to add
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(applies to the other file too)