Microsoft Knowledge Base Article - 288367
|
|
|
How to configure Office applications to run under a specific user accountView products that this article applies to.This article was previously published under Q288367 SUMMARY We do not recommend or support automation to a
Microsoft Office application from an unattended user account.
For additional information
on why Microsoft does not recommend automation under this
context, click the following article number to view the article in the Microsoft Knowledge Base:
257757
Considerations for server-side automation of Office
If there is no choice but to automate Office from
an unattended user account, the following steps can be used to configure the
computer to run the Office application as a specific user, giving the
application a fixed identity when it is started for Automation. MORE INFORMATIONCaution Automation of any Office application from an unattended,
non-interactive user account is risky and unstable. A single error in code or
configuration can result in a dialog box that can cause the client process to
stop responding (hang), that can corrupt data, or that can even crash the
calling process (which could bring down your Web server if the client is ASP).
Warning Office was not designed, and is not safe, for unattended
execution on a server. Developers who use Office in this manner do so at their
own risk. Regardless, it may be absolutely required to use Office in
this manner. In these cases, special configuration must be done to avoid errors
on Office startup. The steps in this article demonstrate how to configure
Office to run as a specific user account when it is started for
Automation. When you automate under a specific user account, you
should be aware of the following problems:
- Any process that creates an Automation instance of the
configured Office application creates the instance under the specific user
account, allowing it to run with that user's security credentials.
- Setting the Distributed Componenet Object Model (DCOM)
settings to run as a specific user is global to the system. This setting
affects all users and programs that automate the Office application on the
system. Terminal Server clients may not be able to use Office appropriately.
You should not use this setting and the steps in this article on an application
Terminal Server.
- Component Object Model (COM) creates a unique WinStation
for the new instance of the Office application. Any dialog boxes or warnings
that may display do not appear on the interactive desktop. If you set the
Visible flag for an application, the interactive user will not see that
application. For more information about COM and WinStations, see the
"References" section.
- When COM loads a server to run as a specific user account,
the registry hive for that user is not loaded. Because the hive is not loaded
for that user, the system .DEFAULT hive is used. Because Office has not been
run under an account with this hive, you may receive dialog boxes that prompt
you for input or the Office CD-ROMs to complete installation. The dialog boxes
are not visible on the interactive desktop, so the application appears to stop
responding (hang). The dialog boxes may time out and allow the process to
continue, but after a noticeable delay in running the program. To work around
this situation, install an NT service that runs under the same user account
that is set for the DCOM setting. The NT Service Control Manager (SCM) loads
the hive for that user when the service starts.
Because the changes in DCOM are global, configuring Office in
this manner can have negative side effects for other clients on the system that
use Office. It is possible that another client application, or Terminal Server
clients, will not be able to use the Office application after the settings are
made. Consider carefully what impact this has to your server before you make
any changes to the DCOM configuration settings. If the problems
listed here are too great for your design, or cause other unidentified
problems, it is possible to configure Office differently and still allow it to
start from an unattended process or service.
For additional information, click the following article numbers to view the articles in the Microsoft Knowledge Base:
288366
How To Configure Office
Applications to Run Under the Interactive User Account
288368 How To
Configure Office Applications for Automation from a COM+/MTS
Package
Configuring Office as a Specific User To set up an Office Automation server under a specific user
account, follow these steps:
- Log on to the computer as the Administrator and create a
new user account that will automate Office. In our example, this account is
named OfficeAutomationUser. Create a password for this user account, and select Never expire so that the password does not have to be changed.
- Add the OfficeAutomationUser account to the Administrators group.
- Log in to the computer as OfficeAutomationUser and install (or reinstall) Office using a complete install. For
system robustness, it is recommended that you copy the contents of the Office
CD-ROM to a local drive and install Office from this location.
- Start the Office application that you intend to automate.
This forces the application to register itself.
- After the application is running, press ALT+F11 to load the
Microsoft Visual Basic for Applications (VBA) editor. This forces VBA to
initialize itself.
- Close the applications, including VBA.
- Click Start, click Run, and then type DCOMCNFG. Select the
application that you want to automate. The application names are listed below:
Microsoft Access 97/2002 - Microsoft Access Database
Microsoft Access 2003 - Microsoft Office Access Application
Microsoft Excel 97/2000/2002/2003 - Microsoft Excel Application
Microsoft Word 97 - Microsoft Word Basic
Microsoft Word 2000/2002/2003 - Microsoft Word Document
Click Properties to open the property dialog box for this
application. - Click the Security tab. Verify that Use Default Access Permissions and Use Default Launch Permissions are selected.
- Click the Identity tab. Select This User and type the username and password for OfficeAutomationUser.
- Click OK to close the property dialog box and return to the main
applications list dialog box.
- In the DCOM Configuration dialog box, click the Default Security tab.
- Click Edit Defaults for access permissions. Verify that the following users are
listed in the access permissions, or add the users if they are not listed:
SYSTEM
INTERACTIVE
Everyone
Administrators
OfficeAutomationUser
IUSR_<machinename>* IWAM_<machinename>*
* These accounts exist only if Internet Information Server (IIS) is
installed on the computer. - Make sure that each user is allowed access, and then click OK.
- Click Edit Defaults for launch permissions. Verify that the following users are
listed in the launch permissions, or add the users if they are not listed:
SYSTEM
INTERACTIVE
Everyone
Administrators
OfficeAutomationUser
IUSR_<machinename>* IWAM_<machinename>*
* These accounts exist only if IIS is installed on the
computer. - Make sure that each user is allowed access, and then click OK.
- Click OK to close DCOMCNFG.
- Start REGEDIT and then verify that the following keys and string values exist
for the Office application that you want to automate:
Microsoft Access 2000/2002/2003: Key: HKEY_CLASSES_ROOT\AppID\MSACCESS.EXE AppID:
{73A4C9C1-D68D-11D0-98BF-00A0C90DC8D9}
Microsoft Access 97: Key: HKEY_CLASSES_ROOT\AppID\MSACCESS.EXE AppID:
{8CC49940-3146-11CF-97A1-00AA00424A9F}
Microsoft Excel 97/2000/2002/2003: Key: HKEY_CLASSES_ROOT\AppID\EXCEL.EXE AppID:
{00020812-0000-0000-C000-000000000046}
Microsoft Word 97/2000/2002/2003: Key: HKEY_CLASSES_ROOT\AppID\WINWORD.EXE AppID:
{00020906-0000-0000-C000-000000000046}
If these
keys do not exist, you can create them by running the following .reg file on
your system:
REGEDIT4
[HKEY_CLASSES_ROOT\AppID\WINWORD.EXE]
"AppID"="{00020906-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\AppID\EXCEL.EXE]
"AppID"="{00020812-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\AppID\MSACCESS.EXE]
"AppID"="{73A4C9C1-D68D-11D0-98BF-00A0C90DC8D9}"
Note The sample .reg file is for Access 2000, Access 2002, or Office Access
2003. If you are using Access 97, change the AppID key to: "AppID"="{8CC49940-3146-11CF-97A1-00AA00424A9F}" - To avoid registry conflicts, install and run an NT service.
Set the identity of the service to run as OfficeAutomationUser, and select Automatic as the startup type. For more information on creating a sample
Visual C++ NT Service, see the following Microsoft Developer Network (MSDN) Web
site:
Creating a Simple Win32 Service in C++ http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndllpro/html/msdn_ntservic.asp - Restart the system. This is required.
REFERENCES
For additional information, click the following article numbers to view the articles in the Microsoft Knowledge Base:
169321
COM servers activation and NT Windows stations
158508 COM security frequently asked questions
184291 COM objects fail to print when called from ASP
For more information about automation from Internet
scripts, visit the following Microsoft Web site:
Office Automation With Internet Scripting http://support.microsoft.com/support/officedev/InetASP.asp The information in this article applies to:- Microsoft Office Access 2003
- Microsoft Access 2002
- Microsoft Access 2000
- Microsoft Access 97
- Microsoft Office Excel 2003
- Microsoft Excel 2002
- Microsoft Excel 2000
- Microsoft Excel 97 for Windows
- Microsoft Office Word 2003
- Microsoft Word 2002
- Microsoft Word 2000
- Microsoft Word 97 for Windows
Last Reviewed: | 6/29/2004
(8.1)
| Keywords: | kbAutomation kbDCOM kbhowto KB288367 |
| |
|