DWG TrueView 2010 Fixlet issues

(imported topic written by bigfix1191)

Hi All

Help!

I cant see to get this working

// 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 2010

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

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

extract dwgtrueview2010.tmp

waithidden cmd /c move “__Download\DWG Trueview 2010” “C:\Windows\MSIInst”

// Install TrueView 2010

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

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

It FAILS unfortunately - I think it might be because of I havent got the dependencies in there.

Can anyone tell me what dependencies are needed for this install - or if I am making an error?

Many thanks

Ben

(imported comment written by Lee Wei)

Hello Ben,

Your statements look OK but hard to tell until we run it.

The best way to see the error and to pinpoint the location of the error is to look at the client log file. It will tell you exactly the line causing the problem.

If you have not tried the Fixlet Debugger, it is also a useful tool to debug ActionScripts.

http://support.bigfix.com/fixlet/

Lee Wei