My Daily Shortcuts I use across various OS's
Modifier Key | Description |
---|---|
Win + Shift + S | Open Screen Snip Tool and save to Clipboard |
Win + V | Open Enhanced Clipboard |
$serviceList = @" | |
AppVClient | |
debugregsvc | |
iphlpsvc | |
MapsBroker | |
NetTcpPortSharing | |
RemoteAccess | |
RemoteRegistry | |
SCardSvr | |
shpamsvc |
# 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 |
# 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 | |
#> |
<# | |
.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 |