PowerShell
827 subscribers
214 photos
4 videos
1 file
802 links
Task automation and configuration management framework #PowerShell
Download Telegram
PowerShell pinned a photo
๐Ÿ“˜ Learn how to use Microsoft Graph with PowerShell or Graph Explorer

https://www.larsinus.com/?p=216

#Graph
๐Ÿ“ฆ PSProfiler

A great tool that will measure the execution time of each line of your script.

This measures the script block and returns the times executed for each line in the script block.

https://www.powershellgallery.com/packages/PSProfiler

#module
๐Ÿ“˜ Don Jones' PowerShell 4N00bs [Free]

#ebook
๐Ÿ“ฆ 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
So $true

#fun
โ›ณ 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
๐Ÿ“Œ Parse Email Address

[System.Net.Mail.MailAddress]"Bill.Gates@microsoft.com"

#oneline
๐Ÿ“Œ4 ways to send PowerShell output to null

1..1000 | Out-Null
[Void]$(1..1000)
$(1..1000) > $null
$null = $(1..1000)

#oneline
๐Ÿ“˜ A Blogger's Guide to Getting Started with PowerShell 7 [free]

#ebook