It’s not too often these days that I find myself needing to update the underpinnings of PowerShell. The majority of the PowerShell work I do now is based on PowerShell Core, the current version of which is 7.0.3, and frequently just comes with newer versions of the supporting modules. PowerShell Core began with PowerShell 6… Continue reading Updating PowerShellGet
Tag: PowerShell
Salvaging Images From Squarespace
I wrote previously about moving this blog from Squarespace to WordPress. One of my cited concerns with Squarespace was being locked into that particular platform without a lot of options for moving somewhere else. So how did I move my content to WordPress? I was able to export the written content for the posts themselves… Continue reading Salvaging Images From Squarespace
Sorting IP Addresses With PowerShell
I was recently attempting to sort a list of IP addresses that I had in a text file. PowerShell is awesome at sorting, so I figured I would use it given that I had nearly 2000 of them. I initially just tried to pipe the contents of the file to the Sort-Object cmdlet: Get-Content -Path… Continue reading Sorting IP Addresses With PowerShell
PowerShell: Export Non-Standard and Multi-Value AD Attributes to CSV
I’ve recently been spending a lot of my time at work doing PowerShell scripting for a project that’s currently underway. While working on a bit of code late last week I ran into two interesting problems that I had yet to really stumble across despite doing heavy PowerShell scripting against Active Directory for nearly a… Continue reading PowerShell: Export Non-Standard and Multi-Value AD Attributes to CSV