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
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
Podbean
Make More Modules with Adam Bacon | 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…
👍1
BioNameGenerator
By: Davi Marcon
A name generator for projects, versions and other stuff written in powershell
Link
By: Davi Marcon
A name generator for projects, versions and other stuff written in powershell
Link
Powershellgallery
BioNameGenerator 1.0.4
A name generator for projects, versions and other stuff written in powershell
👍1
DFIR4vSphere
By: ANSSI
The DFIR4vSphere PowerShell module collects logs and forensics artefacts on both ESXi hosts and the vCenter console.
Link
By: ANSSI
The DFIR4vSphere PowerShell module collects logs and forensics artefacts on both ESXi hosts and the vCenter console.
Link
GitHub
GitHub - ANSSI-FR/DFIR4vSphere: Powershell module for VMWare vSphere forensics
Powershell module for VMWare vSphere forensics. Contribute to ANSSI-FR/DFIR4vSphere development by creating an account on GitHub.
PowerShell Extension for Visual Studio Code July 2022 Update
By: Steve Lee
We are excited to announce that the July update to the PowerShell Extension for Visual Studio Code
Link
By: Steve Lee
We are excited to announce that the July update to the PowerShell Extension for Visual Studio Code
Link
Microsoft News
PowerShell Extension for Visual Studio Code July 2022 Update
We are excited to announce that the July update to the PowerShell Extension for Visual Studio Code is now available on the extension marketplace. This release renames the “PowerShell Integrated Console” to the “PowerShell Extension Terminal” to align with…
👍2
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
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
PowerShell is fun :)
PowerShell is fun :)Report on Active Directory OU permissions using PowerShell
For one of our customers, we are working on restricting permissions of admin accounts by implementing Role Based Access and delegating permissions to Organizational Units (OUs). But one of the firs…
👍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
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
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
Practical 365
Alas Kaizala, All is Lost
On August 26, Microsoft announced that they will retire Kaizala in August 2023. Kaizala retirement is not big news as it's been coming for a while.
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
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
Docs
Teams PowerShell Module - Supported Versions - Microsoft Teams
Learn about versions supported of the Teams PowerShell Module, used for administration of Microsoft Teams.
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
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
SID-500.COM
PowerShell: Decrypt a Secure String
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. …
👍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
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
Report on Active Directory Container permissions using PowerShell
By: Harm Veenstra
In a previous blog post (Link), I showed a way to create a report on OU (Organizational Unit) permissions. One of the replies I got about that was: How about the Container permissions, those are important too 🙂 And that's correct, they are! In this blog post, I will show you how to create a report on those (Script is based on the OU report)
Link
By: Harm Veenstra
In a previous blog post (Link), I showed a way to create a report on OU (Organizational Unit) permissions. One of the replies I got about that was: How about the Container permissions, those are important too 🙂 And that's correct, they are! In this blog post, I will show you how to create a report on those (Script is based on the OU report)
Link
PowerShell is fun :)
PowerShell is fun :)Report on Active Directory Container permissions using PowerShell
In a previous blog post (Link), I showed a way to create a report on OU (Organizational Unit) permissions. One of the replies I got about that was: How about the Container permissions? Those are im…
Windows Defender Management using PowerShell
By: Faris Malaeb
Microsoft has invested heavily in Microsoft Defender Antivirus (known as Windows Defender) over the years to reduce the attack surface on the Windows environment against viruses and spyware, and ransomware.
Link
By: Faris Malaeb
Microsoft has invested heavily in Microsoft Defender Antivirus (known as Windows Defender) over the years to reduce the attack surface on the Windows environment against viruses and spyware, and ransomware.
Link
Faris Malaeb
Windows Defender Management using PowerShell
Learn how to configure Windows Defender using PowerShell with examples and pictures, applicable to all versions of Windows.
Enable PowerShell remoting on ArcoLinux
By: Mike F Robbins
PowerShell is a cross-platform noscripting language that runs on Windows, Linux, and macOS. ArcoLinux is a rolling release Linux distribution based on Arch Linux.
Link
By: Mike F Robbins
PowerShell is a cross-platform noscripting language that runs on Windows, Linux, and macOS. ArcoLinux is a rolling release Linux distribution based on Arch Linux.
Link
Forensic cases suited for using PowerShell
By: Agata Staszelis
This video tutorial shows forensic cases suited for using PowerShell.
Link
By: Agata Staszelis
This video tutorial shows forensic cases suited for using PowerShell.
Link
eForensics
Forensic cases suited for using PowerShell | PowerShell in Digital Forensics [FREE COURSE CONTENT] - eForensics
This video tutorial shows forensic cases suited for using PowerShell. It is a part of our online course 'PowerShell in …
Passion + PowerShell = Profit with David Hall
By: The Powershell Podcast
In this episode, we cover a lot of ground. We cover how PowerShell has helped our careers, from the beginning roots to the current day. David covers how he got his start, the challenges he faced along the way, and how each opportunity to teach came up. We explore the origins of PSAffirmations and the role that affirmations had when dealing with Imposter Syndrome. Security is David's specialty, so we spent some time picking David's brain about the current state of security and where attention is needed. We discuss whether passion can be taught or if it already must be there. Last, Jordan lets slip that he hates Christmas.
Link
By: The Powershell Podcast
In this episode, we cover a lot of ground. We cover how PowerShell has helped our careers, from the beginning roots to the current day. David covers how he got his start, the challenges he faced along the way, and how each opportunity to teach came up. We explore the origins of PSAffirmations and the role that affirmations had when dealing with Imposter Syndrome. Security is David's specialty, so we spent some time picking David's brain about the current state of security and where attention is needed. We discuss whether passion can be taught or if it already must be there. Last, Jordan lets slip that he hates Christmas.
Link
Podbean
Passion + PowerShell = Profit with David Hall | The PowerShell Podcast
In this episode, we cover a lot of ground. We cover how PowerShell has helped our careers, from the beginning roots to the current day. David covers how he got his start, the challenges he faced along the way, and how each opportunity to teach came up. We…
Today's cmdlet: Disable-PSBreakpoint
Disables the breakpoints in the current console.
Example's Remarks:
• It uses the `Disable-PSBreakpoint` cmdlet to disable the breakpoint.
• The value of the Breakpoint parameter is a `Set-PSBreakpoint` command that sets a new breakpoint, generates a breakpoint object, and saves the object in the `$B` variable.
#tutorial
Disables the breakpoints in the current console.
Example's Remarks:
• It uses the `Disable-PSBreakpoint` cmdlet to disable the breakpoint.
• The value of the Breakpoint parameter is a `Set-PSBreakpoint` command that sets a new breakpoint, generates a breakpoint object, and saves the object in the `$B` variable.
#tutorial
👍1
Questions from a PowerShell.org Forums User
By: Dave Carroll
A PowerShell.org Forums user asked me a few questions about my PowerShell journey and here are my answers.
Link
By: Dave Carroll
A PowerShell.org Forums user asked me a few questions about my PowerShell journey and here are my answers.
Link
Dave's Technical Journal
Questions from a PowerShell.org Forums User
A PowerShell.org Forums user asked me a few questions about my PowerShell journey and here are my answers.
👍1
PSA: If you run Windows 10 and use WinSCP to transfer files to Linux hosts
By: Christopher Hart
you can ditch WinSCP in favor of the native PowerShell or Command Prompt SCP implementation!
Link
By: Christopher Hart
you can ditch WinSCP in favor of the native PowerShell or Command Prompt SCP implementation!
Link
Easy removal of preinstalled bloatware using PowerShell
By: Ondrej Sebela
Recently I came into a situation where I needed to provision new Dell Precision laptops for our employees. This laptop comes with a lot of preinstalled applications (bloatware) so I was looking for some simple but efficient way to silently remove them. And by efficient I mean avoiding the need to manually find an uninstall command for each preinstalled application.
Link
By: Ondrej Sebela
Recently I came into a situation where I needed to provision new Dell Precision laptops for our employees. This laptop comes with a lot of preinstalled applications (bloatware) so I was looking for some simple but efficient way to silently remove them. And by efficient I mean avoiding the need to manually find an uninstall command for each preinstalled application.
Link
Do it PowerShell way :)
Easy removal of preinstalled bloatware using PowerShell
Recently I came into a situation where I needed to provision new Dell Precision laptops for our employees. This laptop comes with a lot of preinstalled applications (bloatware) so I was looking for some simple but efficient way to silently remove the...
🔥1