DWG Trueview Package 2010

(imported topic written by biggyfix91)

Has anyone packaged the above before?

It requires the following pre-requisites - DirectX, msxml, NLSDL, VCRedist.

I am thinking at the moment the only way aroung this is creating 5 fixlets - one for the install and four others for the pre-reqs. This of course is going to take a bit of time. If I don’t do this then if a machine has one of the pre-reqs already installed in will go down as a FAILED. So in a effect a baseline.

This all seems a bit much for a DWG Viewer!

Any thoughts people?

Colin

(imported comment written by biggyfix91)

This is the action script for 2009.

// Check for available disk space

//-------------------------------------

continue if {free space of drive of windows folder > 1500 * (1024 * 1024)}

// Create MSIInst directory

//-------------------------------

if {(not exist folder “C:\Windows\MSIInst”)}

waithidden cmd /c md C:\Windows\MSIInst

endif

// Download, Extract and Move TrueView 2009

//-------------------------------------------------------

download http://localhost:52311/Uploads/Autodesk/DWGTrueView/TrueView2009.tmp

extract TrueView2009.tmp

waithidden cmd /c move “__Download\TrueView2009” “C:\Windows\MSIInst”

// Install Prerequisites

//-------------------------

waithidden C:\WINDOWS\MSIInst\TrueView2009\msi\WindowsInstaller-KB893803-v2-x86.exe /quiet /norestart

waithidden msiexec /i C:\WINDOWS\MSIInst\TrueView2009\support\VCRedist\x86\vcredist.msi /qn /norestart

waithidden C:\WINDOWS\MSIInst\TrueView2009\support\dotnetfx\dotnetfx.exe /q /norestart

waithidden msiexec /i C:\WINDOWS\MSIInst\TrueView2009\support\msxml\msxml6.msi /qn /norestart

waithidden C:\WINDOWS\MSIInst\TrueView2009\support\DirectX\DXSETUP.exe /silent

// Install TrueView 2009

//---------------------------

waithidden msiexec /i “C:\WINDOWS\MSIInst\TrueView2009\DWGVIEWR.msi” /qn ALLUSERS=1 /norestart

(imported comment written by biggyfix91)

anyone had any experience of this? I am still struggling. Think its going to have to be a baseline.

Ben, any thoughts how to approach this?

Colin

(imported comment written by BenKus)

I think making separate individual Fixlets for each pre-req and them putting them in a baseline is a good idea… do you not like that approach?

Ben