Skip to content

Instantly share code, notes, and snippets.

View rexwhitten's full-sized avatar

Rex Whitten rexwhitten

View GitHub Profile
@abombss
abombss / PsLocalDb.psm1
Created March 6, 2013 21:22
Powershell LocalDb Wrapper
function Start-LocalDb {
[CmdletBinding()]
param(
[Parameter(Mandatory,ValueFromPipeLine,Position=1)]
[psobject[]]$Instance,
[string]$ToolPath = (Find-LocalDbExe)
)
begin {
}