Skip to content

Instantly share code, notes, and snippets.

View aidancasey's full-sized avatar

Aidan Casey aidancasey

View GitHub Profile
@sayedihashimi
sayedihashimi / call-msdeploy.ps1
Last active September 14, 2016 16:18
Shows how to call msdeploy.exe from powershell
function Execute-CommandString{
[cmdletbinding()]
param(
[Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true)]
[string[]]$command,
[switch]
$ignoreExitCode
)