Skip to content

Instantly share code, notes, and snippets.

View mikefrobbins's full-sized avatar

Mike F. Robbins mikefrobbins

View GitHub Profile
@mikefrobbins
mikefrobbins / Compare-Module.ps1
Created July 31, 2023 21:33 — forked from jdhitsolutions/Compare-Module.ps1
Use this command to compare module versions between what is installed against an online repository like the PSGallery. Results will be automatically sorted by module name.
#requires -version 5.0
# https://gist.github.com/jdhitsolutions/7217ed9293f18e8d454e3f88ecb38b67
Function Compare-Module {
<#
.Synopsis
Compare module versions.
.Description
Use this command to compare module versions between what is installed against an online repository like the PSGallery. Results will be automatically sorted by module name.
@mikefrobbins
mikefrobbins / profile.ps1
Created September 20, 2022 20:51 — forked from SteveL-MSFT/profile.ps1
PowerShell Prompt
#Requires -Version 7
# Version 1.2.12
# check if newer version
$gistUrl = "https://api.github.com/gists/a208d2bd924691bae7ec7904cab0bd8e"
$latestVersionFile = [System.IO.Path]::Combine("$HOME",'.latest_profile_version')
$versionRegEx = "# Version (?<version>\d+\.\d+\.\d+)"
if ([System.IO.File]::Exists($latestVersionFile)) {