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 →
#ProjectServer 2010 PSI #PowerShell examples #PS2010 #MSProject #SP2010
Following from a post I wrote mid last year on Project Server data export using the PSI and PowerShell I thought I would create a new post to show further simple examples of getting Project data via the PSI using PowerShell (no coding!). Firstly I will just explain each part of a simple script using... Continue Reading →