Showing posts with label install. Show all posts
Showing posts with label install. Show all posts

Wednesday, June 18, 2008

ProteinMaterialLibrary.cab install - download problems

Autodesk announced the web update 1 for RAC last week. During the installation process, the installer tries to download the ProteinMaterialLibrary.cab, which is 679 MB. Autodesk strongly recommends us to update the library because of the changes made to them. However, it looks like the ProteinMaterialLibrary.cab download is not usually completed successfully. (http://forums.augi.com/showthread.php?t=78745&page=4)

There is a direct link to the ProteinMaterialLibrary.cab but I am NOT sure whether this is the Web Update 1 version. Autodesk is giving away this update only to subscription customers. However this link can be accessed by anyone, and so this may not be the updated CAB!!!

I asked autodesk about this via the subscription support request.... They are asking us to do download the installer again to reinstall RAC (another 400MB)

hmm...

Monday, May 12, 2008

Network Install script for Revit Architecture 2009 deployment

We have been using a script to install RAC 2009 for our custom install. I thought I would post it hoping it might be useful for others. (or others can find mistakes and make this better). Use this at your own risk.

  1. Do a typical Install of RAC2009 from DVD on one computer. Most of the steps outlined below are done in this computer.
  2. Copy all the relevant content from relevant folders in this computer to a network location like "z:\Revit\2009". (We copy
    imp templates; imp library from "C:\Documents and Settings\All Users\Application Data\Autodesk\RAC 2009";
    import / export settings, etc from "C:\Program Files\Revit Architecture 2009\Data"; ) etc.
  3. Copy and backup Revit.ini as revit.ini.default.
  4. Edit the revit.ini file directly (if you know what you are doing) or using the settings menu > options command, so that all the content is pointing to the network location. We prefer to leave the rendering library in individual boxes.; add paths in INI file to any other libraries as needed; Go to file menu in Revit and select shared parameters file, import/export settings, etc. Add paths, to API dlls etc. in the revit.ini. Open this revit.ini file and check if there is anything under [Partitions]. If there is, remove this section.
  5. Backup "C:\Program Files\Revit Architecture 2009\Program\keyboardshortcuts.txt" and then edit it using note pad to suit your office standards.
  6. You need to download separately "ArchitectureFamiliesImpENU.chm" and "TutorialsArchitectureImpENU.chm" from autodesk.
  7. When we create a network deployment, we set it to NOT install any content. Most of the content is accessed from the network. However, some content, settings is accessed from the local machine. So, we need to copy some files to every local machine (like Revit.ini; keyboardshortcuts.txt, etc.) after a typical network installation. We put all the files to be copied in one network folder, and run a script to do this.
  8. We copy all the customized content and settings from the computer where we had done the installation form the DVD to \\Ci-adv\apps\CADD\RVT2009\CI\copy . The following files / folders reside in this folder:
    "Data" folder has all contents of "C:\Program Files\Revit Architecture 2009\Data"
    "API" folder has all our DLLs, plugins, etc.
    "Training" folder has all the contents of "C:\Documents and Settings\All Users\Application Data\Autodesk\RAC 2009\Training"
    "Program" folder has the downloaded "ArchitectureFamiliesImpENU.chm" and "TutorialsArchitectureImpENU.chm"; the edited Revit.ini file and the edited keyboardshortcuts.txt file from "C:\Program Files\Revit Architecture 2009\Program"; and a dummy "patch.001" file. (this file is used to track future customizations, etc.)
    All these folders will be eventually copied to "C:\Program Files\Revit Architecture 2009" folder in individual boxes.
  9. The following is the edited version of the BATCH file we run to install. You can make changes as per your situation. Use this at your own risk. You can copy and paste the text below in a text file and save it with a BAT extension....you have to edit this to point to your server, etc. (shown in red color)

rem *************************

@echo off
rem location to our rac install link file, created by the network deployment wizard is here in the following example: \\Ci-adv\apps\CADD\RVT2009\ciuser32.lnk
rem this installation does NOT install any content. Most of the content reside on a network drive
echo install started... please wait
start "CI Revit Install" /wait \\Ci-adv\apps\CADD\RVT2009\AdminImage\Setup.exe /I \\Ci-adv\apps\CADD\RVT2009\AdminImage\ciuser32.ini
echo install started... please wait
echo After Revit Installation is complete,
pause
@echo on
REM rename out of the box files
rename "C:\Program Files\Revit Architecture 2009\Program\TutorialsArchitectureImpENU.chm" TutorialsArchitectureImpENU-default.chm
RENAME "C:\Program Files\Revit Architecture 2009\Program\Revit.ini" revit-default.ini
RENAME "C:\Program Files\Revit Architecture 2009\Program\KeyboardShortcuts.txt" KeyboardShortcuts-default.txt

Rem Now copy customized content from the "copy" folder; xcopy command with these options copies the folder and its subfolders;

xcopy "\\Ci-adv\apps\CADD\RVT2009\CI\copy" "C:\Program Files\Revit Architecture 2009" /i /s /c /g /h /f /y

@echo Revit 2009 Install completed!
pause

@echo off

@echo if you DONT want to install add-ons and plugins, press Cntrl-C; Else

rem We install RVT2009 Batch Print; worksharing etc that are available for subscription customers...

start "CI Revit Install2" /wait Y:\CADD\RVT2009\CI\batch_print_for_revit_2009_setup.exe
start "CI Revit Install3" /waitY:\CADD\RVT2009\CI\worksharing_monitor_for_revit_2009.exe
pause

exit

rem *******************

Friday, March 21, 2008

Install custom Revit commands

Sometime back I created a custom utility to install revit command and uploaded at augi.com at http://forums.augi.com/showthread.php?t=67696 This exe file installed custom command DLLs one at a time.

I uploaded a tweaked version of this utility at
http://forums.augi.com/showthread.php?p=824503
that might help CAD Managers. This utility installs a bunch of DLLs in a system. CAD Managers can run this utility through a windows script or batch file.

You have to be a member to access augi links. Membership is free. (Or you can email me if you want a copy of the ZIP file that contains the instructions and the code)