How to check version of Revit file without opening Revit?
- Right click on Revit file, go to Open with - Notepad:
2. After Notepad will open our rvt as a regulair text file press CTRL+F to run find bar. Type there "B u i l d" (with space between letters) and click Find Next:
3. Version indicated, cheers:
Digital Project Manager (BIM) | MSc in BIM | Programming with AI to Automate Tasks
11 个月This is brilliant, but Notepad can't open huge models (>1GB)
Independent Architecture & Planning Professional
3 年following is a BATCH file that tells you which Revit or AutoCAD version your file is. Put the file on your desktop, name it AutoVER.BAT, give it a nice icon. to use: drag an RVT or DWG file into the AutoVER icon.
Independent Architecture & Planning Professional
3 年powershell -window minimized -command "" setlocal EnableDelayedExpansion set lf=^ REM ---------------------?AutoVER.BAT?by Eyal Shamir??S.P.B Civil Eng. -------------- ver. 1.06 if /I "%~x1" == ".dwg" GOTO :DWG if /I "%~x1" == ".bak" GOTO :DWG if /I "%~x1" == ".dwt" GOTO :DWG if /I "%~x1" == ".dxf" GOTO :DWG findstr /i /r /off /C:"F.o.r.m.a.t.:...2.0.2.2" %1 >nul && msg * "???"%~nx1!lf!"???R e v i t??2 0 2 2?" && exit findstr /i /r /off /C:"F.o.r.m.a.t.:...2.0.2.1" %1 >nul && msg * "???"%~nx1!lf!"???R e v i t??2 0 2 1?" && exit findstr /i /r /off /C:"F.o.r.m.a.t.:...2.0.2.0" %1 >nul && msg * "???"%~nx1!lf!"???R e v i t??2 0 2 0?" && exit findstr /i /r /off /C:"F.o.r.m.a.t.:...2.0.1.9" %1 >nul && msg * "???"%~nx1!lf!"???R e v i t??2 0 1 9??" && exit findstr /i /r /off /C:"R.e.v.i.t...2.0.1.8" %1 >nul && msg * "???"%~nx1!lf!"???R e v i t??2 0 1 8??" && exit findstr /i /r /off /C:"R.e.v.i.t...2.0.1.7" %1 >nul && msg * "???"%~nx1!lf!"???R e v i t??2 0 1 7??" && exit findstr /i /r /off /C:"R.e.v.i.t...2.0.1.6" %1 >nul && msg * "???"%~nx1!lf!"???R e v i t??2 0 1 6??" && exit msg * "???"%~nx1!lf!"???Unable to identify :-(??????" && exit exit :DWG findstr /i /r /off /C:"AC1032" %1 >nul && msg * "???"%~nx1!lf!"???ACAD 2018 - 2020" && exit findstr /i /r /off /C:"AC1027" %1 >nul && msg * "???"%~nx1!lf!"???ACAD 2013 - 2017" && exit findstr /i /r /off /C:"AC1024" %1 >nul && msg * "???"%~nx1!lf!"???ACAD 2010 - 2012" && exit findstr /i /r /off /C:"AC1021" %1 >nul && msg * "???"%~nx1!lf!"???ACAD 2007 - 2009" && exit findstr /i /r /off /C:"AC1018" %1 >nul && msg * "???"%~nx1!lf!"???ACAD 2004 - 2006" && exit findstr /i /r /off /C:"AC1015" %1 >nul && msg * "???"%~nx1!lf!"???ACAD 2000 - 2002" && exit findstr /i /r /off /C:"AC1014" %1 >nul && msg * "???"%~nx1!lf!"???ACAD??14?- LT98" && exit findstr /i /r /off /C:"AC1012" %1 >nul && msg * "???"%~nx1!lf!"???ACAD??13" && exit findstr /i /r /off /C:"AC1009" %1 >nul && msg * "???"%~nx1!lf!"???ACAD??11?-?12" && exit findstr /i /r /off /C:"AC1006" %1 >nul && msg * "???"%~nx1!lf!"???ACAD??10" && exit findstr /i /r /off /C:"AC1004" %1 >nul && msg * "???"%~nx1!lf!"???ACAD??9" && exit msg * "???"%~nx1"?---------??Unable to identify :-(?????" && exit exit
Dessinateur modeleur BIM chez PILLET SA
3 年Bonjour, ?à ne marche pas en fran?ais, merci quand même.
Business Development Director in Ukraine at Bilfinger Eastern Europe
5 年Well done! Please proceed and good luck in learning process together with new colleagues!