PowerShell – Telegram
PowerShell
820 subscribers
214 photos
4 videos
1 file
802 links
Task automation and configuration management framework #PowerShell
Download Telegram
PowerShell Community Textbook Update
By: u/PowerShellMichael

Gday everyone! I'm really sorry about the delay with the release of the paper-back editions. We are having amazon issues. At the moment I'm exploring other options to get a paperback so I can conduct a final review.
Link
Cool features in Visual Studio 2022
By: Mads Kristensen

A few weeks ago, I gave a presentation at a conference about cool new features in Visual Studio 2022. It was a pre-recorded presentation, so I was able to do final edits to the video before sending it to the conference organizers.
Link
10 Best Powershell Courses & Tutorials – Learn Powershell Online
By: Coursesity Team

Highly curated best Powershell tutorials for beginners. start with the best Powershell tutorials and learn Powershell as beginners.
Link
👍1
Today's cmdlet ‣ Set-Service
Starts, stops, and suspends a service, and changes its properties.

Example's Remarks:
• `Get-Service` uses the Name parameter to specify the service, Schedule .
• The object is stored in the variable, `$S`.
• `Set-Service` uses the InputObject parameter and specifies the object stored `$S`.
• The Status parameter sets the service to Stopped .

#tutorial
Security of app registration in Azure Active Directory
By: Serkar

Originally, I thought about writing an article about how to get SharePoint list items with Microsoft Graph API by PowerShell. But before doing this, I thought you should first need to know something about app registration in Azure Active Directory in this context. App registrations are really powerful, as you can raise any request if
Link
UserAccountControl attribute: Checking and configuring security settings for Active Directory accounts
By: Wolfgang Sommergut

The UserAccountControl attribute can be used to configure several account settings in Active Directory. This applies, for example, to the expiration date of passwords or to Kerberos delegation. An AD audit should check this attribute regularly. This can be done using PowerShell, and there is a cmdlet for changing flags.
Link
Today's cmdlet ‣ Format-Custom
Uses a customized view to format the output.

Example's Remarks:
• This command formats information about the Winlogon process in an alternate customized view.
• Because the command does not use the View parameter, `Format-Custom` uses a default custom view to format the data.

#tutorial
Working with Different PowerShell Wildcard Expressions
By: Brien Posey

In PowerShell, a wildcard can be used to take the place of one or more characters. This is especially useful when working with variables or when manipulating text strings. In this article, I'll discuss some of the many things that you can do with wildcards in PowerShell.
Link
Today's tip ‣ Lexical structure: Variables

”Variables can also be defined by the cmdlet New-Variable.”

#tip
Today's cmdlet ‣ New-Service
Creates a new Windows service.

Example's Remarks:
• This command creates a service named TestService.
• It uses the parameters of `New-Service` to specify a denoscription, startup type, and display name for the new service.

#tutorial
AzOps v1.9.2
By: Customer Architecture Team (CAT)

This PowerShell module provides the ability to deploy Resource Templates & Bicep files at all Azure scope levels. To provide this functionality the multiple scopes within Azure Resource Manager are represented (example below) within Git. Using directories and files, templates can be deployed (Push) at various scopes whilst also exporting (Pull) composite templates from ARM and placing them within the repository.
Link
Retrieve Coinmarketcap information using PowerShell
By: Harm Veenstra

If you're into Crypto and would like to see the latest price of your precious coin, then perhaps this is a blog post for you 🙂 In this blog post, I will show you a way how you can use the API from Coinmarketcap to show you the latest stats in every newly started PowerShell session.
Link
Using PSScriptAnalyzer to optimize your PowerShell noscripts
By: Harm Veenstra

I use Visual Studio Code for writing PowerShell noscripts, which makes formatting and writing so much easier. Even though it shows you things that you shouldn't do, for example using aliases, you can get even more tips and hints to make your code even better. This blog post will show you how to use the PSScriptAnalyzer module which can give you some additional hints that Visual Studio Code doesn't show you.
Link
🔥1
A Beginners Guide To PowerShell New-Item
By: Nicholas Xuan Nguyen

Get started with PowerShell New-Item in this beginner's guide to creating new items and folders within PowerShell!
Link
👍1
PowerShell: Creating functions that accept Pipeline Input
By: Patrick Gruenauer

So you have already created a function and now you want to enable pipeline functionality? Yes? Then read on.
Link
🔥1
Back to Basics: The PowerShell Contains Operator
By: Nicholas Xuan Nguyen

Keep your PowerShell fundamentals strong with this tutorial on the PowerShell contains operator by ATA Learning!
Link
👍1
Announcing PowerShell Crescendo 1.1.0-preview01
By: Jason Helmick

This preview includes a new schema, support for argument value transformation, the ability to bypass the output handler, and improved error handling.
Link
👍1
Today's cmdlet ‣ Rename-Item
Renames an item in a PowerShell provider namespace.

Example's Remarks:
• This example attempts to rename the `project.txt` file in the current directory to `old-project.txt` in the `D:\Archive` directory.
• The result is the error shown in the output.

#tutorial
👍1