Script To Download the Current Version of PowerShell

One of the annoying things about well, any software is checking to see if you have the currrent version. This is a thing with PowerShell, and because the PowerShell team in its finite wisdom has decided to not just have a "latest stable/lts/preview" url, we have to figure this out manually. It's not too bad though, fortunately, the PowerShell team gives us…

https://bynkiidotcom.wordpress.com/2025/11/11/script-to-download-the-current-version-of-powershell/

#PowershellMac
#powershellmacos
#powershell

Script To Download the Current Version of PowerShell

One of the annoying things about well, any software is checking to see if you have the currrent version. This is a thing with PowerShell, and because the PowerShell team in its finite wisdom has de…

Bynkiidotcom

PowerShell script signer is done!

Well, it's a 1.0.1, there’s a few things I want to add, but it's not bad at the moment. It's on the PowerShell Gallery at: https://www.powershellgallery.com/packages/Set-PowerShellScriptSig/1.0.1 and the github link is at: https://github.com/johncwelch/pwshsigner

the readme on the github repo has the small number of future improvements I have planned, but for now, it's a solid MVP.

#PowershellMac
#powershellmacos
#powershell

Set-PowerShellScriptSig 1.0.1

A module to make signing scripts easier

Get-MacInfo 2.0.1

A macOS version of the Get-ComputerInfo module

My new PowerShell module, GetChooseFileName is now up on the PowerShell Gallery:

https://www.powershellgallery.com/packages/Get-ChooseFileName

#powershell
#powershellmac
#powershellmacos

Get-ChooseFileName 1.0

A module providing a PowerShell interface to the AppleScript "Choose File Name" UI Primitive

Get-ChooseFileName is basically done, getting approval before releasing up to the PowerShell gallery: https://github.com/johncwelch/Get-PSChooseFileName

#powershell
#powershellmac
#powershellmacos

GitHub - johncwelch/Get-PSChooseFileName: A bridge to AppleScript's Choose File Name command

A bridge to AppleScript's Choose File Name command - johncwelch/Get-PSChooseFileName

GitHub
GitHub - johncwelch/Get-PSChooseFileName: A bridge to AppleScript's Choose File Name command

A bridge to AppleScript's Choose File Name command - johncwelch/Get-PSChooseFileName

GitHub

Getting Warranty Info on your Mac with PowerShell

This was a feature someone asked for with Get-MacInfo. Here's the basics, the script is on the github site, and VERY REAL WARNINGS:

This is incredibly fragile, as it relies on a directory, com.apple.NewDeviceOutreach, being in ~/Library/Application Support/ for the user running the script. I'm not even going to try to play "peekaboo in other user homedirs" with a…

https://bynkiidotcom.wordpress.com/2025/02/04/getting-warranty-info-on-your-mac-with-powershell/

#powershell
#powershellmac
#powershellmacos

Getting Warranty Info on your Mac with PowerShell

This was a feature someone asked for with Get-MacInfo, and now that I have it, I can work on integrating it. Here’s the basics, the script is on the github site, and VERY REAL WARNINGS: This …

Bynkiidotcom

Script I used to work out grabbing json system_profiler data. Tpowershellmacos complicated because there’s things that aren’t always there, and a LOT of info if they’re all there.

https://github.com/johncwelch/Get-MacInfo/blob/master/system_profiler%20json%20info.ps1

#powershell
#powershellmac
#powershellmacos

Get-MacInfo/system_profiler json info.ps1 at master · johncwelch/Get-MacInfo

This eventually will be a powershell module for PS on macOS that will, as much as possible, replicate "Get-ComputerInfo" - johncwelch/Get-MacInfo

GitHub

While display dialog is simple in terms of how it looks, it’s remarkably complex in terms of parameters. There’s arrays, paths to .icns files, etc.

The output is pretty straightforward but the input parameter testing will be a pain.

#powershell #powershellmacos

building a PowerShell module that presents a "Proper" powershell interface for display dialog. If it works out, then I'll see about doing other AppleScript UI primitives as PS modules, to make up for the lack of UI in PS on macOS

#powershell #powershellmacos