🎬 Pester 5 looking back and forward
https://www.youtube.com/watch?v=ypRZ9d6tDD4&feature=youtu.be
#video
https://www.youtube.com/watch?v=ypRZ9d6tDD4&feature=youtu.be
#video
YouTube
Pester 5 looking back and forward
Pester 5 was recently released and brought a lot of changes. I will look at some of the most exciting features of Pester 5, such as test Discovery, debugging Mocks, and Diagnostic output. I will talk about the common gotchas that can catch you when you migrate…
🎬 Module Monday: pypsrp - Python PowerShell Remoting Protocol Client
https://www.youtube.com/watch?v=SD9lJ1cgGwA&feature=youtu.be
#video
https://www.youtube.com/watch?v=SD9lJ1cgGwA&feature=youtu.be
#video
YouTube
Module Monday: pypsrp - Python PowerShell Remoting Protocol Client
Module Monday is a video series where I go over a cool PowerShell module every Monday. This Monday is a little different. I looked at the Python PowerShell Remoting Protocol Client library. It's a Python package for managing Windows systems of PowerShell…
📌 Sanitize GUID's in documentation with PowerShell.
PS C:\> "0e53b2e7-cd7a-4f0f-a7f2-2f71353d7682" -replace "\w","0"00000000-0000-0000-0000-000000000000📘 Writing an Extension Vault for PowerShell SecretManagement
In this article, we create an extension vault that is backed by the open-source .NET database LiteDB.
https://adamtheautomator.com/writing-an-extension-vault-for-powershell-secretmanagement-preview-4/
In this article, we create an extension vault that is backed by the open-source .NET database LiteDB.
https://adamtheautomator.com/writing-an-extension-vault-for-powershell-secretmanagement-preview-4/
Adam the Automator
Writing an Extension Vault for PowerShell SecretManagement Preview 4
Learn how to build an extension vault using the PowerShell SecretManagement module, step-by-step with a great example!
❗ Example of usage 'FlagsAttribute' in Enum
FullAccess
https://stackoverflow.com/questions/8447/what-does-the-flags-enum-attribute-mean-in-c
PS C:\> [Flags()]>> enum AccessFlags>> {>> None = 0>> Execute = 1>> Write = 2>> Read = 4>> FullAccess = 7>> }PS C:\>PS C:\> [AccessFlags]$access = 'none'PS C:\> $access = 'Read'PS C:\> $accessReadPS C:\> $access = 'Write'PS C:\> $accessWritePS C:\> $access = 'Read,Write,Execute'PS C:\> $accessFullAccess
https://stackoverflow.com/questions/8447/what-does-the-flags-enum-attribute-mean-in-c
Stack Overflow
What does the [Flags] Enum Attribute mean in C#?
From time to time I see an enum like the following:
[Flags]
public enum Options
{
None = 0,
Option1 = 1,
Option2 = 2,
Option3 = 4,
Option4 = 8
}
I don't understand what exa...
[Flags]
public enum Options
{
None = 0,
Option1 = 1,
Option2 = 2,
Option3 = 4,
Option4 = 8
}
I don't understand what exa...
📚 pwshop: A PowerShell 101 Workshop
A self paced workshop to teach you the fundamentals of PowerShell and leave you ready to use those fundamentals in the prompt.
https://leanpub.com/c/pwshop
#free
A self paced workshop to teach you the fundamentals of PowerShell and leave you ready to use those fundamentals in the prompt.
https://leanpub.com/c/pwshop
#free
🎁 PowerZure
PowerShell Framework To Assess Azure Security.
https://www.kitploit.com/2020/11/powerzure-powershell-framework-to.html
PowerShell Framework To Assess Azure Security.
https://www.kitploit.com/2020/11/powerzure-powershell-framework-to.html
Kitploit
Kitploit – Maintenance in Progress
Kitploit is temporarily under maintenance. We’ll be back shortly with improvements.
This media is not supported in your browser
VIEW IN TELEGRAM
❗PSReadLine 2.2-beta.1 is out! This includes the new prediction listview.
https://www.powershellgallery.com/packages/PSReadLine/2.2.0-beta1
https://www.powershellgallery.com/packages/PSReadLine/2.2.0-beta1
📘 SecretManagement and SecretStore Updates
Two updated preview releases are now available on the PowerShell Gallery:
- SecretManagement preview5
- SecretStore preview3
https://devblogs.microsoft.com/powershell/secretmanagement-and-secretstore-updates-2/
Two updated preview releases are now available on the PowerShell Gallery:
- SecretManagement preview5
- SecretStore preview3
https://devblogs.microsoft.com/powershell/secretmanagement-and-secretstore-updates-2/
Microsoft News
SecretManagement and SecretStore Updates
Two updated preview releases are now available on the PowerShell Gallery: SecretManagement preview5 SecretStore preview3 Before installing these modules please uninstall the current preview versions of the modules and restart your PowerShell session. To install…
❗ Fixing help for the PSReadLine module
https://devblogs.microsoft.com/powershell/updating-help-for-the-psreadline-module/
https://devblogs.microsoft.com/powershell/updating-help-for-the-psreadline-module/
📌 PowerShell team Announcing PowerShell 7.1
- Github Repo
- Announcing PowerShell 7.1
- What's New in PowerShell 7.1
- Github Repo
- Announcing PowerShell 7.1
- What's New in PowerShell 7.1
GitHub
Release v7.1.0 Release of PowerShell · PowerShell/PowerShell
7.1.0 - 2020-11-11
Diff from 7.1.0-rc.2
Diff from 7.0.0
Engine Updates and Fixes
Fix a logic bug in MapSecurityZone (#13921) (Thanks @iSazonov!)
General Cmdlet Updates and Fixes
Update pwsh -?...
Diff from 7.1.0-rc.2
Diff from 7.0.0
Engine Updates and Fixes
Fix a logic bug in MapSecurityZone (#13921) (Thanks @iSazonov!)
General Cmdlet Updates and Fixes
Update pwsh -?...
📦 Announcing PSReadLine 2.1+ with Predictive IntelliSense
https://devblogs.microsoft.com/powershell/announcing-psreadline-2-1-with-predictive-intellisense/
https://devblogs.microsoft.com/powershell/announcing-psreadline-2-1-with-predictive-intellisense/
Episode 027 - PowerShell Security
Mick Pletcher & Harjit Dhaliwal
🎵The PowerShell News Podcast - Episode 027 - PowerShell Security
https://www.podbean.com/media/share/pb-47bgh-f1757d
https://www.podbean.com/media/share/pb-47bgh-f1757d
📘 Using the PowerShell formatting system to your advantage
https://joskw.gitbook.io/blog/object_formatting
https://joskw.gitbook.io/blog/object_formatting
joskw.gitbook.io
Using the PowerShell formatting system to your advantage
By Jos Koelewijn (@Jawz_84)
❗ PowerShell 7.2-preview.1 is out!
Engine Updates and Fixes:
- Change the default fallback encoding for GetEncoding in Start-Trannoscript to be UTF8 without a BOM
General Cmdlet Updates and Fixes
- Update pwsh -? output to match docs
- Fix NullReferenceException in Test-Json
- Make Dispose in TrannoscriptionOption idempotent
- Add additional Microsoft PowerShell modules to the tracked modules list
- Relax further SSL verification checks for WSMan on non-Windows hosts with verification available
- Add the OutputTypeAttribute to Get-ExperimentalFeature
- Fix blocking wait when starting file associated with a Windows application
-Emit warning if ConvertTo-Json exceeds -Depth value
Code Cleanup
https://github.com/PowerShell/PowerShell/releases/tag/v7.2.0-preview.1
Engine Updates and Fixes:
- Change the default fallback encoding for GetEncoding in Start-Trannoscript to be UTF8 without a BOM
General Cmdlet Updates and Fixes
- Update pwsh -? output to match docs
- Fix NullReferenceException in Test-Json
- Make Dispose in TrannoscriptionOption idempotent
- Add additional Microsoft PowerShell modules to the tracked modules list
- Relax further SSL verification checks for WSMan on non-Windows hosts with verification available
- Add the OutputTypeAttribute to Get-ExperimentalFeature
- Fix blocking wait when starting file associated with a Windows application
-Emit warning if ConvertTo-Json exceeds -Depth value
Code Cleanup
https://github.com/PowerShell/PowerShell/releases/tag/v7.2.0-preview.1
GitHub
Release v7.2.0-preview.1 Release of PowerShell · PowerShell/PowerShell
7.2.0-preview.1 - 2020-11-17
Engine Updates and Fixes
Change the default fallback encoding for GetEncoding in Start-Trannoscript to be UTF8 without a BOM (#13732) (Thanks @Gimly!)
General Cmdlet Up...
Engine Updates and Fixes
Change the default fallback encoding for GetEncoding in Start-Trannoscript to be UTF8 without a BOM (#13732) (Thanks @Gimly!)
General Cmdlet Up...
🎬 PowerShell Lightning Talk: Disk Speed Test on PowerShell with Jeremy Smith
https://www.youtube.com/watch?v=DWQaFe5MtQk
#video
https://www.youtube.com/watch?v=DWQaFe5MtQk
#video
YouTube
PowerShell Lightning Talk: Disk Speed Test on PowerShell with Jeremy Smith
Jeremy smith shows how he created some custom PowerShell functions to test disk speeds. He details how he was able to take a manual process and automate it. Prior to Jeremy's automation, this process was done through an old school cmd line utility and then…
📘Disaster recovery plan for Azure Key Vault using tags, PowerShell and Azure Function
In this article Sander Rozemuller will describe a way how to backup and restore a Key Vault when deleted.
https://rozemuller.com/disaster-recovery-plan-for-azure-key-vault-using-tags-powershell-and-azure-function/
In this article Sander Rozemuller will describe a way how to backup and restore a Key Vault when deleted.
https://rozemuller.com/disaster-recovery-plan-for-azure-key-vault-using-tags-powershell-and-azure-function/
Sander Rozemuller
Disaster recovery plan for Azure Key Vault using tags, PowerShell and Azure Function
Default the Azure KeyVault has softdelete enabled with a 90 day retention. This option will protect KeyVault items when deleted by accident.