Skip to content

Commit cb39193

Browse files
000-561: findctid
1 parent ec43843 commit cb39193

File tree

8 files changed

+103
-7
lines changed

8 files changed

+103
-7
lines changed

_data/docs_menu.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@
3535
link: /articles/en/SharePointOnline/SharePoint content types in Powershell - known errors
3636
- name: SharePoint content types - fieldlinks and fields
3737
link: /articles/en/SharePointOnline/SharePoint content types - fieldlinks and fields
38+
- name: What is SharePoint Online content type ID?
39+
link: /articles/en/SharePointOnline/findctid
40+
- name: Find content type ID using Powershell
41+
link: /articles/en/SharePointOnline/findctIDPS
3842
- name: Export your folder structure to XML using Powershell
3943
link: /articles/en/SharePointOnline/Exportfolderstructure
4044
- name: Easy way to create CAML Query for list view

_data/navigation.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@
3636
link: /articles/en/SharePointOnline/SharePoint%20content%20types%20in%20Powershell%20-%20known%20errors
3737
- name: SharePoint content types - fieldlinks and fields
3838
link: /articles/en/SharePointOnline/SharePoint%20content%20types%20-%20fieldlinks%20and%20fields
39+
- name: What is SharePoint Online content type ID?
40+
link: /articles/en/SharePointOnline/findctid
41+
- name: Find content type ID using Powershell
42+
link: /articles/en/SharePointOnline/findctIDPS
3943
- name: Export your folder structure to XML using Powershell
4044
link: /articles/en/SharePointOnline/Exportfolderstructure
4145
- name: Easy way to create CAML Query for list view

articles/en/SharePointOnline/CAMLQueryForListView.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ date: '2024-03-24'
99
---
1010

1111
<h1>Easy CamlQuery</h1>
12-
When loading thousands of SharePoint list items, you may want to limit the number of retrieved results. If your list contains 10 elements, then loading them like this will present no issues.
12+
When loading thousands of SharePoint list items, you may want to limit the number of retrieved results. If your SharePoint list contains 10 elements, then loading them like this will present no issues.
1313

1414
```
1515
CamlQuery camlQuery = new CamlQuery();
@@ -119,11 +119,16 @@ $ctx.ExecuteQuery()
119119

120120
Display the view and its properties:
121121

122-
122+
```powershell
123123
Write-Output $view
124+
```
125+
124126
or export it to CSV using:
125127

128+
```powershell
126129
Export-CSV $view
130+
```
131+
127132

128133
<img src="/articles/images/easycaml5.png"><br/>
129134

articles/en/SharePointOnline/Customize your site header using PnP.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,12 @@ Set-PnPWebHeader -HeaderLayout Compact
2929
Accepted values are: None, Standard, Compact, Minimal, Extended
3030

3131

32-
| None | Compact | Extended | Minimal |
33-
| <br/><img src="/articles/images/header5.png" width="200"><br/> | <br/><img src="/articles/images/header6.PNG" width="200"><br/> | <br/><img src="/articles/images/header7.PNG" width="200"><br/> |<br/><img src="/articles/images/header8.PNG" width="200"><br/> |
32+
| Name | Preview |
33+
|-----------|-----------------------------------------------------------------------------------------------------------------------------------------|
34+
| None | <br/><img src="/articles/images/header5.png" width="400"><br/> |
35+
| Compact | <br/><img src="/articles/images/header6.PNG" width="400"><br/> |
36+
| Extended | <br/><img src="/articles/images/header7.PNG" width="400"><br/> |
37+
| Minimal | <br/><img src="/articles/images/header8.PNG" width="400"><br/> |
3438

3539
<br/>
3640

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
layout: page
3+
title: 'Customize your page header'
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-23'
10+
---
11+
12+
Set-PnPPage -Identity "MyPage" -HeaderType None
13+
14+
15+
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;

articles/en/SharePointOnline/findctIDPS.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,3 +359,26 @@ Get-SPOContentType | where {$_.Name -eq "Task"} | select id
359359
# See Also
360360

361361
[Get content type ID using User Interface](https://powershellscripts.github.io/articles/en/SharePointOnline/findctID/)
362+
363+
364+
365+
366+
<!-- Default Statcounter code for findctIDPS
367+
https://powershellscripts.github.io/articles/en/SharePointOnline/findctIDPS/
368+
-->
369+
<script type="text/javascript">
370+
var sc_project=13065138;
371+
var sc_invisible=1;
372+
var sc_security="97aaee0f";
373+
var sc_client_storage="disabled";
374+
</script>
375+
<script type="text/javascript"
376+
src="https://www.statcounter.com/counter/counter.js"
377+
async></script>
378+
<noscript><div class="statcounter"><a title="Web Analytics"
379+
href="https://statcounter.com/" target="_blank"><img
380+
class="statcounter"
381+
src="https://c.statcounter.com/13065138/0/97aaee0f/1/"
382+
alt="Web Analytics"
383+
referrerPolicy="no-referrer-when-downgrade"></a></div></noscript>
384+
<!-- End of Statcounter Code -->

articles/en/SharePointOnline/getversionhistory.md

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,42 @@ $results | Export-Csv -Path $outputCsvPath -NoTypeInformation
159159

160160
# See Also
161161

162-
Get Version History on GitHub
162+
### [Get Version History on GitHub](https://github.com/PowershellScripts/SharePointOnline-ScriptSamples/tree/develop/Lists%20and%20Libraries%20Management/Versioning)
163163

164+
[Create a report on all file versions in the library](https://github.com/PowershellScripts/SharePointOnline-ScriptSamples/tree/develop/Lists%20and%20Libraries%20Management/Versioning/Create%20a%20report%20on%20all%20file%20versions%20in%20the%20library)
164165

166+
[Create a report on file versions in library or folder](https://github.com/PowershellScripts/SharePointOnline-ScriptSamples/tree/develop/Lists%20and%20Libraries%20Management/Versioning/Create%20a%20report%20on%20file%20versions%20in%20library%20or%20folder)
167+
168+
[Delete all previous file versions in a library](https://github.com/PowershellScripts/SharePointOnline-ScriptSamples/tree/develop/Lists%20and%20Libraries%20Management/Versioning/Delete%20all%20previous%20file%20versions%20in%20a%20library)
169+
170+
[Enable minor and major versions for all lists in one site](https://github.com/PowershellScripts/SharePointOnline-ScriptSamples/tree/develop/Lists%20and%20Libraries%20Management/Versioning/Enable%20minor%20and%20major%20versions%20for%20all%20lists%20in%20one%20site)
171+
172+
[Enable minor versions using Powershell and CSOM](https://github.com/PowershellScripts/SharePointOnline-ScriptSamples/tree/develop/Lists%20and%20Libraries%20Management/Versioning/Enable%20minor%20versions%20using%20Powershell%20and%20CSOM)
173+
174+
[Enable versioning for all lists in one site](https://github.com/PowershellScripts/SharePointOnline-ScriptSamples/tree/develop/Lists%20and%20Libraries%20Management/Versioning/Enable%20versioning%20for%20all%20lists%20in%20one%20site)
175+
176+
[Enable versioning for one list](https://github.com/PowershellScripts/SharePointOnline-ScriptSamples/tree/develop/Lists%20and%20Libraries%20Management/Versioning/Enable%20versioning%20for%20one%20list)
177+
178+
[Get versioning settings for all lists](https://github.com/PowershellScripts/SharePointOnline-ScriptSamples/tree/develop/Lists%20and%20Libraries%20Management/Versioning/Get%20versioning%20settings%20for%20all%20lists)
179+
180+
181+
182+
<!-- Default Statcounter code for SPO getversionhistory
183+
https://powershellscripts.github.io/articles/en/SharePointOnline/getversionhistory/
184+
-->
185+
<script type="text/javascript">
186+
var sc_project=13065139;
187+
var sc_invisible=1;
188+
var sc_security="25edbfe7";
189+
var sc_client_storage="disabled";
190+
</script>
191+
<script type="text/javascript"
192+
src="https://www.statcounter.com/counter/counter.js"
193+
async></script>
194+
<noscript><div class="statcounter"><a title="Web Analytics"
195+
href="https://statcounter.com/" target="_blank"><img
196+
class="statcounter"
197+
src="https://c.statcounter.com/13065139/0/25edbfe7/1/"
198+
alt="Web Analytics"
199+
referrerPolicy="no-referrer-when-downgrade"></a></div></noscript>
200+
<!-- End of Statcounter Code -->

articles/en/Viva/MoveConversation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: page
3-
title: 'Move conversation to another community'
3+
title: 'Move Viva Engage conversation to another community'
44
menubar: docs_menu
55
hero_image: '/img/IMG_20220521_140146.jpg'
66
show_sidebar: false
@@ -9,7 +9,7 @@ date: '2024-10-03'
99
---
1010

1111
# Move a post
12-
You can move a Viva Engage to another community:
12+
You can move a Viva Engage conversation to another community:
1313

1414

1515

0 commit comments

Comments
 (0)