MElam is correct. I just finished the setup of our admin director installation this morning.
You have to install it from the local machine. I installed mine on my local HD. Then copied it to the network and shared the network drive.
Then edit the "SolidWorks_2005_xxx_client_options.ini" file and the "StartSWInstall.htm" file.
MElam has all the information you need for the edit of the htm file above.
The editing of the .ini file is self explanatory. Below are the lines that should be edited.
ADMINMSIPATH=
BEFORECMD=
AFTERCMD=
REGPATH=
Each of these four items will have a UNC path pointing to the appropriate item. I created a .bat file that is ran after the AFTERCMD=
That .bat file then calls out the install of E-drawings, PDMWorks, a couple of custom applications, it aslo copies over the toolbox.ini file so everyone is looking to the network location of the toolbox parts. Someone on another forum told me how to create the .bat files. It is very simple. For those of you like me that didnt/dont know how to create a .bat file here is what I did. Opened a notepad document, saved it, then renamed the extention to .bat Do a search on google for batch commands and you will find easily all the things you can do.
In my bat file I have the following information.
REM E-Drawings 2005 will now be installed
"\\UNC Path\E-drawings\eDrawingsProEnglish.exe"
PAUSE
REM PDMWorks 2005 will now be installed
"\\UNC Path\pdmwclient\setup.exe"
Pause
REM The Custom Properties application will now be installed.
"\\UNC Path\CP_APP\SW_Properties.msi"
Pause
REM The updated Toolbox.ini file will now be copied over your current toolbox.ini file
COPY "\\UNC Path\toolbox.ini" "C:\Program Files\SolidWorks2005\Toolbox"
REM Several files needed to run the Custom Properties application with be copied to the appropriate directories
Copy "\\UNC Path\VB5DB.dll" "C:\WINDOWS\system32"
Copy "\\UNC Path\VB5DB.dll" "C:\WINNT\system32"
REM DAO 3.5 will now be installed. This is needed to support the custom properties application
"\\UNC Path\CP_APP\DAO35\DISK1\setup.exe"
PAUSE
REM You are now finished with your installation of SolidWorks2005.
Enjoy, it works well after you get past the quirks. Sometimes the application will ask for a UNC path and you cant enter one. That is when you will locate the install to your local drive. sometime I have not been able to enter a path to run before or after the SW install. Skip those if it gives you problems because you will just edit the .ini file later anyway and add those paths then.
Hope this isnt too long for you all to read.
Josh