Publish all Projects in #ProjectServer using #PowerShell #MSProject #PS2010 #SP2010

A frequent request from Project Server Administrators is how can I publish all projects on the server to ensure that the reports are current. This is where PowerShell comes in very handy again. Below is the PowerShell script that will publish all project plans in the server. $svcPSProxy = New-WebServiceProxy -uri "http://vm353/pwatest/_vti_bin/PSI/Project.asmx?wsdl" -useDefaultCredential $ProjectList =... Continue Reading →

Create and publish a Project in #ProjectServer via #PowerShell #PS2010 #MSProject #SP2010

Following on from a recent post on Project Server PSI PowerShell scripts, I thought of a nice slightly more advanced example. The script below will create a new project using the specified project template. $ProjName = Read-Host -Prompt "Enter the Name of the Project" Write-host "The Project is called $ProjName" $svcPSProxy = New-WebServiceProxy -uri "http://vm353/pwatest/_vti_bin/PSI/Project.asmx?wsdl"... Continue Reading →

Create a free website or blog at WordPress.com.

Up ↑