Skip to content
Peter Kjaer edited this page Mar 26, 2015 · 11 revisions

This project contains a Windows PowerShell module that allow you to easily interact with the SDL Tridion content management system and perform various administrative tasks.

Currently supported Tridion versions: 2011 SP1, 2013 GA, and 2013 SP1.

Installation

The quickest way to install is to use the provided script:

  1. Open a Windows PowerShell (v3.0+) console.
  2. Ensure that you can run unsigned local scripts, by calling Set-ExecutionPolicy. We recommend the RemoteSigned policy. See Using the Set-ExecutionPolicy Cmdlet for more information.
  3. Start the installation by executing the following line:

wget "https://raw.githubusercontent.com/pkjaer/tridion-powershell-modules/master/Installation/Install.ps1" | iex

This will download the latest release, install it, and load the modules. Afterwards, you may wish to run the verification script ('Verify.ps1') located in the Installation folder -- or simply start using the available commands.

Should the above steps fail to work for you, please let us know! As an alternative to the installation script, follow the step-by-step instructions on the Manual Installation page.

Help

You can get the list of all of the commands by typing this in PowerShell: Get-Command -Module Tridion-CoreService

Each of the commands also has help information available (including examples), which you can read by calling Get-Help nameOfCommand (e.g. Get-Help Get-TridionUser).

If you have any issues or questions, feel free to add an entry under Issues.

Clone this wiki locally