PDA

View Full Version : Command LIne puts build in wrong directory



EdDressel
06-26-2002, 02:20 PM
It seems that the command line compiler will only output to the directory named after the project, eg if the project name is "MyProject.ISM" it will create and put the build in a folder named "MyProject", even if the command line instructs otherwise.

I am running the compand line compiler witht the following command line options:

-p "C:\Temp\Test.ism" -r WebDeployment -comp -b "c:\Temp\Test1" -s -e y

(No space between the '-' and 'b')

The build is placed in 'c:\Temp\Test\...' , not 'c:\Temp\Test1' as the command line would indicate.

Build results from this are below. Please advise.

Thanks
Ed Dressel

//BUILD RESULTS
Microsoft (R) Cabinet Tool - Version 5.00.2134.1
Copyright (C) Microsoft Corp. 1981-1999.

Creating new cabinet 'C:\Temp\Test\Express\WebDeployment\DiskImages\DISK1\~xxx1.tmp' with compression 'LZX:21':
-- adding C:\Temp\Test\Express\WebDeployment\DiskImages\DISK1\Default.msi

Completed successfully

Microsoft (R) Cabinet Tool - Version 5.00.2134.1
Copyright (C) Microsoft Corp. 1981-1999.

Creating new cabinet 'C:\Temp\Test\Express\WebDeployment\DiskImages\DISK1\setup.cab' with compression 'NONE':
-- adding C:\Temp\Test\Express\WebDeployment\DiskImages\DISK1\setup.exe
-- adding C:\Temp\Test\Express\WebDeployment\DiskImages\DISK1\setup.inf

Completed successfully

Microsoft (R) Cabinet Tool - Version 5.00.2134.1
Copyright (C) Microsoft Corp. 1981-1999.

Creating new cabinet 'C:\Temp\Test\Express\WebDeployment\Test\setup.cab' with compression 'NONE':
-- adding C:\Temp\Test\Express\WebDeployment\DiskImages\DISK1\setup.exe
-- adding C:\Temp\Test\Express\WebDeployment\Test\setup.inf

Completed successfully
-p "C:\Temp\Test.ism" -r WebDeployment -comp -b "c:\Temp\Test1" -s -e y

Chandima
07-12-2002, 02:06 PM
Try using the following Command Line. You seemed to have dropped the -c befor the COMP.

-p "C:\Temp\Test.ism" -r WebDeployment -c COMP -b "c:\Temp\Test1" -s -e y