Skip to content
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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
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.
Copy link
Contributor

@samkabue samkabue Aug 6, 2024

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

Copy link
Contributor

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)


## SYNTAX

```powershell
Get-SPOBuiltInFontPackageSettings
```

## DESCRIPTION

Use this cmdlet to get all settings of built-in font packages.

## EXAMPLES

### Example 1

```powershell
Get-SPOBuiltInFontPackageSettings
```

This example retrieves the current settings of built-in font packages.
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
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.

## EXAMPLES

### Example 1

```powershell
Set-SPOBuiltInFontPackageSettings -HideBuiltInFontPackages $true
```

This example sets the built-in font packages to be hidden from SharePoint sites.

## PARAMETERS

### -HideBuiltInFontPackages

Hide built in font packages from SharePoint sites if this value is true.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hide built

please work with your PM on this documentation. e.g., from reading this, it's not clear what "hiding" means/what effect it has etc

Loading