MS Pro Enterprise Accounts

S

ST

Where does MS Project Professional (2007) store the http address for the
enterprise accounts?

Because we are migrating our server, we are wondering if there is a way we
can somehow get to it in an automated way to change the http address that the
clients currently use so that we do not have to do this manually for all the
clients.

Any ideas?

/Spiro.
 
J

Jack Dahlgren MVP

It is in the Profile.

You can only add profiles programmatically

expression.Add(Name, Server, LoginType, UserName)

So something like this would do the trick:

Sub newProf()
Application.Profiles.Add Name:="MYNewProfile",
Server:="Http://yourprojectserver.com/PWA", LoginType:=pjWindowsLogin,
UserName:=Application.UserName
End Sub

You still have to get them to use the new profile though.

-Jack
 
R

Renke Holert

Hi Spiro,

the server address is stored in the registry at:

HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\MS Project\Profiles

Best Regards,
Renke

Project MVP Germany
http://www.holert.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top