March 13, 200719 yr Hi,I have a few cmd's with msi and mst commands within that require to be run from the local disc.I can copy the content off my WPI disc but in WPI 5.6 what command would I use to call the CMD file from the temp folder ?Thanks in advanceZorg
March 13, 200719 yr The easiest way to accomplish this is to make a batch file to copy the files an then install the application. This way you can use the %temp% variable. Something like:@echo offecho Copying files to local disk...mkdir "%temp%\something"xcopy * "%temp%\something" /E /Y /Fecho Installing application...cd "%temp%\something"start /wait msiexec.exe /i something.msi TRANSFORMS=something.mst /qncd ..rmdir something /S /Q...then put that batch file in the same folder as your installation files. Edited March 13, 200719 yr by zorphnog
Create an account or sign in to comment