Skip to content

Commit

Permalink
Merge pull request MicrosoftDocs#5945 from MicrosoftDocs/master
Browse files Browse the repository at this point in the history
Master to Live
  • Loading branch information
chrisda committed Jun 18, 2020
2 parents 1dc40f3 + 1b93f7e commit f99292a
Show file tree
Hide file tree
Showing 8 changed files with 65 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .openpublishing.redirection.json
Expand Up @@ -6527,7 +6527,7 @@
},
{
"source_path": "exchange/docs-conceptual/exchange-server/exchange-cmdlet-syntax.md",
"redirect_url": "https://docs.microsoft.com/powershell/exchange-cmdlet-syntax",
"redirect_url": "https://docs.microsoft.com/powershell/exchange/exchange-cmdlet-syntax",
"redirect_document_id": true
},
{
Expand Down
4 changes: 1 addition & 3 deletions exchange/exchange-ps/exchange/Get-MessageTrace.md
Expand Up @@ -44,9 +44,7 @@ Get-MessageTrace
## DESCRIPTION
You can use this cmdlet to search message data for the last 10 days. If you run this cmdlet without any parameters, only data from the last 48 hours is returned.

If you enter a start date that is greater than 10 days and less than or equal to 30 days, only 10 days of data will be returned.

If you enter a start date that is older than 30 days, you will receive an error and the command will return no results.
If you enter a start date that is older than 10 days, you will receive an error and the command will return no results.

To search for message data that is greater than 10 days old, use the Start-HistoricalSearch and Get-HistoricalSearch cmdlets.

Expand Down
9 changes: 4 additions & 5 deletions exchange/exchange-ps/exchange/Remove-BlockedSenderAddress.md
Expand Up @@ -15,12 +15,11 @@ monikerRange: "exchonline-ps || eop-ps"
## SYNOPSIS
This cmdlet is available only in the cloud-based service.

Use the Remove-BlockedSenderAddress cmdlet to unblock users in your Office 365 organization that were impacted by the protection system. These users sent multiple messages that were classified as spam, so they were blocked from sending messages.
Use the Remove-BlockedSenderAddress cmdlet to unblock users in your Microsoft 365 organization that were impacted by the protection system. These users sent multiple messages that were classified as spam, so they were blocked from sending messages.

**Note: There's a limit to the number of times you can unblock an Office 365 account.
If you exceed the unblock limit for a user, you'll receive an error, and you'll need to contact support to unblock the user.
**Note**: There's a limit to the number of times you can unblock an Microsoft 365 account. If you exceed the unblock limit for a user, you'll receive an error, and you'll need to contact support to unblock the user.

For information about the parameter sets in the Syntax section below, see Exchange cmdlet syntax (https://technet.microsoft.com/library/bb123552.aspx).
For information about the parameter sets in the Syntax section below, see [Exchange cmdlet syntax](https://docs.microsoft.com/powershell/exchange/exchange-cmdlet-syntax).

## SYNTAX

Expand All @@ -31,7 +30,7 @@ Remove-BlockedSenderAddress -SenderAddress <SmtpAddress>
```

## DESCRIPTION
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see Find the permissions required to run any Exchange cmdlet (https://technet.microsoft.com/library/mt432940.aspx).
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see [Find the permissions required to run any Exchange cmdlet](https://docs.microsoft.com/powershell/exchange/find-exchange-cmdlet-permissions).

## EXAMPLES

Expand Down
Expand Up @@ -20,8 +20,7 @@ Designates a library to be used as a central location for organization assets ac
## SYNTAX

```powershell
Add-SPOOrgAssetsLibrary -LibraryUrl <String> [-ThumbnailUrl <String>] [-OrgAssetType <OrgAssetType>] [-CdnType <SPOTenantCdnType>]
[<CommonParameters>]
Add-SPOOrgAssetsLibrary -LibraryUrl <String> [-ThumbnailUrl <String>] [-OrgAssetType <OrgAssetType>] [-CdnType <SPOTenantCdnType>] [<CommonParameters>]
```

## DESCRIPTION
Expand All @@ -32,11 +31,18 @@ The Add-SPOOrgAssetsLibrary cmdlet designates a library to be a central location

### Example 1

This example adds <https://contoso.sharepoint.com/sites/branding/Assets> as a designated library for organization assets. Assets is the name of the SharePoint library added and will be the name publicly displayed for the library. The thumbnail publicly displayed for the library is contosologo.jpg, from that same library.
This example adds https://contoso.sharepoint.com/sites/branding/Assets as a designated library for organization assets. Assets is the name of the SharePoint library added and will be the name publicly displayed for the library. The thumbnail publicly displayed for the library is contosologo.jpg, from that same library.

```powershell
Add-SPOOrgAssetsLibrary -LibraryURL https://contoso.sharepoint.com/sites/branding/Assets -ThumbnailURL https://contoso.sharepoint.com/sites/branding/Assets/contosologo.jpg
```
### Example 2

This example adds https://contoso.sharepoint.com/sites/branding/Templates as a designated library for organization assets. Templates is the name of the SharePoint library added and will be the name publicly displayed for the library. The thumbnail publicly displayed for the library is contosologo.jpg, from that same library. OrgAssetType is the type of Sharepoint library.

```powershell
Add-SPOOrgAssetsLibrary -LibraryURL https://contoso.sharepoint.com/sites/branding/Templates -ThumbnailURL https://contoso.sharepoint.com/sites/branding/Templates/contosologo.jpg -OrgAssetType OfficeTemplateLibrary
```

## PARAMETERS

Expand Down Expand Up @@ -77,7 +83,12 @@ Accept wildcard characters: False

### -OrgAssetType

Indicates the type of content in this library. Currently supported values are ImageDocumentLibrary, which is set by default, and OfficeTemplateLibrary.
Indicates the type of content in this library. Currently supported values are "ImageDocumentLibrary" and "OfficeTemplateLibrary".

ImageDocumentLibrary is the default OrgAssetType and is best used for images. You can access the contents of this library from any site or page in the SharePoint filepicker.
OfficeTemplateLibrary is the suggested type for Office files and will show up in the UI of all Office desktop apps and Office online in the templates section.

In order to benefit from both UIs you can choose "ImageDocumentLibrary,OfficeTemplateLibrary" as OrgAssetType.

```yaml
Type: OrgAssetType
Expand All @@ -88,7 +99,7 @@ Accepted values: ImageDocumentLibrary, OfficeTemplateLibrary

Required: False
Position: Named
Default value: None
Default value: ImageDocumentLibrary
Accept pipeline input: False
Accept wildcard characters: False
```
Expand Down
Expand Up @@ -32,7 +32,7 @@ The returned collection of installed applications contains Product ID (GUID), Pr

You must be a SharePoint Online administrator or Global Administrator to run the cmdlet.

For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at <https://go.microsoft.com/fwlink/p/?LinkId=251832.>
For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at [Intro to SharePoint Online Management Shell](https://docs.microsoft.com/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell?view=sharepoint-ps).

## EXAMPLES

Expand Down
Expand Up @@ -52,7 +52,7 @@ For Beta 2, the only company logs available are for Business Connectivity Servic
You must be a SharePoint Online administrator or Global Administrator to run the cmdlet.

For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at <https://go.microsoft.com/fwlink/p/?LinkId=251832.>
For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at [Intro to SharePoint Online Management Shell](https://docs.microsoft.com/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell?view=sharepoint-ps).

## EXAMPLES

Expand Down
Expand Up @@ -29,7 +29,7 @@ The `Get-SPOWebTemplate` cmdlet displays all site templates that match the given

You must be a SharePoint Online administrator or Global Administrator to run the cmdlet.

For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at <https://go.microsoft.com/fwlink/p/?LinkId=251832.>
For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at [Intro to SharePoint Online Management Shell](https://docs.microsoft.com/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell?view=sharepoint-ps).

## EXAMPLES

Expand Down
Expand Up @@ -20,12 +20,12 @@ Updates information for a library that is designated as a location for organizat
## SYNTAX

```powershell
Set-SPOOrgAssetsLibrary -LibraryUrl <String> -ThumbnailUrl <String> [<CommonParameters>]
Set-SPOOrgAssetsLibrary -LibraryUrl <String> [-ThumbnailUrl <String>] [-OrgAssetType <OrgAssetType>] [<CommonParameters>]
```

## DESCRIPTION

The Set-SPOOrgAssetsLibrary cmdlet updates information for a library that is designated as a location for organization assets. Updating the thumbnail URL is currently supported.
The Set-SPOOrgAssetsLibrary cmdlet updates information for a library that is designated as a location for organization assets. Updating the thumbnail URL and OrgAssetType are currently supported.

## EXAMPLES

Expand All @@ -45,6 +45,22 @@ This example removes the thumbnail URL that was previously set for the library.
Set-SPOOrgAssetsLibrary -LibraryURL sites/branding/Assets -ThumbnailURL ""
```

### Example 3

This example changes the OrgAssetType to OfficeTemplateLibrary.

```powershell
Set-SPOOrgAssetsLibrary -LibraryURL sites/branding/Templates -OrgAssetType OfficeTemplateLibrary
```

### Example 4

This example changes the OrgAssetType to "ImageDocumentLibrary,OfficeTemplateLibrary".

```powershell
Set-SPOOrgAssetsLibrary -LibraryURL sites/branding/Templates -OrgAssetType ImageDocumentLibrary,OfficeTemplateLibrary
```

## PARAMETERS

### -LibraryUrl
Expand All @@ -63,6 +79,28 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -OrgAssetType

Indicates the type of content in this library. Currently supported values are "ImageDocumentLibrary" and "OfficeTemplateLibrary".

ImageDocumentLibrary is the default OrgAssetType and is best used for images. You can access the contents of this library from any site or page in the SharePoint filepicker.
OfficeTemplateLibrary is the suggested type for Office files and will show up in the UI of all Office desktop apps and Office online in the templates section.

In order to benefit from both UIs you can choose "ImageDocumentLibrary,OfficeTemplateLibrary" as OrgAssetType.

```yaml
Type: OrgAssetType
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online
Accepted values: ImageDocumentLibrary, OfficeTemplateLibrary
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -ThumbnailUrl

Indicates the URL of the background image used when the library is publicly displayed. If no thumbnail URL is indicated, the card will have a gray background.
Expand Down

0 comments on commit f99292a

Please sign in to comment.