PowerShell – Telegram
PowerShell
821 subscribers
214 photos
4 videos
1 file
802 links
Task automation and configuration management framework #PowerShell
Download Telegram
Upcoming breaking changes in Azure PowerShell
By: Azure PowerShell

Come see what need to fix before the next release
Link
👍2
Using REST APIs via PowerShell – Guy Leech
By: Bradford Cloud User Group

Our second session at the Bradford Cloud User Group July event was Guy Leech 'Using REST APIs via PowerShell. Whilst many PowerShell modules and SDKs are an alternative to calling REST APIs, calling them from PowerShell gives you platform independence & no pre-requisites which can be a barrier to adoption. This session shows how to use multiple vendor's REST APIs including Azure & once you know how to call one vendor's API, it's easy to use another's
Link
The Secret to Unleashing PowerShell GitHub Abilities
By: Bart Tacken

In this deep dive, learn how to use PowerShell GitHub abilities to take your workflow to the next level and automate everything!
Link
What should I be able to do with Powershell in order to feel comfortable labeling myself as proficient?
By: r/PowerShell

Another great topic and discussion from Reddit.
Link
What other languages do you use, and when do you pick them over PowerShell?
By: u/UntrustedProcess

Another great Reddit read
Link
Archive Module 2.0 Preview 1
By: Sydney Smith

We are excited to announce that the first preview of a rewrite of Microsoft.PowerShell.Archive, the module that lets you create and extract archives, is now available on the PowerShell Gallery.
Link
Create a TCP/UDP port listener using PowerShell
By: Harm Veenstra

One of our customers is securing his network and firewall changes were made that needed to be tested. In this case, the new servers were not deployed in that specific network yet. But... We did want to test the connections before deploying the servers 🙂 In this blog post, I will show you a way how to create listening ports on a machine in order to test the connection from another network using netcat on Linux or portqry on Windows.
Link
👍1
Microsoft Graph Support for SharePoint Online Tenant Settings
By: Tony Redmond

Despite being the two basic Microsoft 365 workloads, one of the notable gaps in Microsoft Graph API coverage has been administrative interfaces for SharePoint Online and Exchange Online. A small but valuable step in the right direction happened with the appearance of the settings resource type in the TenantAdmin namespace.
Link
👍1
Make More Modules with Adam Bacon
By: The Powershell Podcast

In this episode, we hear from someone whose career has grown alongside PowerShell's. Adam shares some of the challenges that he's experienced when automating business processes with PowerShell. Starting in the early days of PowerShell, Adam talks about that first experience where he saw the potential of PowerShell. We also spent some time talking about creating GUI applications in PowerShell. We talk about all this, and much more, in this episode.
Link
👍1
BioNameGenerator
By: Davi Marcon

A name generator for projects, versions and other stuff written in powershell
Link
👍1
Inspired to Share
By: Jeremie Hayter

This is why I love the PowerShell community
Link
👍1
Office 365 Offboarding Script
By: u/np05573

reclaim license, convert mailbox to shared, set OOO
Link
Report on Active Directory OU permissions using PowerShell
By: Harm Veenstra

For one of our customers we are working on restricting permissions of admin accounts by implementing Role Based Access and delegating permissions on Organizational Units (OU's). But one of the first questions was. What are the current permissions and what should we remove and where? In this blogpost I will show you a way to report on the current permissions so that you can remove them where they shouldn't be granted
Link
👍1
Today's cmdlet: Set-Service
Starts, stops, and suspends a service, and changes its properties.

Example's Remarks:
• `Get-Credential` prompts for a username and password, and stores the credentials in the `$credential` variable.
• `Set-Service` uses the Name parameter to specify the Schedule service.
• The Credential parameter uses the `$credential` variable and updates the Schedule service.

#tutorial
👍1
Alas Kaizala, All is Lost
By: Tony Redmond

On August 26, Microsoft announced that they will retire Kaizala in August 2023. The Kaizala retirement is not big news because it's been coming for a while. If you want to get ahead of the game, you can remove the Kaizala service plans from the Office 365 licenses assigned to user accounts. We explain how to do the job in an example PowerShell noscript.
Link
Microsoft Teams PowerShell Module 4.x.x is the only version supported now
By: Microsoft

Microsoft Teams PowerShell Module (TPM) versions in the 4.x.x series or later are the only versions supported now. All earlier versions are fully retired since June 15, 2022 & will stop working (Message center post for reference - MC350371).
Link
PowerShell: Decrypt a Secure String
By: Patrick Gruenauer

In this blog post I will carry out how to decrypt a secure string. A secure string is a string that is saved in a non-readable format to temporarily store passwords and strings. Let's start.
Link
👍1
Today's cmdlet: Get-PSDrive
Gets drives in the current session.

Example's Remarks:
• This command gets the D: drive on the computer.
• Note that the drive letter in the command is not followed by a colon.

#tutorial