Skip to content

Instantly share code, notes, and snippets.

View mikefrobbins's full-sized avatar

Mike F. Robbins mikefrobbins

View GitHub Profile
@dfinke
dfinke / CFSBuddy.ps1
Created September 17, 2014 14:37
PowerShell v5.0 ConvertFrom-String Buddy - A GUI that helps you work with this new powerful cmdlet
#Requires -Version 5.0.9814.0
if(!($PSVersionTable.PSVersion.Major -ge 5 -and $PSVersionTable.PSVersion.Build -ge 9814)) {
"Sorry you need PSVersion 5.0.9814.0 or newer"
$psversiontable
return
}
Add-Type -AssemblyName presentationframework
@leslie-leder
leslie-leder / GitCheatSheat.md
Last active March 21, 2023 09:23
Git Cheat Sheet

Config

Git Global User Name

git config --global user.name "Any User"

Git Repository User Name

git config user.name "Any User"

Show remote url

@rponte
rponte / get-latest-tag-on-git.sh
Last active December 9, 2024 00:27
Getting latest tag on git repository
# The command finds the most recent tag that is reachable from a commit.
# If the tag points to the commit, then only the tag is shown.
# Otherwise, it suffixes the tag name with the number of additional commits on top of the tagged object
# and the abbreviated object name of the most recent commit.
git describe
# With --abbrev set to 0, the command can be used to find the closest tagname without any suffix:
git describe --abbrev=0
# other examples
@michaeltlombardi
michaeltlombardi / Set-DefaultPropertyDisplaySet.ps1
Last active November 22, 2022 12:34
Function for Adding a Default Property Display Set to PSCustomObjects.
Function Set-DefaultPropertyDisplaySet {
<#
.Synopsis
Adds a Default Property Display Set to a PSCustomObject.
.Description
Adds a Default Property Display Set to a PSCustomObject. The default display will be formatted as a table; the columns will be in the
same order as they are passed to the function.
@Teino1978-Corp
Teino1978-Corp / MS Perks & Benefits.md
Created November 7, 2015 03:57
Summary of any and all perks when working with Microsoft.

##Perks of Microsoft

####Salary

####Health and Wellness Care

  • Medical and hospitalization: Two choices for medical insurance. Both with no premium but different deductibles.
    • The two choices on medical plans are a high-deductible health plan (Microsoft puts a chunk of money into the Health Savings Account for you, which covers most of the deductible) and an HMO.
  • With the HMO, you pay basically nothing as long as you only go to Group Health doctors. With the high-deductible plan, you're covered under the local Blue Cross provider which means you can go to just about any doctor in the country. For
@jdhitsolutions
jdhitsolutions / Compare-Module.ps1
Last active July 31, 2023 21:33
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.
@AspenForester
AspenForester / Get-SummitSeats.ps1
Created November 1, 2016 21:14
Parses the HTML for the 2017 PowerShell Summit Eventloom page and returns the current number of available seats. It was written very as a think-type-do exercise. Show me you can do better!
$url = "https://eventloom.com/event/home/summit2017"
$page = Invoke-WebRequest -Uri $url
$outertext = $page.ParsedHtml.getElementsByTagName("div") | where Classname -eq "col-md-6" | Select -ExpandProperty OuterText
$AvailableText = ($outertext -split '[\r\n]').Where({$_ -like "*avail*"})
$SeatsAvailable = $AvailableText.Split(' ')[0]
# Based on a script from Mike F. Robbins | https://twitter.com/mikefrobbins
# http://mikefrobbins.com/2017/05/18/use-powershell-to-determine-if-specific-windows-updates-are-installed-on-remote-servers/
# Customized by Paul G. Fitzgerald | https://twitter.com/pgfitzgerald
$Timestamp = Get-Date -Format "yyyyMMdd-HHmmss"
$Computers = Get-ADComputer -Filter *
# Adjust ThrottleLimit as needed
Invoke-Command -ComputerName ($Computers | Select-Object -ExpandProperty Name) -ThrottleLimit 32 -ScriptBlock {
$Patches = 'KB4012598', # Windows XP, Windows Vista, Windows 8, Windows Server 2003
@lzybkr
lzybkr / print_tree.ps1
Last active January 4, 2018 02:03
Print a tree with any Key and Parent properties.
# .SYNOPSIS
# Print a tree given a key property and parent property
#
# .PARAMETER InputObject
#
# The object to print.
#
# .PARAMETER KeyProperty
@troyfontaine
troyfontaine / README.md
Last active October 15, 2023 09:58
Ubiquiti USG config.gateway.json Syntax

Ubiquiti USG Advanced Configuration

Overview

Integrated DNS Overview

When using a USG with Ubiquiti's Unifi Controller software (version 5.6 and earlier), the functionality of integrating the hostnames of clients (when they request a DHCP lease) into local DNS does not appear to work as you would find with Consumer grade routers. To work around this limitation, we can add static host mappings to a configuration file that will be provisioned to the USG when either a configuration change is made or we force provisioning to the USG itself.

Non-GUI Supported Dynamic DNS Providers

I've added in the necessary syntax for adding Cloudflare DDNS to the USG for VPN/Services setup courtesy of this post by britannic on the Ubiquiti Forums.

Configuration File