Posts

Showing posts with the label EPM

Powershell script for Creating Phase, Stage, PDPs in EPM 2013

Image
As we all know that PowerShell is a very strong tool for performing task in Windows environment. In this blog post I'm assuming you have basic knowledge of PowerShell scripting and Project Server 2013 as we are here to learn how to create Stages, Phases and PDPs in Enterprise Project Management 2013 (Project Server 2013) . For Windows PowerShell: Scripting Crash Course is a very good article written by Don Jone s in MSDN. People who have worked on custom workflows using Visual Studio in Project server must know that it uses unique id of each stage, which is automatically generated when the stages were created. So for moving workflow from one environment to another, we are required to the solution and update the Stage id of new environment. For every environment changing code and updating Stage id is not a feasible solution. To overcome the above problem we have come across the solution of creating Stages programmatically and assigning our own Guids. And that is possible...