7z Setup Sfx Silent Install Command
Solution:To deploy DWG TrueView in silent mode (that is, without any user interaction), you need to extract the installation files to a folder on a shared network. This can be done downloading DWG TrueView and start the downloaded file. It is asking for a folder to extract the content.Use the following command in either a batch routine or on the command line to deploy the program:cd Setup.exe /qb /i /language en-usFor example:cd h:WorkstationsDWGTrueviewSetup.exe /qb /i /language en-us Note: To install without progress bar you need to add /quiet flag to the command above.
7z Setup Sfx Silent Install Command 1
7zip Sfx Run Setup
Since 7-zip is used, simply create a self-extracting archive in.exe. And run it with switches -o and -y.I use it to save space on USB drive. For instance, I run VDiskAir application infrequently. I create a self-extracting archive of the VDiskAir program folder (about 15MB): 7z a -SFX -mx9 VDiskAir.exe VDiskAir folder pathNB: -mx9 is used here to maximise compression.I create a DOS BAT to run the self-extracting VDiskAir.exe (about 5MB) created, save it as VDiskAir.bat containing: VDiskAir.exe -o%TMP% -y%TMP%VDiskAirVDiskAir.exeI'm not worried that the VDiskAir folder (in%TMP% extracted with VDiskAir program files) is undeleted after running VDiskAir this way, since I have a BAT script to clear%TMP% on shutting down/starting up.