Results 1 to 5 of 5

Thread: Silent Installs of DWG TrueView 2009

  1. #1
    The Silent Type RobertB's Avatar
    Join Date
    2000-01
    Location
    Seattle WA USA
    Posts
    5,859
    Login to Give a bone
    0

    Lightbulb Silent Installs of DWG TrueView 2009

    For those that don't do a GPO install, performing a silent install of DWG TrueView 2009 simply using the .msi file appears to work, until you try to execute the application. There is a very real chance that some prerequisite is missing and then the application will fail to start.

    So I developed a .cmd file that executes on Windows XP 32-bit machines that will perform the prereq work in addition to the .msi install of DWG TrueView. If you need to do this on a 64-bit machine, or find some issue on Vista machines, please reply to this thread. I assume that version 3.1 of MSIExec is installed. Probably a bad assumption, but I digress.

    This command file needs to run with local admin rights.

    Replace <server UNC path> with your actual location for the DWG TrueView install files. I've extracted ours to a subfolder called DWG TrueView 2009. Note that if you run out of environment space attempting to set the variable, you can place the actual string in all the appropriate locations and dispense with the variable.

    I also perform the install of the AutoCAD Architectural Object Enabler in the command file. Follow the instructions in this thread for more details on how to perform the silent install of an OE.

    Unfortunately, as of the middle of August 2008, there is no OE for AutoCAD MEP. Still. <groan>

    Finally, I also perform a registry merge to populate the unnamed profile with our printers and other settings.

    Code:
    @echo off
    set instpath=<server UNC path>\DWG TrueView 2009
    "%instpath%\support\dotnetfx\dotnetfx.exe" /q /c:"install /l /qn"
    msiexec /norestart /quiet /i "%instpath%\support\VBA\vba6.msi"
    "%instpath%\support\DirectX\DXSETUP.exe" /silent
    msiexec /norestart /quiet /i "%instpath%\support\msxml\msxml6.msi"
    msiexec /norestart /quiet /i "%instpath%\support\VCRedist\x86\vcredist.msi"
    msiexec /norestart /passive /l*v "%temp%\DWGVIEWRInstall.log" /i "%instpath%\DWGVIEWR.msi"
    msiexec /norestart /passive /l*v "%temp%\ACA OE.log" /i "%instpath%\OE ACA 2009 for DWG TV 2009\6a.tmp_DWG_TrueView_2009_-_English_(United_States).msi"
    regedit /s "%instpath%\DWG TrueView 2009.reg"
    R. Robert Bell
    Design Technology Manager
    Stantec
    Opinions expressed are mine alone and do not reflect the views of Stantec.

  2. #2
    Administrator rkmcswain's Avatar
    Join Date
    2004-09
    Location
    Earth
    Posts
    9,803
    Login to Give a bone
    0

    Default Re: Silent Installs of DWG TrueView 2009

    Robert, have you seen this?
    http://discussion.autodesk.com/threa...hreadID=685870
    I tried the above and it seems to work also.

    Also, it's probably worth noting that the "registry merge" is needed for each user that logs on. This is unfortunate since we do these installs while logged on as local admin, while we may not even know who the machine is going to at this point....
    R.K. McSwain | CAD Panacea |

  3. #3
    The Silent Type RobertB's Avatar
    Join Date
    2000-01
    Location
    Seattle WA USA
    Posts
    5,859
    Login to Give a bone
    0

    Default Re: Silent Installs of DWG TrueView 2009

    Quote Originally Posted by rkmcswain View Post
    Robert, have you seen this?
    http://discussion.autodesk.com/threa...hreadID=685870
    I tried the above and it seems to work also.

    Also, it's probably worth noting that the "registry merge" is needed for each user that logs on. This is unfortunate since we do these installs while logged on as local admin, while we may not even know who the machine is going to at this point....
    No, I had not seen that post, since it was posted after my last web search on the topic.

    I'm not sure which method I prefer. At least the .cmd method will avoid the DirectX setup issue noted in that post.

    You are correct about the .reg merge. We actually have that in our login script (check for .exe then merge) in addition to the install command file.
    R. Robert Bell
    Design Technology Manager
    Stantec
    Opinions expressed are mine alone and do not reflect the views of Stantec.

  4. #4
    Administrator rkmcswain's Avatar
    Join Date
    2004-09
    Location
    Earth
    Posts
    9,803
    Login to Give a bone
    0

    Default Re: Silent Installs of DWG TrueView 2009

    Quote Originally Posted by RobertB View Post
    You are correct about the .reg merge. We actually have that in our login script (check for .exe then merge) in addition to the install command file.
    I've been meaning to do that (add to logon script). Thanks for the reminder
    R.K. McSwain | CAD Panacea |

  5. #5
    100 Club
    Join Date
    2008-10
    Location
    Auckland, New Zealand
    Posts
    115
    Login to Give a bone
    0

    Default Re: Silent Installs of DWG TrueView 2009

    Quote Originally Posted by RobertB View Post
    Finally, I also perform a registry merge to populate the unnamed profile with our printers and other settings.
    Thread dig...

    You could always just use something like orca or Insted (my pref) to create a transform or just edit the msi to put the required profile information directly into the install so you don't need to do an merge's / run a reg insert after the install.

Similar Threads

  1. Replies: 6
    Last Post: 2012-04-09, 09:47 PM
  2. Autodesk MSI silent installs
    By ron.sanpedro in forum Revit - Hardware & Operating Systems
    Replies: 0
    Last Post: 2010-04-22, 10:39 PM
  3. Trueview 2009 install error
    By RobertAitken in forum DWG TrueView - General
    Replies: 9
    Last Post: 2009-03-06, 03:01 AM
  4. Hidden commands you can use in Trueview 2009
    By NerdlingOne in forum DWG TrueView - General
    Replies: 1
    Last Post: 2008-12-22, 01:31 AM
  5. DWG TrueView 2009 is now available
    By rkmcswain in forum DWG TrueView - General
    Replies: 0
    Last Post: 2008-03-26, 06:56 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •