Blog

Latest

Update all PowerShell modules

Sep 17 2020

Quick tip, the following updates all your PowerShell modules: > Get-InstalledModule | Update-Module -AllowPrerelease I allow prereleases, but that of course is optional.

@importall - A macro to import all names for easy debugging

Aug 14 2020

Often when you are debugging and testing a package it can be useful to be able to access all names in a module (whether they are exported or not), without having to prefix each identifier by the module name. It quickly becomes tiresome to have to prefix the module name for each identifier in the REPL, with code that looks like:

Archive