DWG TrueView
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
TrueView 2013 deployment
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I have downloaded the newest package with Design Review and TrueView 2013. I am trying to automate the deployment via batch for SCCM packaging for 1400+ computers in 26 offices. With all previous versions of the apps I have been able to run the dwgviewr.msi files, but for some reason TrueView will not allow it to be installed via the msi and only when running Setup.exe. Am I missing something with this version?
BIM/CAD Technical Specialist
. . . . . . . . . . . . . . . . . . . . . . . . . . . . .
SSOE Group
www.linkedin.com/in/marklabelljr
Re: TrueView 2013 deployment
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
what is the url for the combined desgn review and trueview 2013 package?
Re: TrueView 2013 deployment
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Link to the install.
http://usa.autodesk.com/design-review/download/
Also if you download the TrueView only install seperately and try to deploy via the msi the same scenario happens were it requires the Setup.exe to install the application.
BIM/CAD Technical Specialist
. . . . . . . . . . . . . . . . . . . . . . . . . . . . .
SSOE Group
www.linkedin.com/in/marklabelljr
Re: TrueView 2013 deployment
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I'm seeing this as well.
I automatically deployed the MSI file, thinking it would work like the 2012 version and told the GPO to uninstall the previous version first. But when it goes to install the new version, it fails.
Now I'm stuffed? ![]()
The Design Review MSI works fine.
Re: TrueView 2013 deployment
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Currently I am calling the ADR msi then I use the below syntax to quielty call the setup.exe for TrueView. Not preferred (since it technically reruns ADR) but it is working in for a few installs that I need to do right away. The other 1396 installs can hopefully wait for a better solution.
"%~dp0setup.exe" /w /qb /i %~dp0Setup.ini
%~dp0 = the relative path of the file.
BIM/CAD Technical Specialist
. . . . . . . . . . . . . . . . . . . . . . . . . . . . .
SSOE Group
www.linkedin.com/in/marklabelljr
Re: TrueView 2013 deployment
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I have made a Transform file (.MST) available here, and also on my website at http://www.barbarianhamster.com/Services/DontRunSe
The full gory details of how it came about, and what it does, are available on my blog, http://barbarianhamster.blogspot.com
James Keirstead
http://www.linkedin.com/in/jameskeirstead/
Senior Information Systems Engineer
-----
Perigon International, Inc.
http://www.perigoneng.com
http://www.linkedin.com/company/perigon-internatio
Re: TrueView 2013 deployment
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I've been playing around and found the following works so far pretty well...
setup.exe /Q /W /I setup.ini
Get the Visual LISP Developer's Bible 2011 Edition, and the AutoCAD Network Administrator's Bible 2012 Edition on Amazon Kindle
Re: TrueView 2013 deployment
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
As above. I've just used "%deployment dir%setup.exe" /W /QB /I
XP 32-Bit SP3
Re: TrueView 2013 deployment
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
This works a treat, thanks a lot.
Re: TrueView 2013 deployment
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Editing the msi did the trick! Deployment ready to roll...
echo ***Install PreReqs***
rem Do this first because some uninstalls fail because of a bad install of VCredist 2005
"%~dp0support\VCRedist\2005\vcredist_x86.exe" /q:a /norestart /c:"vcredist_x86.exe /q:a /c:""msiexec /i vcredist.msi /qn /norestart /l*v %temp%\vcredist_x86.log"" "
echo .
"%~dp0support\VCRedist\2008\vcredist_x86.exe" /q:a /norestart /c:"vcredist_x86.exe /q /norestart"
echo .
"%~dp03rdParty\DirectX\DXSETUP.exe" /silent
echo.
echo ***Removing 2010 Products***
echo ***Uninstalling ADR***
MsiExec.exe /x {55D9E026-DCB0-46FF-B60A-68B972228CF6} /passive
echo ***Uninstalling TV***
MsiExec.exe /x {5783F2D7-8028-0409-0000-0060B0CE6BBA} /passive
MsiExec.exe /x {5783F2D7-8028-0409-0100-0060B0CE6BBA} /passive
echo ***Unistall 2011 Products***
echo ***Uninstalling ADR***
MsiExec.exe /x {8D20B4D7-3422-4099-9332-39F27E617A6F} /passive
echo ***Uninstalling TV***
Msiexec.exe /x {5783F2D7-9028-0409-0000-0060B0CE6BBA} /passive
Msiexec.exe /x {5783F2D7-9028-0409-0100-0060B0CE6BBA} /passive
echo ***Unistall 2012 Products***
echo ***Uninstalling ADR***
MsiExec.exe /x {A49BDCBE-590E-43A6-AB77-7C40E499B7C1} /passive echo
***Uninstalling TV***
Msiexec.exe /x {5783F2D7-A028-0409-0000-0060B0CE6BBA} /passive
Msiexec.exe /x {5783F2D7-A028-0409-0100-0060B0CE6BBA} /passive
echo ***Unistall ADR Plug-ins***
echo ***Uninstalling ADR DGN plugin***
MsiExec.exe /x {8F7A766B-9E2E-4895-B4B2-958D035F09B9} /passive
echo ***Uninstalling ADR JT plugin***
MsiExec.exe /x {F4C0A7CD-3A4C-4275-9CF1-9CD5136E2FE2} /passive
echo ***Install ADR 2013***
"%~dp0x86\ADR\SetupDesignReview2013.msi" /qn /norestart DEFAULTFILETYPE=dwf ADSK_DESKTOPSHORTCUT_1=0 ADR_DONOTSHOWAGAIN=1 ADR_NEXT_INITIAL_CHECK=1 PREFERENCELOCKED=1 HIDE_RESTAB=1
"%~dp0x86\DGN\SetupDesignReviewDGNImporter.msi" /qn /norestart
"%~dp0x86\JT\SetupDesignReviewJTImporter.msi" /qn /norestart
echo ***Install TV 2013 x64***
"%~dp0support\VCRedist\2005\vcredist_x64.exe" /q:a /c:"vcredist_x64.exe /q:a /c:""msiexec /i vcredist.msi /qn /norestart /l*v %temp%\vcredist_x64.log"" "
"%~dp0support\VCRedist\2008\vcredist_x64.exe" /q:a /c:"vcredist_x64.exe /q:a /c:""msiexec /i vcredist.msi /qn /norestart /l*v %temp%\vcredist_x64.log"" "
"%~dp0x64\dwgviewr\dwgviewr.msi" /qn ADSK_DESKTOPSHORTCUT_1=0
BIM/CAD Technical Specialist
. . . . . . . . . . . . . . . . . . . . . . . . . . . . .
SSOE Group
www.linkedin.com/in/marklabelljr


