Skip to content
rprieto edited this page Sep 14, 2010 · 32 revisions

Intro

Welcome to psDeploy, a deployment automation library for Powershell. This small-footprint package provides additional cmdlets for common interaction with Windows during deployment processes.

Adding the psDeploy module to your development / test / production servers allows you to automate the teardown or setup of your environments, thus limiting the need for manual configuration and documentation.

The cmdlets are grouped into 2 categories:

  • IIS 6
  • Windows

How to use psDeploy

  1. Download the ZIP file using the link at the top right
  2. Extract it to any of the powershell module paths, which you can list by running “env:psmodulepath”
  3. Add the following lines at the top of your script:

{code}
Import-Module psDeploy
Assert-PsDeploySupported
{code}

Clone this wiki locally