Skip to content

Instantly share code, notes, and snippets.

DailyShortcuts

My Daily Shortcuts I use across various OS's

Windows 10 (1703 and above)

Modifier Key Description
Win + Shift + S Open Screen Snip Tool and save to Clipboard
Win + V Open Enhanced Clipboard
@tibmeister
tibmeister / Stop-UnneededServices.ps1
Last active December 27, 2023 22:58
This script will stop unneeded services that are running on your Windows 10 machine to improve performance.
$serviceList = @"
AppVClient
debugregsvc
iphlpsvc
MapsBroker
NetTcpPortSharing
RemoteAccess
RemoteRegistry
SCardSvr
shpamsvc
@tibmeister
tibmeister / PowerShell.Signed.gitattributes
Created April 20, 2016 21:51 — forked from KirkMunro/PowerShell.Signed.gitattributes
.gitattributes file contents for PowerShell script or manifest modules (signed or unsigned) and binary modules
# Treat all files in this project as binary. This enables atomic
# checkins (no merges, these are signed files) and it preserves
# CRLF line endings
* binary
@tibmeister
tibmeister / xcode-build-bump.sh
Created October 18, 2015 21:31 — forked from sekati/xcode-build-bump.sh
Xcode Auto-increment Build & Version Numbers
# xcode-build-bump.sh
# @desc Auto-increment the build number every time the project is run.
# @usage
# 1. Select: your Target in Xcode
# 2. Select: Build Phases Tab
# 3. Select: Add Build Phase -> Add Run Script
# 4. Paste code below in to new "Run Script" section
# 5. Drag the "Run Script" below "Link Binaries With Libraries"
# 6. Insure that your starting build number is set to a whole integer and not a float (e.g. 1, not 1.0)
<#
.SYNOPSIS
Send a WOL packet to a broadcast address
.PARAMETER mac
The MAC address of the device that need to wake up
.PARAMETER ip
The IP address where the WOL packet will be sent to
.EXAMPLE
Send-WOL -mac 00:11:32:21:2D:11 -ip 192.168.8.255
#>
@tibmeister
tibmeister / Logging.psm1
Created January 23, 2015 22:30
Powershell Logging Module that incorporates logging to a file and to the Windows Event log in a structured manner. When using it from code it acts like a file stream when it really isn't.
<#
.SYNOPSIS
This module is to provide common functionality for logging within scripts
.DESCRIPTION
This module is to provide common functionality for logging within scripts. This provides a consistent framework to be used
universally across all PowerShell scripting platforms.
.NOTES
Version: v1.2
Author: Jody Whitlock
Date: January 23, 2015