Skip to content

Commit 8fea235

Browse files
000-901: userinput
1 parent b815202 commit 8fea235

File tree

3 files changed

+66
-4
lines changed

3 files changed

+66
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: page
3+
title: 'Create Dropdown Fields for User Input in Power Automate'
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: '2025-04-06'
10+
---
11+
12+
13+
14+
15+

articles/en/Viva/changelanguage.md

+23
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,26 @@ There are currently 27 languages supported:
5959
- **Turkish** - `tr-TR`
6060
- **Ukrainian** - `uk-UA`
6161

62+
63+
64+
65+
66+
<!-- Default Statcounter code for VE change language
67+
https://powershellscripts.github.io/articles/en/Viva/changelanguage/
68+
-->
69+
<script type="text/javascript">
70+
var sc_project=13116808;
71+
var sc_invisible=1;
72+
var sc_security="3463ca4a";
73+
var sc_client_storage="disabled";
74+
</script>
75+
<script type="text/javascript"
76+
src="https://www.statcounter.com/counter/counter.js"
77+
async></script>
78+
<noscript><div class="statcounter"><a title="Web Analytics"
79+
href="https://statcounter.com/" target="_blank"><img
80+
class="statcounter"
81+
src="https://c.statcounter.com/13116808/0/3463ca4a/1/"
82+
alt="Web Analytics"
83+
referrerPolicy="no-referrer-when-downgrade"></a></div></noscript>
84+
<!-- End of Statcounter Code -->

articles/en/spo/ctremove.md

+28-4
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Step 6. Either delete the items or change their content type under properties.
6161

6262
# Powershell
6363

64-
It works better if you don't know in which list the content type is bein used. Powershell allows you to scan through multiple lists quickly.
64+
Powershell is a better choice if you don't know in which list the content type is being used and there is a lot of them. Powershell allows you to scan through multiple lists quickly.
6565

6666
### With content type name
6767
Content type name is easier because you already know the name of your content type. However, if there is a chance that you may have 2 different content types with the same name, you should be using the script with content type id, not name. For a script with content type id, scroll below.
@@ -83,7 +83,7 @@ $results = @()
8383
8484
foreach ($list in $lists) {
8585
# Skip hidden or system lists
86-
if ($list.Hidden -or $list.BaseTemplate -eq 101) { # 101 is the template ID for document libraries
86+
if ($list.Hidden) {
8787
continue
8888
}
8989
@@ -148,7 +148,7 @@ $results = @()
148148
149149
foreach ($list in $lists) {
150150
# Skip hidden or system lists
151-
if ($list.Hidden -or $list.BaseTemplate -eq 101) { # 101 is the template ID for document libraries
151+
if ($list.Hidden) {
152152
continue
153153
}
154154
@@ -207,4 +207,28 @@ Navigate to:
207207

208208
# See Also
209209

210-
[List SharePoint content types](https://powershellscripts.github.io/articles/en/spo/ctget/)
210+
[List SharePoint content types](https://powershellscripts.github.io/articles/en/spo/ctget/)
211+
212+
213+
214+
215+
216+
<!-- Default Statcounter code for SPO ctremove
217+
https://powershellscripts.github.io/articles/en/spo/ctremove/
218+
-->
219+
<script type="text/javascript">
220+
var sc_project=13116809;
221+
var sc_invisible=1;
222+
var sc_security="0782bf04";
223+
var sc_client_storage="disabled";
224+
</script>
225+
<script type="text/javascript"
226+
src="https://www.statcounter.com/counter/counter.js"
227+
async></script>
228+
<noscript><div class="statcounter"><a title="Web Analytics
229+
Made Easy - Statcounter" href="https://statcounter.com/"
230+
target="_blank"><img class="statcounter"
231+
src="https://c.statcounter.com/13116809/0/0782bf04/1/"
232+
alt="Web Analytics Made Easy - Statcounter"
233+
referrerPolicy="no-referrer-when-downgrade"></a></div></noscript>
234+
<!-- End of Statcounter Code -->

0 commit comments

Comments
 (0)