Project Server Account

C

Collin

Is there a way to add a project server account through the use of the Office
Customization Tool? I want to be able to deploy ms project 2007 with the
project server account specified.
 
B

Ben Howard [MVP]

Not sure about directly via the Office Customisation Tool, but but you can
script it and have this run after the installation. This code was written by
Steven Haden of MS, but he blogged it and so I feel happy to share it.

Option Explicit

Dim ProjObj

Set ProjObj = CreateObject("msproject.application")

if ProjObj.Profiles.Count = 1 Then

ProjObj.Profiles.add "Production EPM",
"http://www.contoso.com/projectserver"

ProjObj.Profiles.DefaultProfile = ProjObj.Profiles.item(2)

End IF

ProjObj.Quit

Set ProjObj=Nothing
 
Top