BIMvision is a freeware IFC model viewer. BIM Vision allows you to view the virtual models coming from various CAD systems like Revit, Archicad, BricsCAD BIM, Advance, DDS CAD, Tekla, Nemetschek VectorWorks, Bentley, Allplan and others without the necessity of having commercial licenses of these systems or having each of particular vendor’s viewer. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of BIM Vision from the command line using the EXE installer.
How to Install BIMvision Silently
BIMvision Silent Install (EXE)
- Navigate to: https://bimvision.eu/en/download/
- Download the “BIMvision x.y.z Setup.exe” to a folder created at (C:\Downloads)
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter the following command:
"BIMvision x.y.z Setup.exe" /VERYSILENT /NORESTART
- Press Enter
After a few moments you should find BIM Vision entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | BIMvision |
Vendor: | Datacomp IT Sp. z o.o. |
Architecture: | x86_x64 |
Installer Type: | EXE |
Silent Install Switch: |
|
Silent Uninstall Switch (32-bit System) | "%ProgramFiles%\Datacomp\BIM Vision\unins000.exe" /VERYSILENT /NORESTART |
Silent Uninstall Switch (64-bit System) | "%ProgramFiles(x86)%\Datacomp\BIM Vision\unins000.exe" /VERYSILENT /NORESTART |
Download Link: | https://bimvision.eu/en/download/ |
PowerShell Script: | BIMvision | PowerShell Script |
PSADT v4: | BIMvision | PSADT v4 |
The information above provides a quick overview of the software title, vendor, silent install, and silent uninstall switches. The download link provided take you directly to the vendors website. Continue reading if you are interested in additional details and configurations.
Additional Configurations
Create a BIMvision Installation Log File
The BIMvision installer offers the option to generate a log file during installation to assist with troubleshooting should any problems arise. You can use the following commands to create a verbose log file with details about the installation.
BIMvision Silent Install (EXE) with Logging
"BIMvision x.x.x Setup.exe" /VERYSILENT /NORESTART /LOG="%WINDIR%\Temp\BIMVision-Install.log" |
Change the BIMvision Default Installation Directory
You can also change the default installation directory by using the following command line parameters. In this example, I’m installing BIM Vision to “C:\BIM Vision”
"BIMvision x.x.x Setup.exe" /DIR="C:\BIM Vision" /VERYSILENT /NORESTART |
Include the BIMvision Desktop Shortcut During Install
The BIM Vision installer does NOT create desktop shortcuts by default. If you want the desktop shortcuts, then you can run the following command line switches to include them.
BIMvision Silent Install (EXE) with Desktop Shortcuts
"BIMvision x.x.x Setup.exe" /VERYSILENT /NORESTART /MERGETASKS=desktopicon |
How to Uninstall BIMvision Silently
Check out the following posts for a scripted solution:
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Enter one of the following commands:
BIMvision Silent Uninstall (EXE) on 32-bit System
"%ProgramFiles%\Datacomp\BIM Vision\unins000.exe" /VERYSILENT /NORESTART |
BIMvision Silent Uninstall (EXE) on 64-bit System
"%ProgramFiles(x86)%\Datacomp\BIM Vision\unins000.exe" /VERYSILENT /NORESTART |
Always make sure to test everything in a development environment prior to implementing anything into production. The information in this article is provided “As Is” without warranty of any kind.