Skip to content

Instantly share code, notes, and snippets.

View DanielTheCoder's full-sized avatar

Daniel Sack DanielTheCoder

View GitHub Profile
@DanielTheCoder
DanielTheCoder / docker-pull-images.ps1
Created February 26, 2018 21:51
Docker update all images using PowerShell
# Pull all images based on https://gist.github.com/gte445e/85119eb6e93bd46fb2bbd3e3a362ce68
docker images --format "{{.Repository}}" | Where-Object {$_ -ne "<none>"} | %{Write-Host "Pulling image: $_ ..."; docker pull $_}
@DanielTheCoder
DanielTheCoder / ExtractMSI.reg
Last active December 15, 2015 04:28
Unzipping/extracting MSI files
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Classes\Msi.Package\shell\Extract MSI\command]
@="msiexec.exe /a \"%1\" /qb TARGETDIR=\"%1 Extracted\""