DinoCapture is a professional microscope imaging software that was made for users of all levels, including basic features from image viewing and capture, measurement with calibration, to advanced features such as geotags and edge detection. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of DinoCapture 2.0 from the command line using the EXE installer.
How to Install DinoCapture 2.0 Silently
DinoCapture 2.0 Silent Install (EXE)
- Navigate to: https://www.dino-lite.com/download01.php
- Select the DinoCapture 2.0 Download
- Download the dnc2_x.y.z_U.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 to record a response file:
dnc2_x.y.z_U.exe /r /f1"C:\Downloads\install.iss"
- Press Enter
- Choose Setup Language-> Click Next
- Click Next on “Welcome to the InstallShield Wizard for DinoCapture 2.0”
- Click Yes on “License Agreement” window
- Choose the Destination Location and Click Next
- Click Install on “Ready to Install the Program” window
- Click Finish on “InstallShield Wizard Complete” window
- You will now find the response file (install.iss) in the C:\Downloads folder
- Uninstall DinoCapture 2.0
- 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:
dnc2_x.y.z_U.exe /s /f1".\install.iss"
- Press Enter
After a few moments you should see the DinoCapture 2.0 Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | DinoCapture 2.0 |
Vendor: | AnMo Electronics Corporation |
Architecture: | x86 |
Installer Type: | EXE |
Silent Install Switch: | dnc2_x.y.z_U.exe /s /f1".\install.iss" |
Silent Uninstall Switch: | See Uninstall Section Below |
Download Link: | https://www.dino-lite.com/download01.php |
PowerShell Script: | https://silentinstallhq.com/dinocapture-2-0-install-and-uninstall-powershell/ |
The information above provides a quick overview of the software title, vendor, silent install, and silent uninstall switches. The download links provided take you directly to the vendors website.
How to Uninstall DinoCapture 2.0 Silently
Check out the DinoCapture 2.0 Install and Uninstall (PowerShell) post 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 set of commands:
DinoCapture 2.0 Silent Uninstall (EXE) on 32-bit System
"%ProgramFiles%\DinoCapture 2.0\unins000.exe" /VERYSILENT /NORESTART |
RMDIR /Q /S "%ProgramFiles%\Common Files\Dnc2" |
RMDIR /Q /S "%ProgramFiles%\DinoCapture 2.0" |
RMDIR /Q /S "%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\DinoCapture 2.0" |
DEL "%PUBLIC%\Desktop\DinoCapture 2.0.lnk" |
REG DELETE "HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\DinoCapture 2.0" /f |
DinoCapture 2.0 Silent Uninstall (EXE) on 64-bit System
"%ProgramFiles%\DinoCapture 2.0\unins000.exe" /VERYSILENT /NORESTART |
RMDIR /Q /S "%ProgramFiles(x86)%\Common Files\Dnc2" |
RMDIR /Q /S "%ProgramFiles(x86)%\DinoCapture 2.0" |
RMDIR /Q /S "%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\DinoCapture 2.0" |
DEL "%PUBLIC%\Desktop\DinoCapture 2.0.lnk" |
REG DELETE "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\DinoCapture 2.0" /f |
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.