Jump to content

Recommended Posts

Posted

We are moving over office 2007 in the summer. I am currently trying to iron out all of the kinks. One problem I am having is when a user uses the program for the first time they are being asked to fill in details to personalise office. I want to be able to fill that in automatically. Does anyone know how to do that. I have looked through the GPO's and nothing seems to jump out at me.

 

Many thanks

 

Denon

Posted

I set it via the logon vbs script, actually for win2k3, but there may be more properties now. It does cause an msiexec installing bar to appear whilst logging on. Anyway, it's something like:

 

Set ADSysInfo = CreateObject("ADSystemInfo")

Set objUser = GetObject("LDAP://" & ADSysInfo.UserName)

 

Sub SetOfficeUser

On error Resume next

Set objWord = CreateObject("Word.Application")

objWord.UserName = objUser.givenName & " " & objUser.SN

objWord.UserInitials = Left(objUser.givenName, 1) & Left(objUser.SN, 1)

objWord.Quit

End Sub

  • Thanks 1
Posted

Nice script mavhc, someone just asked almost the same question here http://www.edugeek.net/forums/scripts/56118-script-help-query-ad-add-reg-key.html#post509812 and I used your script as a basis with a small alteration to make it work by writing registry keys instead of fireing up an office app to do this.

 

On error Resume next
Set ADSysInfo = CreateObject("ADSystemInfo")
Set objUser = GetObject("LDAP://" & ADSysInfo.UserName)

Set WshShell = WScript.CreateObject("WScript.Shell")
regpath = "HKEY_CURRENT_USER\Software\Microsoft\Office\Common\UserInfo\"
UsersName = objUser.givenName & " " & objUser.SN
UsersInitials = Left(objUser.givenName, 1) & Left(objUser.SN, 1)
WshShell.RegWrite regpath & "UserName", UsersName, "REG_SZ"
WshShell.RegWrite regpath & "UserInitials", UsersInitials, "REG_SZ"

Posted
Is upgrading to 2007 now akin to the House of Common upgrading their PCs to Windows Vista. I'm wondering why 2007 over 2010? Having used 2010 for a few months I hate going back to 2007 on my work machine.
Posted
Thought it was only beta releases and the RTM version on TechNet, not a general release yet. Willing to be told otherwise, though.
Posted
Thought it was only beta releases and the RTM version on TechNet, not a general release yet. Willing to be told otherwise, though.

 

it is for general release. Its on the volume Licence site

  • Thanks 1
Posted
Good point maark, it was a bit of a nightmare for a while with office 2007!

 

That's all sorted now then? I could do with getting our admin staff onto 2007. They're still on 2003 whilst the rest of the school is 2007, no major issue though as they have the compatibility pack installed

Posted
We have no problem with office staff using 2007 on sims - some staff not gone over yet just because they don't like change :-)
Posted
That's all sorted now then? I could do with getting our admin staff onto 2007. They're still on 2003 whilst the rest of the school is 2007, no major issue though as they have the compatibility pack installed

 

Yep sims caught up a few weeks after we put Office 2007 on which was a while ago now!

Posted
Well the reason for going to 2007 is simply cost. We already had half the licences we needed. So only needed the other half. Where as with 2010 we would need to buy all of them. Increasing the cost. I would have liked to use 2010.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...