Skip Ribbon Commands
Skip to main content

Quick Launch

Todd Klindt's home page > Todd Klindt's Office 365 Admin Blog > Posts > Reversing Arrays easily in PowerShell
October 31
Reversing Arrays easily in PowerShell

I was recently dealt a fun task from a customer. They had a site in SharePoint that had a few links in the Quick Launch (left nav, quick nav, whatever) and they wanted to copy the Quick Launch from another site to it. They wanted to keep the existing links below the new ones. Here are some pictures to help it all make sense:

I want to copy these links:

image

and put them on top of these links on another site.

image

Of course I immediately thought of your friend and mine, the PnP PowerShell for this task. Sure enough, there are cmdlets for that, Get-PnPNavigationNode and Add-PnPNavigationNode. Just what the doctor ordered.

Add-PnPNavigationNode is pretty basic and I had to work a bit to get exactly what the customer wanted. When you add a Navigtation node with Add-PnPNavigationNode it puts it at the end of the list, which makes sense. You can also throw the switch parameter, –First, to put it at the top. In most situations that probably is fine, but mine was tricky. I didn’t want to put the copied nav nodes at the end, I wanted the existing ones to stay there. I also couldn’t just add them all as –First because then they would end up at the top, but in backwards order. When I get the old nav nodes with Get-PnPNavigationNode it returns them in their correct order, so as I walked through them with Foreach the first one would be added on top, but then the second one, also with the –First switch, would end up on top, and so on. Enter [array]::Reverse.

The Array class in PowerShell has quite a few tricks up its sleeve in the form of operations, and Reverse is one of them. If you want to see the rest, go to this page, or type [array]:: in a PowerShell host and tab through the list. It’s quite impressive. 

Here’s what my code looked like:

$oldsiteurl = “https://contoso.sharepoint.com/sites/8884aced
$newsiteurl = “https://contoso.sharepoint.com/sites/PublicTest


$oldsite = Connect-PnPOnline -Url $oldsiteurl -Credentials Compliance -ReturnConnection
$newsite = Connect-PnPOnline -Url $newsiteurl -Credentials Compliance –ReturnConnection


$oldnavlinks = Get-PnPNavigationNode -Location QuickLaunch -Connection $oldsite

[array]::Reverse($oldnavlinks) # <-- The magic goes here

foreach ($link in $oldnavlinks) {
Add-PnPNavigationNode -Location QuickLaunch -Title $link.Title -Url $link.Url -First -Connection $newsite -External
}

There’s a lot of foundation there, but you can see where the Array reversal fits in. Here’s how it looked when I ran it:

image

And here’s what it looked like after I ran it:

image

There’s a lot more tweaking I can do, like make sure “Home” is still on top, stuff like that, but finding Reverse was an important step in the beginning.

tk

ShortURL: https://www.toddklindt.com/PoshReverseArray

Comments

Travis scott brand

Everything has its value. Thanks for sharing this informative information with us. GOOD works!
Buy utopia merch Products like Hoodies, Sweatshirts, Sweatpants So more products at reasonable price. Get fast shipping & processing. https://travisscottbrand.com/utopia-merch/
 on 9/10/2024 1:20 PM

teen patti master gold

"Teen Patti Master Gold" is an enhanced version of the classic Teen Patti game, featuring improved graphics, exciting new gameplay modes, and additional betting options. This version offers players the chance to engage in thrilling tournaments and challenges, making it ideal for both casual players and serious competitors looking for an immersive gaming experience. Enjoy connecting with friends and testing your skills in this vibrant card game!
https://teenpattimasster.com.in/


 on 10/12/2024 8:56 AM

al ibdaa gold edp for women

Al Ibdaa Gold EDP for Women is a luxurious fragrance that embodies elegance and femininity. With its rich blend of floral and oriental notes, this perfume offers a warm and inviting scent that captivates the senses. Ideal for special occasions or everyday wear, Al Ibdaa Gold leaves a lasting impression, celebrating the essence of modern womanhood.
https://mrxorganic.shop/products/copy-of-dirham-wardi-edp-for-women-100ml-3-4oz-by-ard-al-zaafaran





 on 10/14/2024 6:57 AM

david

Hello

"What a cool PowerShell assignment it sounds like! Although controlling Quick Launch links and reversing arrays in SharePoint might be challenging, it's wonderful when everything works perfectly."

Regards
David Warner
Purva Aerocity'
https://www.purvaaerocity.gen.in/
 on 10/16/2024 10:20 PM

Sp5der Clothing

Everything has its value. Thanks for sharing this informative information with us. GOOD works!
Buy Sp5der Products like Hoodies, Sweatshirts, Sweatpants So more products at reasonable price. Get fast shipping & processing. So visit our official https://sp5derr.org/ Store.
 on 10/29/2024 6:39 AM

Sprunki Plush

Sprunki Plush is a popular online store based in the United States, specializing in selling high-quality <a href="https://sprunkiplush.com/">Sprunki Plush</a>.
 on 11/22/2024 10:48 PM

homo2.0

I appreciate you sharing this extremely useful information. This is an excellent post. I appreciate you taking the time to share this important information. High-quality content consistently attracts visitors
https://mio-amore-franchise.in/
 on 12/9/2024 4:46 AM

homo2.0

I appreciate you sharing this extremely useful information. This is an excellent post. I appreciate you taking the time to share this important information. High-quality content consistently attracts visitors
https://vanyaholidays.in/
 on 12/9/2024 4:46 AM

homo2.0

I appreciate you sharing this extremely useful information. This is an excellent post. I appreciate you taking the time to share this important information. High-quality content consistently attracts visitors
https://playboycallboy.in/
 on 12/9/2024 4:47 AM

homo2.0

I appreciate you sharing this extremely useful information. This is an excellent post. I appreciate you taking the time to share this important information. High-quality content consistently attracts visitors
https://statekeralajackpotlottery.co.in/
 on 12/9/2024 4:47 AM
1 - 10Next

Add Comment

Items on this list require content approval. Your submission will not appear in public views until approved by someone with proper rights. More information on content approval.

Title


Body *


Today's date *

Select a date from the calendar.
Please enter today's date so I know you are a real person

Twitter


Want a message when I reply to your comment? Put your Twitter handle here.

Attachments

 

 SysKit