Building PowerShell Azure Functions with VS Code [Series]
By: Adam Bertram
Running PowerShell in Azure Functions gives your noscripts infinite resources and flexibility. Learn how to cloudify your PowerShell noscripts with Azure Functions!
Link
By: Adam Bertram
Running PowerShell in Azure Functions gives your noscripts infinite resources and flexibility. Learn how to cloudify your PowerShell noscripts with Azure Functions!
Link
ATA Learning
Building PowerShell Azure Functions with VS Code [Series]
Running PowerShell in Azure Functions gives your noscripts infinite resources and flexibility. Learn how to cloudify your PowerShell noscripts with Azure Functions!
Release 1.1.6 SailPoint IdentityNow PowerShell Module
By: Darren Robinson
I've just published v1.1.6 of the SailPoint IdentityNow PowerShell Module to both GitHub and the PowerShell Gallery. Release 1.1.6 of the SailPoint IdentityNow PowerShell Module is the result of updates by Sean McGovern, Yannick Beot, David Minnelli and myself.
Link
By: Darren Robinson
I've just published v1.1.6 of the SailPoint IdentityNow PowerShell Module to both GitHub and the PowerShell Gallery. Release 1.1.6 of the SailPoint IdentityNow PowerShell Module is the result of updates by Sean McGovern, Yannick Beot, David Minnelli and myself.
Link
darrenjrobinson - Bespoke Identity and Access Management Solutions
Release 1.1.6 SailPoint IdentityNow PowerShell Module - darrenjrobinson - Bespoke Identity and Access Management Solutions
Release 1.1.6 SailPoint IdentityNow PowerShell Module with bugfixes, new cmdlets and updates to older cmdlets for V3 APIs.
Today's cmdlet ‣ Get-ChildItem
Gets the items and child items in one or more specified locations.
Example's Remarks:
• The `Get-ChildItem` cmdlet uses the Path parameter to specify the directory `C:\Test\Logs`.
• The Exclude parameter uses the asterisk (`*`) wildcard to specify any files or directories that begin with A or a are excluded from the output.
#tutorial
Gets the items and child items in one or more specified locations.
Example's Remarks:
• The `Get-ChildItem` cmdlet uses the Path parameter to specify the directory `C:\Test\Logs`.
• The Exclude parameter uses the asterisk (`*`) wildcard to specify any files or directories that begin with A or a are excluded from the output.
#tutorial
Two Exchange Server vulns veer dangerously close to ProxyShell
By: Angela Gunn
A chained pair of vulnerabilities, plus PowerShell, affects the Microsoft messaging platform well in advance of Patch Tuesday; Sophos customers are protected
Link
By: Angela Gunn
A chained pair of vulnerabilities, plus PowerShell, affects the Microsoft messaging platform well in advance of Patch Tuesday; Sophos customers are protected
Link
Sophos News
Two Exchange Server vulns veer dangerously close to ProxyShell
A chained pair of vulnerabilities, plus PowerShell, affects the Microsoft messaging platform well in advance of Patch Tuesday; Sophos customers are protected
Configure Windows Firewall Rules For Remote Access | PowerShell
By: Mohammed Shamim
Suppose, your firewall is enabled on your Windows server, but you want to access your server using 'Remote Desktop'
Link
By: Mohammed Shamim
Suppose, your firewall is enabled on your Windows server, but you want to access your server using 'Remote Desktop'
Link
Medium
Configure Windows Firewall Rules For Remote Access | PowerShell
Suppose, your firewall is enabled on your Windows server, but you want to access your server using “Remote Desktop”
👍1
Azure AD Exporter
By: Microsoft
The Azure AD Exporter is a PowerShell module that allows you to export your Azure AD and Azure AD B2C configuration settings to local .json files.
Link
By: Microsoft
The Azure AD Exporter is a PowerShell module that allows you to export your Azure AD and Azure AD B2C configuration settings to local .json files.
Link
GitHub
GitHub - microsoft/azureadexporter: PowerShell module to export a local copy of all Azure Active Directory configuration settings…
PowerShell module to export a local copy of all Azure Active Directory configuration settings and objects. - GitHub - microsoft/azureadexporter: PowerShell module to export a local copy of all Azur...
PSScriptAnalyzer (PSSA) 1.21.0 has been released
By: Jim Truher
Announcing the release of PSScriptAnalyzer 1.21
Link
By: Jim Truher
Announcing the release of PSScriptAnalyzer 1.21
Link
PowerShell Team
PSScriptAnalyzer (PSSA) 1.21.0 has been released
Announcing the release of PSScriptAnalyzer 1.21
Nightmare Fuel with I am Jakoby
By: The Powershell Podcast
In this episode, we talk with ethical hacker I am Jakoby who gives us insights into the many ways someone can get access to your systems. We talked about how he started his journey into ethical hacking, and the support he got when he submitted for hak5.
Link
By: The Powershell Podcast
In this episode, we talk with ethical hacker I am Jakoby who gives us insights into the many ways someone can get access to your systems. We talked about how he started his journey into ethical hacking, and the support he got when he submitted for hak5.
Link
Podbean
Nightmare Fuel with I am Jakoby | The PowerShell Podcast
In this episode, we talk with ethical hacker I am Jakoby who gives us insights into the many ways someone can get access to your systems. We talked about how he started his journey into ethical hacking, and the support he got when he submitted for hak5. …
👍1
Today's cmdlet ‣ New-Service
Creates a new Windows service.
Example's Remarks:
• This command uses `Get-CimInstance` to get the Win32_Service object for the new service.
• This object includes the start mode and the service denoscription.
#tutorial
Creates a new Windows service.
Example's Remarks:
• This command uses `Get-CimInstance` to get the Win32_Service object for the new service.
• This object includes the start mode and the service denoscription.
#tutorial
👍2
Today's tip ‣ Basic concepts: Scopes
”Unless dot source notation is used, each of the following creates a new scope:
- A noscript file
- A noscript block
- A function or filter”
#tip
”Unless dot source notation is used, each of the following creates a new scope:
- A noscript file
- A noscript block
- A function or filter”
#tip
CodeConversion
By: Ironman Software, LLC
Orginally a feature of PowerShell Pro Tools, this module provides the ability to convert between C# and PowerShell. No license required.
Link
By: Ironman Software, LLC
Orginally a feature of PowerShell Pro Tools, this module provides the ability to convert between C# and PowerShell. No license required.
Link
GitHub
GitHub - ironmansoftware/code-conversion: Code conversion command line tool for PowerShell and C#
Code conversion command line tool for PowerShell and C# - ironmansoftware/code-conversion
👍2
Today's cmdlet ‣ Disable-PSBreakpoint
Disables the breakpoints in the current console.
Example's Remarks:
• The `Set-PSBreakpoint` cmdlet creates a breakpoint on the `$Name` variable in the `Sample.ps1` noscript and saves the breakpoint object in the `$B` variable.
• The `Disable-PSBreakpoint` cmdlet disables the new breakpoint.
• It uses a pipeline operator (`|`) to send the breakpoint object in `$B` to the `Disable-PSBreakpoint` cmdlet.
#tutorial
Disables the breakpoints in the current console.
Example's Remarks:
• The `Set-PSBreakpoint` cmdlet creates a breakpoint on the `$Name` variable in the `Sample.ps1` noscript and saves the breakpoint object in the `$B` variable.
• The `Disable-PSBreakpoint` cmdlet disables the new breakpoint.
• It uses a pipeline operator (`|`) to send the breakpoint object in `$B` to the `Disable-PSBreakpoint` cmdlet.
#tutorial
Convert to and from Windows and Unix timestamps with PowerShell
By: Darren Robinson
In this post I detail a module I've just published that is another of those I've done this before, but how do I find it again moments. Converting from Windows and Unix timestamps with PowerShell.
Link
By: Darren Robinson
In this post I detail a module I've just published that is another of those I've done this before, but how do I find it again moments. Converting from Windows and Unix timestamps with PowerShell.
Link
darrenjrobinson - Bespoke Identity and Access Management Solutions
Convert to and from Windows and Unix timestamps with PowerShell - darrenjrobinson - Bespoke Identity and Access Management Solutions
A PowerShell module to convert to and from Windows and Unix timestamps from DateTime objects relative to local time or Universal Time (UTC)
Lessons Learned from Using Azure Automation with PowerShell Scripts
By: Tony Redmond
I've spent some time investigating Azure Automation PowerShell recently. In this article, I discuss three learnings that might be of interest to others. Debugging, cost, and tracking the use of Azure Automation PowerShell might not interest everyone, but they've certainly helped me to understand how the platform works.
Link
By: Tony Redmond
I've spent some time investigating Azure Automation PowerShell recently. In this article, I discuss three learnings that might be of interest to others. Debugging, cost, and tracking the use of Azure Automation PowerShell might not interest everyone, but they've certainly helped me to understand how the platform works.
Link
Office 365 for IT Pros
3 Azure Automation PowerShell Learnings and Experiences
I've spent some time investigating Azure Automation PowerShell recently. In this article, I discuss three learnings that might be of interest to others.
Write great AWS Lambda PowerShell functions
By: Alex Neihaus
In this post, I share some tips I use when I write AWS Lambda PowerShell functions. You can find lots of help writing .Net end user functions for Lambda. By end user, I mean things that are part of an application system, like kicking off Glue jobs, working with Redshift and so on.
Link
By: Alex Neihaus
In this post, I share some tips I use when I write AWS Lambda PowerShell functions. You can find lots of help writing .Net end user functions for Lambda. By end user, I mean things that are part of an application system, like kicking off Glue jobs, working with Redshift and so on.
Link
Thinking aloud
Thinking aloud | Write great AWS Lambda PowerShell functions
How to write great Lambda functions in PowerShell
Today's cmdlet ‣ Remove-Item
Deletes the specified items.
Example's Remarks:
• In the `Get-ChildItem` command, Path has a value of (`*`), which represents the contents of the current folder.
• It uses Include to specify the CSV file type, and it uses Recurse to make the retrieval recursive.
• If you try to specify the file type the path, such as `-Path *.csv`, the cmdlet interprets the subject of the search to be a file that has no child items, and Recurse fails.
#tutorial
Deletes the specified items.
Example's Remarks:
• In the `Get-ChildItem` command, Path has a value of (`*`), which represents the contents of the current folder.
• It uses Include to specify the CSV file type, and it uses Recurse to make the retrieval recursive.
• If you try to specify the file type the path, such as `-Path *.csv`, the cmdlet interprets the subject of the search to be a file that has no child items, and Recurse fails.
#tutorial
👍1
Invoke-AKSH and easily manage your local lab
By: Uday Mittal
Having worked on AKSH (my Discord bot) and witnessing how easy it made deploying and managing a lab on AWS, I wanted something similar for my local lab as well. On my local machines I use VMWare Workstation to create and manage virtual labs. Even though it has an intuitive GUI, it lacks a mechanism to perform actions (start, stop, snapshot, revert etc.) on multiple virtual machines via single click (maybe that's where vSphere comes in!). However, to compensate for that, it exposes a command line interface (vmrun.exe) that can aid in automating actions on multiple virtual machines.
Link
By: Uday Mittal
Having worked on AKSH (my Discord bot) and witnessing how easy it made deploying and managing a lab on AWS, I wanted something similar for my local lab as well. On my local machines I use VMWare Workstation to create and manage virtual labs. Even though it has an intuitive GUI, it lacks a mechanism to perform actions (start, stop, snapshot, revert etc.) on multiple virtual machines via single click (maybe that's where vSphere comes in!). However, to compensate for that, it exposes a command line interface (vmrun.exe) that can aid in automating actions on multiple virtual machines.
Link