March 28, 200422 yr 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?
March 28, 200422 yr no, %systemdrive% is a relative value which points to the drive where your windows is installed.
March 28, 200422 yr Author ok so I want run that installation off of a server on my server what should the login script look like?
April 15, 200422 yr 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.
Create an account or sign in to comment