*** We shall not be liable for any loss or damage of whatever nature (direct, indirect, consequential, or other) whether arising in contract, tort or otherwise, which may arise as a result of your use of (or inability to use) this website, or from your use of (or failure to use) the information on this site.*** 3ds max AutoCAD & Computer repairs and programs I find useful and or free.
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
Subscribe to:
Post Comments (Atom)
Popular Posts
-
FXSAPIDebugLogFile.txt is related to the Windows Fax and Scan service. To disable this service: Control Panel > Programs and Feat...
-
AutoCAD Fatal ERROR: Unhandled access violation reading 0X0018 Exception at e0511224h Recover or Audit and purge file. REPAIR AutoCAD fro...
-
In AutoCAD 12 and higher type "Import" and select STEP file format- select file and open OR download Sycode http://www.sycode....
-
Extract text from Autocad and create an Excel file. command: EATTEXT Start up the EATTEXT command and you w...
-
http://www.symantec.com/connect/articles/understanding-error-1603-fatal-error-during-installation This error message is displayed by the M...
-
DispSilh 0 PLANTINSULATIONDISPLAY <ON>: ON in Plant 3d NavisWorks In the Standard properties Turn OFF insulation “Iso Inf...
-
Licensing: The security system (Softlock license manager) is not functioning or is improperly installed 1. Msconfig uncheck any FLEXnet p...
-
1.0 Attach reference files and Merge (xref & bind ) Microstation 1.1 File >References Tools > Attach ...
-
WSCOMMCNTR4.EXE INFOCENTER TURN OFF Windows 7 AutoCAD 2014. Other versions will have a similar key. - Need to edit the registry. Good pra...
-
DRAG AND DROPS DragHeight and DragWidth HKEY_CURRENT_USER\Control Panel\Desktop In the right side pane, look for the following Values....
No comments:
Post a Comment