Jump to content

MS Office Gurus, need some help


Recommended Posts

When we re-image a machine, the first time the user opens office it prompts them to register their name, and put in their initials. Is there a quick and easy way to bypass this, or a registry key I can edit with a script to fool it into thinking this has already been completed?

Googling "Microsoft Office Registry Bypass" or anything similar just brings up tons of pages on how to make a illegal or demo copy work, etc... these are licensed copies, I just don't want the end user entering their info

Link to comment
Share on other sites

I'm no Office guru but with the help of Google I could find this. Maybe it's helpful.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

http://technet.microsoft.com/en-us/library/cc179097.aspx

I'm no Office guru but with the help of Google I could find this. Maybe it's helpful.

Both seem to be leaning towards Office Customization Tool

I won't be doing the Office installs, just getting a machine with Office pre-installed on it. I was hoping for a registry key that I could add to just stop the prompt for name and initials

Link to comment
Share on other sites

In this case i would suggest to use a registry tool like RegDiff to export the registry to a file, set name and initials in Office, do another export of the registry and then compare the two registry files using the RegDiff tool.

So you can see which keys to set by your script.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

Just in case somebody else needs it...

Func RegisterOffice ()

RegWrite("HKEY_CURRENT_USERSoftwareMicrosoftOfficeCommonUserInfo", "Company", "REG_SZ", "put your company name here")

RegWrite("HKEY_CURRENT_USERSoftwareMicrosoftOfficeCommonUserInfo", "UserInitials", "REG_SZ", "initials you want here")

RegWrite("HKEY_CURRENT_USERSoftwareMicrosoftOfficeCommonUserInfo", "UserName", "REG_SZ", "name you want here")

EndFunc

Link to comment
Share on other sites

Thanks for that information. Might be useful to other users in the future ;)

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...