Jump to content

Office 2003


The Dealman

Recommended Posts

I want to run out of a logon script

ECHO.

ECHO Installing Office 2003 Professional

ECHO Please wait...

start /wait %systemdrive%\install\Applications\Office2003\setup.exe TRANSFORMS=03custom.MST /qb-

do I have to change the systems drive to the network path or the drive of the computer it will be installed to?

Link to comment
Share on other sites


  • 3 weeks later...
ok so I want run that installation off of a server on my server what should the login script look like?

To access a network drive from a batch file you have to map the drive, so it'd look something like:

net use z: \\myserver\myshare
start /wait z:\install\Applications\Office2003\setup.exe TRANSFORMS=03custom.MST /qb-
net use z: /d

You may have to specify a full path for the transforms as well.

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
  • Recently Browsing   0 members

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