Skip to content

Instantly share code, notes, and snippets.

View billpieper's full-sized avatar

Bill Pieper billpieper

  • North Dakota
  • 08:17 (UTC -05:00)
View GitHub Profile
@billpieper
billpieper / Install-Updates.ps1
Last active July 11, 2024 15:14
PowerShell script that will download and install all Microsoft (Windows) Updates on Windows 10 / Windows Server 2016
###############################################################################
###############################################################################
##### PowerShell Windows Update Script.
##### Leverages Microsoft Update provider to install all missing updates
###############################################################################
###############################################################################
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process -Force
Install-PackageProvider -Name NuGet -Force
Import-PackageProvider -Name NuGet
@billpieper
billpieper / .gitconfig
Created April 25, 2016 14:52 — forked from dahlbyk/.gitconfig
Windows Git Diff/Merge Tool Configuration
[alias]
dt = difftool
mt = mergetool
[diff]
tool = bc3
[difftool]
prompt = false
[difftool "bc3"]
cmd = \"c:/program files (x86)/beyond compare 3/bcomp.exe\" \"$LOCAL\" \"$REMOTE\"
[difftool "p4"]