The Dealman Posted March 28, 2004 Posted March 28, 2004 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?
eirogge Posted March 28, 2004 Posted March 28, 2004 no, %systemdrive% is a relative value which points to the drive where your windows is installed.
The Dealman Posted March 28, 2004 Author Posted March 28, 2004 ok so I want run that installation off of a server on my server what should the login script look like?
Dee Posted April 15, 2004 Posted April 15, 2004 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\mysharestart /wait z:\install\Applications\Office2003\setup.exe TRANSFORMS=03custom.MST /qb-net use z: /dYou may have to specify a full path for the transforms as well.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now