The Return of James Petty with James Petty
By: The Powershell Podcast
In this episode, we got to speak to James Petty, who is a little busy at the moment. Running Summit has become so easy for him that he added both a new kid and a new job into the mix this year. We talk all about Summit, PowerShell, how many first-time speakers submitted to speak, and the future of OnRamp. Finally, we learn about new books to help you along your PowerShell journey.
Link
By: The Powershell Podcast
In this episode, we got to speak to James Petty, who is a little busy at the moment. Running Summit has become so easy for him that he added both a new kid and a new job into the mix this year. We talk all about Summit, PowerShell, how many first-time speakers submitted to speak, and the future of OnRamp. Finally, we learn about new books to help you along your PowerShell journey.
Link
Podbean
The Return of James Petty with James Petty | The PowerShell Podcast
In this episode, we got to speak to James Petty, who is a little busy at the moment. Running Summit has become so easy for him that he added both a new kid and a new job into the mix this year. We talk all about Summit, PowerShell, how many first-time speakers…
RTFM with Steven Judd
By: The Powershell Podcast
In this episode, we have our first returning guest, Steven Judd! Steven gets things started off right by talking about the process of turning a command into a function and how PowerShell provides value each step of the way. Steven convinces Jordan that RegEx is powerful and shares some tips for using it more. We learn about living off the land, how solving a problem can help you understand the technology that you are creating a solution for, and the three most important PowerShell commands. All this, and more, in this wisdom-infused episode.
Link
By: The Powershell Podcast
In this episode, we have our first returning guest, Steven Judd! Steven gets things started off right by talking about the process of turning a command into a function and how PowerShell provides value each step of the way. Steven convinces Jordan that RegEx is powerful and shares some tips for using it more. We learn about living off the land, how solving a problem can help you understand the technology that you are creating a solution for, and the three most important PowerShell commands. All this, and more, in this wisdom-infused episode.
Link
Podbean
RTFM with Steven Judd | The PowerShell Podcast
Episode Summary:
In this episode, we have our first returning guest, Steven Judd! Steven gets things started off right by talking about the process of turning a command into a function and how PowerShell provides value each step of the way. Steven convinces…
In this episode, we have our first returning guest, Steven Judd! Steven gets things started off right by talking about the process of turning a command into a function and how PowerShell provides value each step of the way. Steven convinces…
Modern IT Automation with PowerShell
By: The DevOps Collective and Michael Zanatta
A PowerShell Textbook written by the community for the community!
Link
By: The DevOps Collective and Michael Zanatta
A PowerShell Textbook written by the community for the community!
Link
Leanpub
Modern IT Automation with PowerShell
Multiple Subject Matter Experts have teamed up to bring an in-depth textbook for students and professional PowerShell users.
Active Directory Infra check using PowerShell
By: Harm Veenstra
Some of our customers have an Active Directory environment that needs upgrading, to get a good overview of their environment I always check a lot of things before writing a report and a recommendation about which steps we need to take. In this blog post, I will show you a script that gathers information about the Active Directory Domain which saves a lot of command-line checking and starting up Management Consoles 😉
Link
By: Harm Veenstra
Some of our customers have an Active Directory environment that needs upgrading, to get a good overview of their environment I always check a lot of things before writing a report and a recommendation about which steps we need to take. In this blog post, I will show you a script that gathers information about the Active Directory Domain which saves a lot of command-line checking and starting up Management Consoles 😉
Link
PowerShell is fun :)
PowerShell is fun :)Active Directory Infra check using PowerShell
Some of our customers have an Active Directory environment that needs upgrading. To get a good overview of their environment, I always check many things before writing a report and a recommendation…
👍1
Synchronizing PowerShell scripts – control the flow
By: Wiktor Mrówczyński
Part 1 - Synchronizing PowerShell scripts - allow only one instance at a time Part 2 - Synchronizing PowerShell scripts - control the flow (this article) Intro In the last article I described how to ensure that only a single instance of your script runs at a time. Today is time for the second topic ...
Link
By: Wiktor Mrówczyński
Part 1 - Synchronizing PowerShell scripts - allow only one instance at a time Part 2 - Synchronizing PowerShell scripts - control the flow (this article) Intro In the last article I described how to ensure that only a single instance of your script runs at a time. Today is time for the second topic ...
Link
IT Constructors
Synchronizing PowerShell scripts – control the flow - IT Constructors
Synchronizing PowerShell scripts – control the flow, set how many instances can access resources like memory or I/O with Mutex and Semaphore.
Today's cmdlet ‣ Test-Connection
Sends ICMP echo request packets, or pings, to one or more computers.
Example's Remarks:
• `Test-Connection` uses the TargetName parameter to specify the Server01 computer.
• The IPv4 parameter specifies the protocol for the test.
#tutorial
Sends ICMP echo request packets, or pings, to one or more computers.
Example's Remarks:
• `Test-Connection` uses the TargetName parameter to specify the Server01 computer.
• The IPv4 parameter specifies the protocol for the test.
#tutorial
How to Execute PowerShell Azure Functions with HTTP Triggers
By: Adam Bertram
Learn how to execute and test Azure Functions in PowerShell via HTTP using both the Azure Portal and PowerShell's Invoke-RestMethod cmdlet.
Link
By: Adam Bertram
Learn how to execute and test Azure Functions in PowerShell via HTTP using both the Azure Portal and PowerShell's Invoke-RestMethod cmdlet.
Link
ATA Learning
How to Execute PowerShell Azure Functions with HTTP Triggers
Learn how to execute and test Azure Functions in PowerShell via HTTP using both the Azure Portal and PowerShell’s Invoke-RestMethod cmdlet.
Today's tip ‣ Lexical structure: Multiplier suffixes
”For convenience, integer and real literals can contain a numeric-multiplier, which indicates one of a set of commonly used powers of 10. numeric-multiplier can be written in any combination of upper- or lowercase letters.”
#tip
”For convenience, integer and real literals can contain a numeric-multiplier, which indicates one of a set of commonly used powers of 10. numeric-multiplier can be written in any combination of upper- or lowercase letters.”
kb = kilobyte (1024)
mb = megabyte (1024 x 1024)
gb = gigabyte (1024 x 1024 x 1024)
tb = terabyte (1024 x 1024 x 1024 x 1024)
pb = petabyte (1024 x 1024 x 1024 x 1024 x 1024)
#tip
Favorite PowerShell modules that I use
By: Harm Veenstra
During the course of time, you add modules to your system, some are crucial for the things you work on and some were used only once 😉 In this blog post, I will show you my current list of modules and tell you why I use(d) them...
Link
By: Harm Veenstra
During the course of time, you add modules to your system, some are crucial for the things you work on and some were used only once 😉 In this blog post, I will show you my current list of modules and tell you why I use(d) them...
Link
PowerShell is fun :)
PowerShell is fun :)Favorite PowerShell modules that I use
During the course of time, you add modules to your system, some are crucial for the things you work on and some were used only once ;) In this blog post, I will show you my current list of modules …
Microsoft.PowerPlatform.DevOps v2.0.134
By: Dylan Haskins and Eugene Van Staden
A Toolset for Implementing and Adopting a full ALM strategy for the Microsoft PowerPlatform.
Link
By: Dylan Haskins and Eugene Van Staden
A Toolset for Implementing and Adopting a full ALM strategy for the Microsoft PowerPlatform.
Link
Powershellgallery
Microsoft.PowerPlatform.DevOps 2.0.134
A Toolset for Implementing and Adopting a full ALM strategy for the Microsoft PowerPlatform.
Create a Windows 11 Multi-session golden image for Azure Virtual Desktop using Marketplace Image
By: Aresh Sarakari
Want to create a Windows 11 golden image for Azure Virtual Desktop (AVD) using a marketplace image using PowerShell? Check out this post by Aresh Sarakari on how you can do just that.
Link
By: Aresh Sarakari
Want to create a Windows 11 golden image for Azure Virtual Desktop (AVD) using a marketplace image using PowerShell? Check out this post by Aresh Sarakari on how you can do just that.
Link
AskAresh
PowerShell – Create a Windows 11 Multi-session golden image for Azure Virtual Desktop using Marketplace Image
Do you want to deploy an Azure Virtual Desktop – Host pools quickly and want a starting point for a golden image? Look no further in this blog post. I will show you how to create a golden ima…
Get-MgServicePrincipalPermission.ps1
By: Justin Grote
Get a list of application and delegated permissions for a service principal, similar to what the Azure Portal shows
Link
By: Justin Grote
Get a list of application and delegated permissions for a service principal, similar to what the Azure Portal shows
Link
Gist
Get a list of application and delegated permissions for a service principal, similar to what the Azure Portal shows
Get a list of application and delegated permissions for a service principal, similar to what the Azure Portal shows - Get-MgServicePrincipalPermission.ps1
Today's cmdlet ‣ Get-PSProvider
Gets information about the specified PowerShell provider.
Example's Remarks:
• This command displays a list of all available PowerShell providers.
#tutorial
Gets information about the specified PowerShell provider.
Example's Remarks:
• This command displays a list of all available PowerShell providers.
#tutorial
Practical Automation With Matthew Dowst
By: The Powershell Podcast
Shameless self promotion time! But seriously it was great talking with these guys. I hope to do it again in the future.
Link
By: The Powershell Podcast
Shameless self promotion time! But seriously it was great talking with these guys. I hope to do it again in the future.
Link
Podbean
Practical Automation With Matthew Dowst | The PowerShell Podcast
Episode Summary:
In this episode, we learn about taking the next step from being able to run and write PowerShell to implementing automation solutions in your environment. Matthew shares advice on how to approach automating tasks and shares what he’s learned…
In this episode, we learn about taking the next step from being able to run and write PowerShell to implementing automation solutions in your environment. Matthew shares advice on how to approach automating tasks and shares what he’s learned…
👍1
One of the coolest new enhancements in tab completion with PowerShell 7.3.0
By: Patrick Meinecke
is splat hashtable keys. HUGE props to MartinGC94 for this one
Link
By: Patrick Meinecke
is splat hashtable keys. HUGE props to MartinGC94 for this one
Link
Today's cmdlet ‣ Remove-ItemProperty
Deletes the property and its value from an item.
Example's Remarks:
• The first command uses the `Set-Location` cmdlet to change the current location to the HKEY_CURRENT_USER drive (`HKCU:`) and the `Software\MyCompany\MyApp` subkey.
#tutorial
Deletes the property and its value from an item.
Example's Remarks:
• The first command uses the `Set-Location` cmdlet to change the current location to the HKEY_CURRENT_USER drive (`HKCU:`) and the `Software\MyCompany\MyApp` subkey.
#tutorial
Create Your Own ChatGPT in 5 Minutes with PowerShell!
By: Caroline Chiari
ChatGPT is all the rage right now, but I've had my own ChatGPT in PowerShell for quite a while now, even before ChatGPT existed. In this video, I will show you how you can get access to your own ChatGPT from the PowerShell command line in less than 5 minutes, WITHOUT having to write a single line of code!!!
Link
By: Caroline Chiari
ChatGPT is all the rage right now, but I've had my own ChatGPT in PowerShell for quite a while now, even before ChatGPT existed. In this video, I will show you how you can get access to your own ChatGPT from the PowerShell command line in less than 5 minutes, WITHOUT having to write a single line of code!!!
Link
YouTube
Create Your Own ChatGPT in 5 Minutes with PowerShell! #ChatGPT #powershell #openai
ChatGPT is all the rage right now, but I've had my own ChatGPT in PowerShell for quite a while now, even before ChatGPT existed. In this video, I will show you how you can get access to your own #ChatGPT from the #PowerShell command line in less than 5 minutes…
Adding a Help Parameter to a Function
By: Tommy Maynard
I started writing a PowerShell function to replicate the work of an old executable called ICSWEEP. ICSWEEP 'is a command-line utility to clear the Temporary Internet Files Cache and/or the TEMP files folder of ALL user profiles that are NOT in use when this command is executed.' ICSWEEP Information.
Link
By: Tommy Maynard
I started writing a PowerShell function to replicate the work of an old executable called ICSWEEP. ICSWEEP 'is a command-line utility to clear the Temporary Internet Files Cache and/or the TEMP files folder of ALL user profiles that are NOT in use when this command is executed.' ICSWEEP Information.
Link
tommymaynard.com
Adding a Help Parameter to a Function - tommymaynard.com
Edit: There’s a quick addition at the bottom of this post. I tried something else, it worked, and so I decided to include it. I started writing a PowerShell function to replicate the work of an old executable called ICSWEEP. ICSWEEP “is a command-line utility…
👍1