Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 746 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 746 Bytes

Web Deploy PowerShell

Web Deploy PowerShell (wdp) is a set of low ceremony, convention over configuration, PowerShell modules that wraps, and internally uses, the Web Deploy PowerShell Cmdlets.

WDP is meant to be easy (ICI Import-Customize-Invoke)...but still highly customizable if you need it to be:

# 1. Import
Import-Module .\WDP.Deploy.psm1


# 2. Customize (optional)
Set-Properties @{
    ParametersFile = ".\test.xample.com.xml"
}

# 3. Invoke
Invoke-Deploy .\xample.zip

You can read more and get the details in the wiki section.