❗ 50+ PowerShell SharePoint Examples
https://www.enjoysharepoint.com/poweshell-sharepoint-examples/
#SharePoint
https://www.enjoysharepoint.com/poweshell-sharepoint-examples/
#SharePoint
❗ Top 10 PSConfEU videos:
1. Become a parameter ninja. - James O'Neill
2. How I discovered classes (without much Class{}) - Stephane Van Gulick
3. PowerShell 7.1: A Next Gen Shell - Steve LeeJason Helmick
4. PowerShell in Notebooks - Rob Sewell
5. State of the Shell - Keynote from Jeffrey Snover and Joey Aiello
6. Is DSC Dead? - Gael Colas and Michael Greene
7. Don't be scared of calling APIs! - Graziella Iezzi
8. What the log?! So many events, so little time… Miriam Wiesner
9. The Seven Deadly Sins of PowerShell - Friedrich Weinmann
10. Classes & runspaces together - Async logging in PowerShell - Jan-Henrik Damaschke
#video #PSConfEU
1. Become a parameter ninja. - James O'Neill
2. How I discovered classes (without much Class{}) - Stephane Van Gulick
3. PowerShell 7.1: A Next Gen Shell - Steve LeeJason Helmick
4. PowerShell in Notebooks - Rob Sewell
5. State of the Shell - Keynote from Jeffrey Snover and Joey Aiello
6. Is DSC Dead? - Gael Colas and Michael Greene
7. Don't be scared of calling APIs! - Graziella Iezzi
8. What the log?! So many events, so little time… Miriam Wiesner
9. The Seven Deadly Sins of PowerShell - Friedrich Weinmann
10. Classes & runspaces together - Async logging in PowerShell - Jan-Henrik Damaschke
#video #PSConfEU
📘 Learn how to use Microsoft Graph with PowerShell or Graph Explorer
https://www.larsinus.com/?p=216
#Graph
https://www.larsinus.com/?p=216
#Graph
🎬 BrakeSec Podcast: Mick Douglas Powershell Class in 7 sessions
https://www.youtube.com/playlist?list=PL-giMT7sGCVJQIgB06ock6ptjKvSc-rXc
#video
https://www.youtube.com/playlist?list=PL-giMT7sGCVJQIgB06ock6ptjKvSc-rXc
#video
YouTube
Powershell Class
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
📦 PSProfiler
A great tool that will measure the execution time of each line of your noscript.
This measures the noscript block and returns the times executed for each line in the noscript block.
https://www.powershellgallery.com/packages/PSProfiler
#module
A great tool that will measure the execution time of each line of your noscript.
This measures the noscript block and returns the times executed for each line in the noscript block.
https://www.powershellgallery.com/packages/PSProfiler
#module
Powershellgallery
PSProfiler 1.0.3.0
Measure the execution of noscript statements in a noscript.
📦 New version of NetworkingDsc resource
The PowerShell PSDSC module Networking v8.0.0 was just released with fixes to NetBios multi-adapter support and move to use shared
https://www.powershellgallery.com/packages/NetworkingDsc/8.0.0
#DSC
The PowerShell PSDSC module Networking v8.0.0 was just released with fixes to NetBios multi-adapter support and move to use shared
https://www.powershellgallery.com/packages/NetworkingDsc/8.0.0
#DSC
Powershellgallery
NetworkingDsc 8.0.0
DSC resources for configuring settings related to networking.
⛳ Code Golf now supports PowerShell
Code Golf is a game designed to let you show off your code-fu by solving problems in the least number of characters.
https://code.golf/
#game
Code Golf is a game designed to let you show off your code-fu by solving problems in the least number of characters.
https://code.golf/
#game
📚 Native Commands in PowerShell - A New Approach
Reading time: 15 min
https://devblogs.microsoft.com/powershell/native-commands-in-powershell-a-new-approach/
Reading time: 15 min
https://devblogs.microsoft.com/powershell/native-commands-in-powershell-a-new-approach/
Microsoft News
Native Commands in PowerShell – A New Approach
In this two part blog post I’m going to investigate how PowerShell can take better advantage of native executables. In the first post, I’m going to discuss a few of the ways that PowerShell can better incorporate native executables into our object oriented…
📌4 ways to send PowerShell output to null
#oneline
1..1000 | Out-Null[Void]$(1..1000)$(1..1000) > $null$null = $(1..1000)#oneline
🎬 PowerShell 7 New Feature: ForEach-Object -Parallel
https://youtu.be/coEaJsBdwM0
#video
$logNames | ForEach-Object -Parallel { Get-WinEvent -LogName $_ -MaxEvents 10} -ThrottleLimit 5https://youtu.be/coEaJsBdwM0
#video
YouTube
PowerShell Parallel processing | Richard Siddaway | PSDayUK 2019
Windows PowerShell uses workflows to achieve parallel processing but PowerShell core doesn't support workflows. This session will work through the options available to you, explain how they work and finish with some recommendations for how you approach working…