📦 Introducing the Universal Print PowerShell module
The UniversalPrintManagement PowerShell module is designed for managing and administrating Universal Print resources from the command line. Use this module when you want to build automated tools.
https://techcommunity.microsoft.com/t5/universal-print-blog/introducing-the-universal-print-powershell-module/ba-p/1472607
Documentation:
https://docs.microsoft.com/en-us/universal-print/fundamentals/universal-print-powershell
#module #print
The UniversalPrintManagement PowerShell module is designed for managing and administrating Universal Print resources from the command line. Use this module when you want to build automated tools.
https://techcommunity.microsoft.com/t5/universal-print-blog/introducing-the-universal-print-powershell-module/ba-p/1472607
Documentation:
https://docs.microsoft.com/en-us/universal-print/fundamentals/universal-print-powershell
#module #print
TECHCOMMUNITY.MICROSOFT.COM
Introducing the Universal Print PowerShell module
In an effort to simplify administrative activities and reduce manual interactions with the Universal Print online management portal, we now offer a PowerShell module, which uses the Graph API, you can use to manage some of your Universal Print resources.…
🏆 Iron Scripter - A PowerShell Dialer Challenge
There's an IronScripter PowerShell challenge for you.
https://ironnoscripter.us/text-me-a-powershell-dialer-challenge
#challenge
There's an IronScripter PowerShell challenge for you.
https://ironnoscripter.us/text-me-a-powershell-dialer-challenge
#challenge
❗ 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