Wednesday, September 19, 2018

AutoCAD variables and settings


AutoCAD variables and settings

1.1          PURGE AND EDIT ALL BAD FILES AND CRASHED FILES!
1.2          FILEDIA CMDDIA= 1 open dialog boxes.
1.3          Ribbon and Ribbonclose to show ribbons
1.4          PublishCollate 0 = 1 Sheet 1 = multi Sheet is creates
1.5          Sdi  1=one drawing 0= multiple drawings. Open single or multiple dwg
1.6          ConvertPstyles  change ctb to stb and stb to ctb
1.7          Vpcontrol   how do I turn off [-][Top][2D Wireframe]
1.8          Hideprecision  1=double 0 = single precision. Acad2012doc.lsp.  (setvar "Hideprecision" 1)
(princ "loaded.")(princ "loaded.") (setvar "hideprecision" 1) (setvar "dispsilh" 1) (setvar "dblclick" 1);; Silent load. C:\Program Files\Autodesk\AutoCAD 2012 - English\Support\acad2012doc.lsp
1.9          Dispsilh  0=Off 1=On use On.Controls display of silhouette edges of 3D solid and removes the internal lines when plotting.
1.10       Navvcube  Nave cube Command: Enter an option [ON/OFF/Settings] <ON>: off
1.11       Adcenter  command can be used to copy the following between drawing files (or from your template files): Dimension Styles, Layers, Layouts, Linetypes, Multi-Leader Styles, Table Styles and Text Styles.
1.12       Ucsdetect = 0, rotating ucs when picking solids.
1.13       Burst and Explode commands to change blocks to individual objects
1.14       Filetab Filetabclose turn on the top tabs in 2014
1.15       Layerevalctl = 0 notification of proxy turn off proxy notice
1.16       PROXYNOTICE=0 No warning box displayed PROXYSHOW=1 Show graphic images
PROXYGRAPHICS=1 Save images with drawing
1.17       (setq matt (handent " 8C925")) ;Get bad entities from audit. Move !matt
(Command "_select" "_g" "AT_HMVYCGIK_24") Autopipe Audit log select.
1.18       Layiso “S” off lock or fade isolated layers. Layuniso Uninsolate layers
1.19       Vtenable=0 Vtoptions Smooth view transitions can be on or off for panning and zooming
1.20       Tilemode=1 ModelSpace 0 PaperSpace
1.21       Openpartial Type:      Integer Saved in: Registry
1.22       LayLockFadeCtl = 0 fade in locked layers.
1.23       FieldDisplay 0=Fields are displayed with no background
1.24       Snap “Style” Iso - rotate snap Style Standard.
1.25       AePdfFontAlt=0 electrical font switching. On Map SHX fonts to Truetype fonts during publishing to PDF. The mapping is defined in the acade.fmp file.
1.26       ExportLayout Creates a visual representation of the current layout in the model space of a new drawing.
1.27       Startup 0 Starts a drawing without defined settings.1 Displays the Startup or the Create New Drawing dialog box. 2 The Start tab is displayed. If available in the application, a custom dialog box is displayed. 3The Start tab is displayed and the ribbon is pre-loaded when you open or create a new drawing
1.28       SolProf Creates 2D profile images of 3D solids for display in a layout viewport.
1.29       INDEXCTL Initial value = 1. 0 Controls whether a drawing file can be worked on before it is fully open. Two conditions must be met for this system variable to have an effect. The drawing must have been saved with paper space displayed (TILEMODE=0), and the INDEXCTL=0 system variable must be set to a non-zero value.
0          Legacy behavior: A drawing must be fully opened before work can begin on it
1          Work can begin on the visible portions of a drawing before it is fully open
1.30       Mleaderstyle  get rid of ginex block
1.31       GSTESTBENCHMARK Graphics speed Appload "C:\Program Files\Autodesk\AutoCAD 2016\GsTest.arx"

  Paths


1.1          Express tools - Menuload C:\Program Files\Autodesk\AutoCAD 2014\UserDataCache\Support\acetmain.cuix
1.2          C:\Users\User\AppData\Roaming\Autodesk\AutoCAD 2012 - English\R18.2\enu\support
1.3          C:\Program Files\Autodesk\AutoCAD 2012 - English\Support\acad2012doc.lsp

Flattening

Try a AECTOACAD –exporttoautocad command. Flatten and Flatshot.  It normally takes 3d CAD files and flattens them just fine for our company.-format –2000 ---suffix = 1 enter enter enter(it will create a NEW CAD file where ever the current file was located. so just close out of the current file and go to the same folder it was in and you will see a new file with a "1" after it, open it and it should all be flat)fyi make sure you are not trying to flatten a block, must BURST it first. 

Search for Autocad license longer
Start > Right-click My Computer > Properties > Advanced system settings > Environment Variables > New System variable>
Variable Name = FLEXLM_TIMEOUT 
Variable Value = 1000000
1 million microseconds, increase by 1 million if no connection.


Converpstyles Autocad STB pentables not showing need CTB

In autocad type Converpstyles

Autocad not getting correct pentables. They show up as stb and I want ctb.

Saturday, September 15, 2018

ICAWebWrapper.msi Citrix Online Plug-in C:\Users\user\AppData\Local\Citrix\Citrix Receiver 4.12\ICAWebWrapper.msi The feature you are trying to use is on a network resource that is unavailable.

Browse to  ICAWebWrapper.msi and run as administrator.

"C:\Users\user\AppData\Local\Citrix\Citrix Receiver 4.12\ICAWebWrapper.msi"


 
The feature you are trying to use is on a network resource that is unavailable.

Tuesday, June 26, 2018

NavisWorks nightly file creation list append list in batch file


C:\Program Files\Autodesk\Navisworks Simulate 2016\FiletoolsTaskRunner.exe you could manually make this batch as files change.
Batch file create a list of all the DWG files in a folder and all the subfolders.
Let me know if you have a better way.

NavisWorks nightly file creation list

1. Make a list of dwg files on folders and subfolders.


FOLDER1.BAT
REM Create File list. /s subdir, /b no header, \*.dwg to folder path,  >> append
dir "C:\1\*.dwg" /s /b >> "C:\List2.txt"

FOLDER2.BAT
dir "C:\2\*.dwg" /s /b >> "C:\List2.txt"

2. Create second list with file names like OLD and CORRUPT removed

REMOVE_FILE_NAMES.BAT
REM Delete lines with certain strings, /v prints only lines that do not contain a match., /I ignore case.
findstr /V /I "RECOVER VOID OLD CLASH CORRUPT" "C:\List2.txt" > "C:\List.txt"

3. Delete and Append each folder to new list every night.

CALL.BAT
Del "Path\List2.txt"
Call "Path\FOLDER1.BAT"
Call "path\FOLDER2.BAT"

4. Use Task Scheduler to run CALL.BAT then 10 min later run REMOVE_FILES.BAT then 10 min later CALL.BAT

5. Navisworks batch
C:\Program Files\Autodesk\Navisworks Simulate 2016\FiletoolsTaskRunner.exe

C:\Program Files\Autodesk\Navisworks Simulate 2016\FiletoolsTaskRunner.exe /i "C:\List.txt" /osd /log "C:\NAV.log" /appendlog /version 2014

Monday, June 25, 2018

Excel Cannnot accesss the file solver.xlam

Windows 10 Excel Solver: cannot access c:\program files (x86)\Microsoft office\Office 14library\solver\solver.xlam



File > Options Add ins >  Disabled items (In the Manage dropdown select) > Go > Enable the program



You can also add it from the com addins

Tuesday, June 5, 2018

AutoCAD manually transfer settings

AutoCAD manually transfer settings from one computer to another so settings look exactly the same.
 
Also you and go to start menu > all programs > Autodesk > AutoCAD version  > Migrate Custom Settings and export and import settings.
 
"C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Autodesk\AutoCAD 2017 - English\Migrate Custom Settings\Export AutoCAD 2017 Settings.lnk"

How to manually transfer AutoCAD user settings

Issue:
You would like to know how to manually transfer your
AutoCAD settings to another user account or to another computer. This
process can be used to apply working settings to a user account that is
unable to initialize AutoCAD due to a redirected profile folder or a
similar environment being in place.

Solution:

User
settings in AutoCAD for Windows are stored in two folders and a
registry path (in AutoCAD for Mac, see the link referenced below). After
setting up AutoCAD how you would like it to be configured, or at least
run the program once to make sure it works and has gone through its
secondary installer process, follow these steps to copy over the
settings to another account or computer:
  1. Exit out of AutoCAD 20xx.

  2. Make a copy of the following two folders in a location accessible by all user accounts:
    For Windows Vista, 7, 8, and 10:

    C:\Users\<user>\AppData\Roaming\Autodesk\AutoCAD 20xx
    C:\Users\<user>\AppData\Local\Autodesk\AutoCAD 20xx
    For Windows XP:

    C:\Documents and Settings\<user>\Application Data\Autodesk\AutoCAD 20xx
    C:\Documents and Settings\<user>\Local Settings\Application Data\Autodesk\AutoCAD 20xx Note: These paths contain hidden folders. You must turn on "show hidden files" in Folder Options to see them.

  3. Export a copy of the AutoCAD registry key:


    1. Hit WINDOWS-R on the keyboard to bring up the Run window, enter REGEDIT and click OK.

    2. Find the following registry key:

      HKEY_CURRENT_USER\Software\Autodesk\AutoCAD\Rxx.x\ACAD-xxxx:40x

      This
      path is unique for each version of AutoCAD. You can see which
      'ACAD-xxxx' refers to by selecting it and then looking at the keys on
      the right side of the Registry Editor. One of the keys will show the
      install path to the AutoCAD it applies to. The '40x' number signifies
      the language version of AutoCAD.


    3. Right-click the 'ACAD-xxxx:40x' folder and choose Export.

    4. Enter a file name of your choice, choose a location to save the file, and then click Save.

    5. Close the Registry Editor.

  4. Open the .reg
    file in Notepad and do a find/replace for the user account name to make
    sure the destination user name will be used where needed.


  5. Log in to the destination user account.

  6. Copy over the two folders to their respective locations.

  7. Double-click the .reg file to apply it to the registry. The .reg file can be deleted after use unless you wish to use it again.

 

Friday, June 1, 2018

Packages included in Autocad One with Specialized Toolsets, and Collections AEC - Architecture, Engineering & Construction,PDMC - Product Design & Manufacturing

1.0 AUTOCAD ONE - AUTOCAD WITH SPECIALIZED TOOLSETS
AutoCAD
Electrical
Architecture
Map 3D
Mechanical
MEP
Plant 3D
Raster Design
mobile app
web app - They will NOT include Simulate, Advanced Steel and Civil

2.0 AEC - ARCHITECTURE, ENGINEERING & CONSTRUCTION COLLECTION
Revit 
AutoCAD
Civil
Infraworks
Navisworks-Manage
Raster Design
Vehicle Tracking
Map 3d
Architecture
Electrical
MEP
Plant 3D
FormIt Pro
Insight
Recap Pro
Structural Bridge Design
Advanced Steel
Revit Live
Robot Structural Analysis Pro
Dynamo Studio
Fabrication CadMEP
AutoCAD Moble app
Autodesk Rendering
3ds MAX
Structural Analysis for Revit
Cloud Storage

3.0 PDMC - PRODUCT DESIGN & MANUFACTURING COLLECTION
Inventor Professional
AutoCAD
Autodesk Nastran In-CAD
Inventor HSM
AutoCAD Architecture
AutoCAD Electrical
AutoCAD Mechanical
AutoCAD mobile app
Cloud storage (25 GB)
Factory Design Utilities
Fusion 360
Navisworks Manage
HSMWorks
ReCap Pro
Autodesk Rendering
Vault Basic
3ds Max

Popular Posts

Search This Blog

Blog Archive