Skip to content

Commit 6df7a12

Browse files
authored
Merge branch 'main' into patch-1
2 parents 23d0f0c + ce4e8bf commit 6df7a12

36 files changed

+790
-193
lines changed

.openpublishing.publish.config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"locale": "en-us",
88
"monikers": [],
99
"moniker_ranges": [],
10-
"open_to_public_contributors": true,
10+
"open_to_public_contributors": false,
1111
"type_mapping": {
1212
"Conceptual": "Content",
1313
"ManagedReference": "Content",
@@ -73,4 +73,4 @@
7373
"docs_build_engine": {
7474
"name": "docfx_v3"
7575
}
76-
}
76+
}
Lines changed: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
---
2+
external help file: Microsoft.Online.SharePoint.PowerShell.dll-Help.xml
3+
Module Name: Microsoft.Online.SharePoint.PowerShell
4+
online version: https://learn.microsoft.com/powershell/module/sharepoint-online/add-spofilerequestbrandingprofile
5+
applicable: SharePoint Online
6+
title: Add-SPOFileRequestBrandingProfile
7+
author: nabeelnaiyer
8+
ms.author: nabeelnaiyer
9+
ms.reviewer:
10+
manager: ahackett
11+
schema: 2.0.0
12+
---
13+
14+
# Add-SPOFileRequestBrandingProfile
15+
16+
## SYNOPSIS
17+
18+
Adds a branding profile for the file request feature by specifying logo and background assets from an existing organization asset library.
19+
20+
## SYNTAX
21+
22+
```
23+
Add-SPOFileRequestBrandingProfile -AssetLibraryUrl <String> -IsPrimary <Boolean> [-LogoFileUrl <String>] [-BackgroundFileUrl <String>]
24+
[<CommonParameters>]
25+
```
26+
27+
## DESCRIPTION
28+
29+
This cmdlet registers a branding profile to be used for the file request feature across the tenant. You must specify an existing organization asset library URL where the branding assets are stored and indicate whether the profile should be designated as primary. Each tenant can have one primary and one secondary profile. The organization asset library being used must be configured with the CdnType being "Public" (see [Add-SPOOrgAssetsLibrary](/powershell/module/sharepoint-online/add-spoorgassetslibrary) for more info).
30+
31+
## EXAMPLES
32+
33+
### Example 1
34+
35+
```powershell
36+
Add-SPOFileRequestBrandingProfile -AssetLibraryUrl "https://contoso.sharepoint.com/sites/branding/Assets" -LogoFileUrl "/sites/branding/Assets/LogoA.jpg" -BackgroundFileUrl "/sites/branding/Assets/BackgroundA.jpg" -IsPrimary $true
37+
```
38+
39+
This example sets https://contoso.sharepoint.com/sites/branding/Assets/ as the organization asset library containing branding images for file request pages. It adds a branding profile using LogoA.jpg and BackgroundA.jpg, whose server-relative paths are provided via the LogoFileUrl and BackgroundFileUrl parameters. The `-IsPrimary` flag indicates whether this profile should be treated as the primary branding profile for the tenant. In this example, the profile is being set as the primary profile.
40+
41+
### Example 2
42+
43+
```powershell
44+
Add-SPOFileRequestBrandingProfile -AssetLibraryUrl "https://contoso.sharepoint.com/sites/branding/Assets" -LogoFileUrl "/sites/branding/Assets/LogoB.jpg" -BackgroundFileUrl "/sites/branding/Assets/BackgroundB.jpg" -IsPrimary $false
45+
```
46+
47+
This example sets https://contoso.sharepoint.com/sites/branding/Assets/ as the organization asset library containing branding images for file request pages. It adds a branding profile using LogoB.jpg and BackgroundB.jpg, whose server-relative paths are provided via the LogoFileUrl and BackgroundFileUrl parameters. The `-IsPrimary` flag indicates whether this profile should be treated as the primary branding profile for the tenant. In this example, the profile is NOT being set as the primary profile.
48+
49+
## PARAMETERS
50+
51+
### -AssetLibraryUrl
52+
53+
> Applicable: SharePoint Online
54+
55+
Specifies the absolute URL of the asset library containing the branding assets.
56+
57+
```yaml
58+
Type: System.String
59+
Parameter Sets: (All)
60+
Aliases:
61+
62+
Required: True
63+
Position: Named
64+
Default value: None
65+
Accept pipeline input: False
66+
Accept wildcard characters: False
67+
```
68+
69+
### -LogoFileUrl
70+
71+
Specifies the relative URL of the logo image file.
72+
73+
```yaml
74+
Type: System.String
75+
Parameter Sets: (All)
76+
Aliases:
77+
78+
Required: False
79+
Position: Named
80+
Default value: None
81+
Accept pipeline input: False
82+
Accept wildcard characters: False
83+
```
84+
85+
### -BackgroundFileUrl
86+
87+
Specifies the relative URL of the background image file.
88+
89+
```yaml
90+
Type: System.String
91+
Parameter Sets: (All)
92+
Aliases:
93+
94+
Required: False
95+
Position: Named
96+
Default value: None
97+
Accept pipeline input: False
98+
Accept wildcard characters: False
99+
```
100+
101+
### -IsPrimary
102+
Specifies if this branding profile configuration is the primary profile.
103+
104+
```yaml
105+
Type: System.Boolean
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+
### CommonParameters
117+
118+
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/p/?LinkID=113216).
119+
120+
## INPUTS
121+
122+
### None
123+
124+
## OUTPUTS
125+
126+
### System.Object
127+
128+
## NOTES
129+
130+
## RELATED LINKS
131+
132+
[Get-SPOFileRequestBrandingProfiles](/powershell/module/sharepoint-online/get-spofilerequestbrandingprofiles)
133+
134+
[Remove-SPOFileRequestBrandingProfile](/powershell/module/sharepoint-online/remove-spofilerequestbrandingprofile)
135+
136+
[Switch-SPOFileRequestBrandingProfiles](/powershell/module/sharepoint-online/switch-spofilerequestbrandingprofiles)

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Add-SPOOrgAssetsLibrary.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Add-SPOOrgAssetsLibrary -LibraryUrl <String> [-ThumbnailUrl <String>] [-OrgAsset
2727

2828
## DESCRIPTION
2929

30-
The Add-SPOOrgAssetsLibrary cmdlet designates a library to be a central location for organization assets across the tenant. Once this cmdlet is run, assets stored within this library are available to sites across the tenant. The name publicly displayed for the library will be the organization's name. Note that it may take from a couple of hours to a day for changes to be reflected.
30+
The Add-SPOOrgAssetsLibrary cmdlet designates a library to be a central location for organization assets across the tenant. Once this cmdlet is run, assets stored within this library are available to sites across the tenant. The name publicly displayed for the library will be the organization's name. Note that it may take from a couple of hours to a day for changes to be reflected.
3131

3232
## EXAMPLES
3333

@@ -38,6 +38,7 @@ This example adds https://contoso.sharepoint.com/sites/branding/Assets as a desi
3838
```powershell
3939
Add-SPOOrgAssetsLibrary -LibraryURL https://contoso.sharepoint.com/sites/branding/Assets -ThumbnailURL https://contoso.sharepoint.com/sites/branding/Assets/contosologo.jpg
4040
```
41+
4142
### Example 2
4243

4344
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.
@@ -71,7 +72,10 @@ Accept wildcard characters: False
7172
```
7273
7374
### -CopilotSearchable
74-
{{ Fill CopilotSearchable Description }}
75+
76+
> Applicable: SharePoint Online
77+
78+
Specifies whether the library is made available to Microsoft 365 Copilot Search.
7579
7680
```yaml
7781
Type: System.Boolean
@@ -104,7 +108,10 @@ Accept wildcard characters: False
104108
```
105109
106110
### -NoDefaultOrigins
107-
{{ Fill NoDefaultOrigins Description }}
111+
112+
> Applicable: SharePoint Online
113+
114+
Specifies whether to provision default origins during activation of the CDN for organizational assets feature.
108115
109116
```yaml
110117
Type: System.Management.Automation.SwitchParameter
@@ -159,6 +166,7 @@ Accept wildcard characters: False
159166
```
160167
161168
### -Confirm
169+
162170
Prompts you for confirmation before running the cmdlet.
163171
164172
```yaml
@@ -174,6 +182,7 @@ Accept wildcard characters: False
174182
```
175183
176184
### -WhatIf
185+
177186
Shows what would happen if the cmdlet runs.
178187
The cmdlet is not run.
179188

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Add-SPOSiteDesign.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,10 @@ Accept wildcard characters: False
6666
```
6767
6868
### -DesignPackageId
69-
{{ Fill DesignPackageId Description }}
69+
70+
> Applicable: SharePoint Online
71+
72+
The ID of the design package associated with the site design.
7073
7174
```yaml
7275
Type: System.Guid
@@ -208,6 +211,7 @@ Accept wildcard characters: False
208211
```
209212
210213
### CommonParameters
214+
211215
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).
212216
213217
## INPUTS

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPOEnterpriseAppInsightsReport.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ If this cmdlet is executed with `-ReportId` as parameter, the top 100 records of
4444
| AppID | The AppID of the 3P application. |
4545
| AppPermissions | The permissions granted to the 3P application. |
4646
| RequestVoulme | The number of times the 3P application accessed the given SharePoint site. |
47+
| CallType | The call type used by the 3P application to access the SharePoint site. |
48+
| PoliciesOnSite | The list of premium policies applied on the SharePoint site. |
4749

4850
If this cmdlet is executed with both the parameters, i.e. `-ReportId` and `-Action`, and if the value of `-Action` is set as `View`, it will display the same result as described above. If the value of `-Action` is set to `Download`, it will download the full report in CSV format to the same path from where the command was run.
4951

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
---
2+
external help file: Microsoft.Online.SharePoint.PowerShell.dll-Help.xml
3+
Module Name: Microsoft.Online.SharePoint.PowerShell
4+
online version: https://learn.microsoft.com/powershell/module/sharepoint-online/get-spofilerequestbrandingprofiles
5+
applicable: SharePoint Online
6+
title: Get-SPOFileRequestBrandingProfiles
7+
author: nabeelnaiyer
8+
ms.author: nabeelnaiyer
9+
ms.reviewer:
10+
manager: ahackett
11+
schema: 2.0.0
12+
---
13+
14+
# Get-SPOFileRequestBrandingProfiles
15+
16+
## SYNOPSIS
17+
18+
Retrieves branding profiles configured for the file request feature, including details about logo and background assets.
19+
20+
## SYNTAX
21+
22+
```
23+
Get-SPOFileRequestBrandingProfiles [<CommonParameters>]
24+
```
25+
26+
## DESCRIPTION
27+
28+
This cmdlet returns the branding profiles currently configured for the file request feature in the tenant. Each profile contains metadata about the logo and background image assets, such as file name and file URL. The cmdlet will output the asset library URL being used, along with information for both the primary and secondary branding profiles (if present). Each tenant can have at most one primary and one secondary branding profile.
29+
30+
## EXAMPLES
31+
32+
### Example 1
33+
34+
```powershell
35+
Get-SPOFileRequestBrandingProfiles
36+
```
37+
38+
This example retrieves the branding profiles configured for the file request feature. If profiles have been added using `Add-SPOFileRequestBrandingProfile`, the output will include the asset library URL and details abou the branding profiles such as file names and URLs for primary and secondary profiles if present.
39+
40+
## PARAMETERS
41+
42+
### CommonParameters
43+
44+
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/p/?LinkID=113216).
45+
46+
## INPUTS
47+
48+
### None
49+
50+
## OUTPUTS
51+
52+
### System.Object
53+
54+
## NOTES
55+
56+
## RELATED LINKS
57+
58+
[Add-SPOFileRequestBrandingProfile](/powershell/module/sharepoint-online/add-spofilerequestbrandingprofile)
59+
60+
[Remove-SPOFileRequestBrandingProfile](/powershell/module/sharepoint-online/remove-spofilerequestbrandingprofile)
61+
62+
[Switch-SPOFileRequestBrandingProfiles](/powershell/module/sharepoint-online/switch-spofilerequestbrandingprofiles)

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPOTenant.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ This example returns the organization-level site collection properties such as S
4545
## PARAMETERS
4646

4747
### -ShowDetails
48-
{{ Fill ShowDetails Description }}
48+
49+
> Applicable: SharePoint Online
50+
51+
Whether to show the detailed properties for each setting.
4952

5053
```yaml
5154
Type: System.Management.Automation.SwitchParameter

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPOTheme.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ ms.reviewer:
1919
```
2020
Get-SPOTheme [[-Name] <String>] [<CommonParameters>]
2121
```
22+
2223
## DESCRIPTION
2324

2425
The **Get-SPOTheme** cmdlet returns the settings for a named existing theme, or for all uploaded themes if no name is provided.
@@ -78,7 +79,10 @@ Get-SPOTheme
7879
## PARAMETERS
7980

8081
### -Name
81-
{{ Fill Name Description }}
82+
83+
> Applicable: SharePoint Online
84+
85+
The name of the theme.
8286

8387
```yaml
8488
Type: System.String
@@ -93,6 +97,7 @@ Accept wildcard characters: False
9397
```
9498
9599
### CommonParameters
100+
96101
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).
97102
98103
## INPUTS

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Invoke-SPOMigrationEncryptUploadSubmit.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,15 @@ Creates a new migration job in the target site collection.
2121
## SYNTAX
2222

2323
### ImplicitSourceParameterSet
24+
2425
```
2526
Invoke-SPOMigrationEncryptUploadSubmit -MigrationSourceLocations <MigrationPackageLocation>
2627
-Credentials <CredentialCmdletPipeBind> -TargetWebUrl <String> [-NoLogFile] [-ParallelUpload]
2728
[<CommonParameters>]
2829
```
2930

3031
### ExplicitSourceParameterSet
32+
3133
```
3234
Invoke-SPOMigrationEncryptUploadSubmit -SourceFilesPath <String> -SourcePackagePath <String>
3335
-Credentials <CredentialCmdletPipeBind> -TargetWebUrl <String> [-NoLogFile] [-ParallelUpload]
@@ -127,7 +129,10 @@ Accept wildcard characters: False
127129
```
128130
129131
### -ParallelUpload
130-
{{ Fill ParallelUpload Description }}
132+
133+
> Applicable: SharePoint Online
134+
135+
Whether to enable parallel upload of files to Azure.
131136
132137
```yaml
133138
Type: System.Management.Automation.SwitchParameter

0 commit comments

Comments
 (0)