Skip to content

Commit 63d9847

Browse files
000-567: createdashboard
1 parent 5e63bbe commit 63d9847

File tree

12 files changed

+145
-14
lines changed

12 files changed

+145
-14
lines changed

_data/docs_menu.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
- label: SharePoint Online
2525
items:
2626
- name: Customize your site header using PnP
27-
link: /articles/en/SharePointOnline/Customize your site header using PnP/
27+
link: /articles/en/SharePointOnline/setsiteheaderPnP/
2828
- name: Create SharePoint theme using Theme Generator tool
2929
link: /articles/en/SharePointOnline/Create SharePoint theme using Theme Generator tool/
3030
- name: Migrate OneDrive across tenants
@@ -67,7 +67,10 @@
6767
link: /articles/en/spo/hidebuttons
6868
- name: Compare SharePoint tenant settings
6969
link: /articles/en/spo/comparetenants
70-
70+
- name: Create SharePoint dashboard
71+
link: /articles/en/spo/createdashboard
72+
- name: Customize your page header
73+
link: /articles/en/SharePointOnline/custompageheader
7174

7275
- label: Viva
7376
items:

_data/navigation.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
link: /#
2626
dropdown:
2727
- name: Customize your site header using PnP
28-
link: /articles/en/SharePointOnline/Customize%20your%20site%20header%20using%20PnP/
28+
link: /articles/en/SharePointOnline/setsiteheaderPnP/
2929
- name: Create SharePoint theme using Theme Generator tool
3030
link: /articles/en/SharePointOnline/Create%20SharePoint%20theme%20using%20Theme%20Generator%20tool/
3131
- name: Migrate OneDrive across tenants
@@ -68,6 +68,10 @@
6868
link: /articles/en/spo/hidebuttons
6969
- name: Compare SharePoint tenant settings
7070
link: /articles/en/spo/comparetenants
71+
- name: Create SharePoint dashboard
72+
link: /articles/en/spo/createdashboard
73+
- name: Customize your page header
74+
link: /articles/en/SharePointOnline/custompageheader
7175

7276
- name: Viva
7377
link: /#
@@ -100,7 +104,11 @@
100104
link: /articles/en/Server/SharePoint%20Server%20-%20Troubleshooting%20Workflow%20Farm/
101105
- name: SharePoint Missing Access Request Settings
102106
link: /articles/en/Server/MissingAccessRequestSettings/
103-
107+
108+
- name: Azure
109+
link: /#
110+
- name: Securing Azure Functions
111+
link: /articles/en/Azure/Securing Azure Functions/
104112

105113
- name: About Arleta
106114
link: /about/

articles/en/SharePointOnline/custompageheader.md

Lines changed: 42 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,49 @@ hero_height: is-small
99
date: '2024-11-23'
1010
---
1111

12+
13+
# Set page header
14+
Using PnP you can customize your page header
15+
16+
17+
18+
```powershell
1219
Set-PnPPage -Identity "MyPage" -HeaderType None
20+
```
21+
22+
<img src="/articles/img/pageheadernone.PNG" width="600"><br/>
23+
24+
```powershell
25+
Set-PnPPage -Identity "MyPage" -HeaderType Default
26+
```
27+
28+
<img src="/articles/img/pageheaderdeafult.PNG" width="600"><br/>
29+
30+
31+
32+
# See Also
33+
34+
35+
[Customize your site header using PnP](https://powershellscripts.github.io/articles/en/SharePointOnline/setsiteheaderPnP/)
1336

1437

1538

16-
page.PageHeader.LayoutType = PageHeaderLayoutType.ColorBlock;
17-
page.PageHeader.ShowTopicHeader = true;
18-
page.PageHeader.TopicHeader = "I'm a topic header";
19-
page.PageHeader.TextAlignment = PageHeaderTitleAlignment.Center;
20-
page.PageHeader.ShowPublishDate = true;
39+
<!-- Default Statcounter code for SPO page header
40+
https://powershellscripts.github.io/articles/en/SharePointOnline/custompageheader
41+
-->
42+
<script type="text/javascript">
43+
var sc_project=13066189;
44+
var sc_invisible=1;
45+
var sc_security="245461cc";
46+
var sc_client_storage="disabled";
47+
</script>
48+
<script type="text/javascript"
49+
src="https://www.statcounter.com/counter/counter.js"
50+
async></script>
51+
<noscript><div class="statcounter"><a title="Web Analytics
52+
Made Easy - Statcounter" href="https://statcounter.com/"
53+
target="_blank"><img class="statcounter"
54+
src="https://c.statcounter.com/13066189/0/245461cc/1/"
55+
alt="Web Analytics Made Easy - Statcounter"
56+
referrerPolicy="no-referrer-when-downgrade"></a></div></noscript>
57+
<!-- End of Statcounter Code -->

articles/en/SharePointOnline/getversionhistory.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: page
3-
title: 'Get version history programmatically'
3+
title: 'Export file version history'
44
hero_image: '/img/IMG_20220521_140146.jpg'
55
show_sidebar: false
66
hero_height: is-small
@@ -11,6 +11,7 @@ date: '2024-08-11'
1111
# Overview
1212

1313
Versioning in SharePoint Online is available for list items in all default SharePoint Online list types—including calendars, issue tracking lists, and custom lists. It is also available for all file types that can be stored in libraries, including Web Part pages.
14+
You can export SharePoint file version history for record-keeping purposes or compliance reasons.
1415

1516
### When versions are created
1617

@@ -30,7 +31,7 @@ Based on: [How does versioning work in a list or library?](https://support.micro
3031

3132
<br/><br/>
3233

33-
# Retrieve versions for all files in one SharePoint Online library
34+
# Export version count for all files in one SharePoint Online library
3435

3536
The following PnP Powershell cmdlets can help you retrieve the number of versions for each SharePoint file.
3637

@@ -72,7 +73,7 @@ $results | Export-Csv -Path $outputCsvPath -NoTypeInformation
7273

7374
<br/><br/>
7475

75-
# Get version history for a single file
76+
# Get version history for a single SharePoint file
7677

7778
Get the version history for a single SharePoint file programmatically, using PnP. You need the file path. The cmdlets export the version history to a csv file.
7879

@@ -111,9 +112,9 @@ $results | Export-Csv -Path $outputCsvPath -NoTypeInformation
111112
```
112113

113114

114-
# Get version history for all files in a library
115+
# Export version history for all files in a library
115116

116-
Get version history and export it to a csv file. The cmdlets loop through all the files in a library.
117+
Get version history for each SharePoint files and export it to a csv file. The cmdlets loop through all the files in a SharePoint library.
117118

118119
```powershell
119120
File renamed without changes.

articles/en/spo/createdashboard.md

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
---
2+
layout: page
3+
title: 'Create SharePoint dashboard'
4+
menubar: docs_menu
5+
image: 'https://unsplash.com/s/photos/random'
6+
hero_image: '/img/IMG_20220521_140146.jpg'
7+
show_sidebar: false
8+
hero_height: is-small
9+
date: '2024-11-30'
10+
---
11+
12+
13+
# Dashboard
14+
15+
A dashboard in SharePoint is a page primarily designed for mobile use, providing users with quick access to essential tools and resources. It typically includes quick links, task-oriented apps, and widgets that allow users to perform frequent actions with minimal effort. SharePoint dashboards are designed to reduce scrolling and navigation, ensuring efficiency for users who need to stay productive while on the go. They can also be customized to display key metrics, news, or workflows tailored to team or organizational needs, integrating seamlessly with other Microsoft 365 applications like Teams, Planner, or Power BI.
16+
17+
18+
<img src="/articles/img/dashboard.PNG" width="600"><br/>
19+
20+
21+
<br/>
22+
23+
# Create a Dashboard
24+
25+
PnP Powershell will give you a lovely Dashboard. Use `Set-PnPPage` and choose Dashboard layout to create a dashboard.
26+
27+
28+
```powershell
29+
30+
Connect-PnPOnline -Url "https://acco967.sharepoint.com/sites/EWZ" -ClientId "74180a34-0000-4642-0000-00009dec9a15" -Interactive
31+
32+
Add-PnPPage -Name "test-dashboard"
33+
34+
Set-PnPPage -Identity "test-dashboard" -LayoutType Dashboard
35+
```
36+
37+
38+
39+
<br/>
40+
41+
# Available Apps
42+
43+
Many apps are available for the SharePoint Dashboard. Approvals, Teams App, Viva Learning, among others:
44+
45+
46+
<img src="/articles/img/dashboard2.PNG" width="600"><br/>
47+
48+
49+
50+
You can also add custom ones:
51+
52+
<img src="/articles/img/dashboard3.PNG" width="600"><br/>
53+
54+
55+
56+
Or create your own using Card Designer:
57+
58+
59+
<img src="/articles/img/dashboard4.PNG" width="600"><br/>
60+
61+
62+
63+
64+
<!-- Default Statcounter code for SPO Dashboard
65+
https://powershellscripts.github.io/articles/en/spo/createdashboard
66+
-->
67+
<script type="text/javascript">
68+
var sc_project=13066191;
69+
var sc_invisible=1;
70+
var sc_security="8ab4b9ff";
71+
var sc_client_storage="disabled";
72+
</script>
73+
<script type="text/javascript"
74+
src="https://www.statcounter.com/counter/counter.js"
75+
async></script>
76+
<noscript><div class="statcounter"><a title="Web Analytics
77+
Made Easy - Statcounter" href="https://statcounter.com/"
78+
target="_blank"><img class="statcounter"
79+
src="https://c.statcounter.com/13066191/0/8ab4b9ff/1/"
80+
alt="Web Analytics Made Easy - Statcounter"
81+
referrerPolicy="no-referrer-when-downgrade"></a></div></noscript>
82+
<!-- End of Statcounter Code -->

articles/img/dashboard.PNG

60.5 KB
Loading

articles/img/dashboard2.PNG

11.9 KB
Loading

articles/img/dashboard3.PNG

9.85 KB
Loading

articles/img/dashboard4.PNG

145 KB
Loading

0 commit comments

Comments
 (0)