How are you using the PSBlueSky #PowerShell module? Share your ideas in the repo's Discussion section.
Posts by Dave Carroll
Let’s get this party started! PowerShell Summit 2026.
B.
What's the FIRST thing you do when you arrive at #pshsummit26? 🤔
A) Hit the swag table immediately
B) Find my people in the hallway
C) Scope out the best seat
ALL of the above are valid choices! 🙌
🎟️ Early Bird Tickets are still available!
🔗 www.powershellsummit.org/tickets/
Going LIVE NOW with Peter of @talesfromelsewhere.bsky.social on their Tales from Elsewhere Actual Play!!
feat.:
- @dmwadayjob.bsky.social
- @mistysteps93.bsky.social
- @thebonewizard.bsky.social
#ttrpg #ttrpgcommunity #eldritchhorror #wildwest #weirdwest
youtube.com/live/W6kdGzQ...
Have you submitted your nominations for the #PowerShell Community awards? Make your voice heard.
survey.sogolytics.com/survey/form
The Bluesky logo
If you are a big #PowerShell fan and new to Bluesky, take a look at the PSBluesky module. Install from the PowerShell Gallery and then run Open-BskyHelp to launch a PDF help file. The module requires PS7, and works cross-platform. Please post cross-platform issues in the GitHub repo.
Best PowerShell conference there is!! Doesn’t matter your skill level, there is something here for you. Talks are amazing, but the people are even better. Hope to see you there and if you are attending please stop and say hi!
#pwshsummit26 #powershell #devops
Just dropped the latest edition of PowerShell Weekly for March 6, 2026! Dive into the freshest scripts and tips to supercharge your workflow. Don’t miss out!
#PowerShell #Automation #TechNews
psweekly.dowst.dev?p=8678
I'm going to be talking about using #Chocolatey and #Ansible to manage software on #Windows on the Chocolatey Fest track at PowerShell + DevOps Global Summit next month.
Don't miss out on your ticket!
www.powershellsummit.org
get a PowerShell credential in a TUI https://github.com/jdhitsolutions/PSTuiTools
I love using a TUI in #PowerShell. I've published a module to the PSGallery with a variety of sample TUIs that you can use as models for your own projects. Or have fun with them on their own. TUI's include a system status report and an MP3 player. Check the README at github.com/jdhitsolu...
I've published a new issue of Behind the PowerShell Pipeline: Resolving The Registry Challenge
Become a premium member to read the entire article and get access to the catalog of content going back to 2022. #PowerShell
A PowerShell terminal user interface example
I promise I'll finish this new #PowerShell project soon.
Asmar Fontenot is joining us for #PowerShell Wednesday to help teach Tara about files, folders, and building real scripting confidence.
Come learn with us live.
Rush, you say? 😍 Yes, thank you! Can we have some more!
I have my tickets for this summer. I'll likely need to carry a box of tissue for the tribute to Neil.
Happy Weekend! I hope you like #dadjokes about #AI and #tourettes
youtu.be/Yt-JXqVMay4
Just dropped the latest edition of PowerShell Weekly for February 13, 2026! Explore announcements, blogs, books, community updates, and more. Don’t miss out!
#PowerShell #Automation #TechNews
psweekly.dowst.dev?p=8617
What it takes to become a Senior Technical IC
www.jsnover.com/blog/2011/10...
A story from early #PowerShell days when my sense of diplomacy was strictly "pre-operational."
I asked my new boss—a 20-year Windows veteran with a Physics PhD—if he was an idiot because neither of us could debug a thrashing system using GUI tools.
www.jsnover.com/blog/2026/02...
a picture of an old man with glasses sitting down with his arm out and another man leaning over and touching him. The back ground is yellow.
Kindness is a language that the deaf can hear and the blind can see.
Be kind, always.
Hey #PowerShell People:
Join us this week for "Get Your Shifts Together"
www.meetup.com/pacific-powe...
@sraybae.bsky.social will be talking about Shift Management in Microsoft #Teams
Wednesday: 6pm Pacific time.
Claude Code is amazing, innit? I used it to replace my Hugo theme, enforce accessibility, and more as well.
thedavecarroll.com/valida11y/
I even created a git submodule that I could use for all my sites.
github.com/thedavecarro...
Get your PowerShell fix! PowerShell Weekly for February 6, 2026 is now live. Packed with must-know scripts and tips for IT pros. Dive in!
#PowerShell #Automation #TechNews
psweekly.dowst.dev?p=8594
Come Jumpstart your future by learning a valuable skill from @mikefrobbins.com and other individuals. I'm gonna pepper you with puns and dad jokes (and knowledge). 😜
What happens to all your techy things when you are no longer able to look after them?
Your homelab? home network? smart things?
@funbucket.dev has created this to help you to help those left behind
github.com/potatoqualit...
Thank you for being a most excellent human, teaching others through words and actions, leading and encouraging many to unlock their own potential, and seeding the oak of collaboration. 💯
Hope to see you in a couple months at PowerShell Summit.
[math]::Round([char[]]'Monad' | Measure-Object -Sum | Select-Object -ExpandProperty Sum) - 5
I don't think so, but Nashville Severe Weather is. bsky.app/profile/nash...
Chocolatey Fest 2026 logo
I've been keeping a secret.....
CHOCOLATEY FEST IS COMING BACK!!!!!
This is running alongside @powershellsummit.org as a dedicated track.
One ticket. Two events.
More details soon, including a CFP.
Tickets @ powershellsummit.org
function Restore-EnvPath { $env:PATH = ('Machine', 'User', 'Process' | ForEach-Object { [environment]::GetEnvironmentVariable('PATH', $_) } | Where-Object { $_ }) -join [io.path]::PathSeparator }
I wrote a #powershell function to rebuild the PATH env var because I was annoyed after installing a new CLI tool that it wasn't immediately available.
This cross-platform function will update PATH with the machine/user/process-scoped vars.
And now this is where you tell me there's a better way 😅