Skip to content

Instantly share code, notes, and snippets.

View blakeja's full-sized avatar

James Blake blakeja

View GitHub Profile
@blakeja
blakeja / README-Template.md
Created May 14, 2018 20:27 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@blakeja
blakeja / RemoveDuplicatePFItems.ps1
Last active July 13, 2017 02:29
Remove duplicate items in Exchange public folders
#region Synopsis
<#
.SYNOPSIS
Remove-DuplicatePFItems
.DESCRIPTION
This script will scan a public folder and remove duplicate items.
@blakeja
blakeja / Update-Revision.ps1
Last active March 19, 2022 17:06
Update revision in AssemblyInfo.cs
param(
[string]$file,
[string]$revision
)
$pattern = '^\[assembly: AssemblyVersion\("(.*)"\)\]$'
(Get-Content $file -Encoding UTF8) | ForEach-Object {
if ($_ -match $pattern)
{