Enable BitLocker with PowerShell
By: Surender Kumar
BitLocker is a volume encryption technology that was first introduced in Windows Vista and Windows Server 2008. Like other Microsoft products, it also suffers from certain glitches, but many people around the globe rely on BitLocker Drive Encryption (BDE) to protect their data at rest.
Link
By: Surender Kumar
BitLocker is a volume encryption technology that was first introduced in Windows Vista and Windows Server 2008. Like other Microsoft products, it also suffers from certain glitches, but many people around the globe rely on BitLocker Drive Encryption (BDE) to protect their data at rest.
Link
👍1
Assigning Permissions for Apps to Use the Microsoft Teams PowerShell Module
By: Tony Redmond
Before an app or an Azure Automation account can use the Teams PowerShell cmdlets in a noscript or runbook, it must have the permission to act as an administrator. In this article, we cover how to assign the necessary role to a service principal.
Link
By: Tony Redmond
Before an app or an Azure Automation account can use the Teams PowerShell cmdlets in a noscript or runbook, it must have the permission to act as an administrator. In this article, we cover how to assign the necessary role to a service principal.
Link
Office 365 for IT Pros
Assigning the Teams Administrator Permission to Apps
Apps that execute in the background, including Azure Automation runbooks, need the Teams administrator permission before they can run Teams cmdlets.
Today's cmdlet ‣ Split-Path
Returns the specified part of a path.
Example's Remarks:
• This command determines whether the path is relative or absolute.
• In this case, because the path is relative to the current folder, which is represented by a dot (`.`), it returns `$False`.
#tutorial
Returns the specified part of a path.
Example's Remarks:
• This command determines whether the path is relative or absolute.
• In this case, because the path is relative to the current folder, which is represented by a dot (`.`), it returns `$False`.
#tutorial
👍2
PowerShell Unplugged 2022 Edition
By: Thomas Maurer
April Edwards and I had the chance to host the PowerShell Unplugged 2022 Edition and the video is now available on YouTube! In the PowerShell Unplugged 2022 Edition we talked to the PowerShell product group at Microsoft to learn more about PowerShell 7, secret management, PowerShell Crescendo, Remoting, Predictive IntelliSense, VS Code, the roadmap, and .
Link
By: Thomas Maurer
April Edwards and I had the chance to host the PowerShell Unplugged 2022 Edition and the video is now available on YouTube! In the PowerShell Unplugged 2022 Edition we talked to the PowerShell product group at Microsoft to learn more about PowerShell 7, secret management, PowerShell Crescendo, Remoting, Predictive IntelliSense, VS Code, the roadmap, and .
Link
Thomas Maurer
PowerShell Unplugged 2022 Edition
April Edwards and I had the chance to host the PowerShell Unplugged 2022 Edition and the video is now available on YouTube! In the PowerShell Unplugged 2022 Edition we talked to the PowerShell product group at Microsoft to learn more about PowerShell 7, secret…
👍2
Today's tip ‣ Basic concepts: Error handling
”An error falls into one of two categories. Either it terminates the operation (a terminating error) or it doesn't (a non-terminating error). With a terminating error, the error is recorded and the operation stops. With a non-terminating error, the error is recorded and the operation continues.”
#tip
”An error falls into one of two categories. Either it terminates the operation (a terminating error) or it doesn't (a non-terminating error). With a terminating error, the error is recorded and the operation stops. With a non-terminating error, the error is recorded and the operation continues.”
#tip
Swiss PowerShell in Bern
By: Swiss PowerShell User Group
Tuesday, November 22, 2022 at 5:00 PM CET
Link
By: Swiss PowerShell User Group
Tuesday, November 22, 2022 at 5:00 PM CET
Link
Meetup
Swiss PowerShell in Bern, Tue, Nov 22, 2022, 5:00 PM | Meetup
The Swiss PowerShell User Group is back for an in-person event!
Make sure you do RSVP if you are interested as we need to communicate the numbers to the venue.
There will
Make sure you do RSVP if you are interested as we need to communicate the numbers to the venue.
There will
Today's cmdlet ‣ Set-Location
Sets the current working location to a specified location.
Example's Remarks:
• This command sets the current location to the root of the `HKLM:` drive.
#tutorial
Sets the current working location to a specified location.
Example's Remarks:
• This command sets the current location to the root of the `HKLM:` drive.
#tutorial
👍1
Query Azure AD logs with KQL from Powershell
By: Stian A. Strysse
Kusto Query Language (KQL) is a powerfull tool to query Azure AD log entries from Log Anayltics in Azure. See how you can query log data using Powershell.
Link
By: Stian A. Strysse
Kusto Query Language (KQL) is a powerfull tool to query Azure AD log entries from Log Anayltics in Azure. See how you can query log data using Powershell.
Link
LearningByDoing.cloud
Query Azure AD logs with KQL from Powershell
Kusto Query Language (KQL) is a powerfull tool to query Azure AD log entries from Log Anayltics in Azure. See how you can query log data using Powershell.
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