Table of Contents
Do you want more than just screen sharing and group chat in your online meetings? With alfaview, you get a comprehensive range of functions in all tariffs: the toolbox , which you can fill with apps according to your needs, the simultaneous interpreting function or the whiteboard, and much more.
1 | 2 |
---|---|
Software Name | alfaview |
Publisher | alfaview GmbH |
Homepage | https://alfaview.com/ |
Architecture | 64-bit |
Software Version | 9.22.7 |
Download (.msi) | alfaview-setup-win-production-9.22.7.msi |
Install Behavior | System Context (All Users) |
Detection (Location) | C:\Program Files\alfaview\alfaview.exe |
Silent Installation | msiexec.exe /i "alfaview-setup-win-production-9.22.7.msi" /qn |
Silent Uninstallation | msiexec.exe /X "{758E81B3-EE58-49F7-9CD9-818D4405A1EE}" /qn |
Winget | winget install --id=alfaview.alfaview -e |
How to Install The App Silently
- Download the installer from the link in the above table.
- Copy the downloaded file to a designated folder, such as
[C:\Installers]
. Alternatively, you can transfer the downloaded installer file to a USB device for installing the application on other computers. - Next, open CMD (Command Prompt) as administrator.
- In the CMD window, navigate to the source folder using the cd command:
- Finally, type the silent installation command in the above table then press to install the app.
After a minute or so, you should see the app installed in the installation directory. The app should appear in the Installed Apps section in Windows Settings or under Programs and Features in the Control Panel.
How to Uninstall The App Silently
- Open CMD (Command Prompt) as administrator.
- Type the silent uninstallation command in the above table the press to install the app.
Silently Install Using PowerShell
Alternatively, you can use the following PowerShell script to automatically download and install the app. This approach saves you from manually downloading the installer and executing the installation command.
To install the app, simply open PowerShell as an administrator, copy the code snippets below, paste them into the PowerShell window, and press .
This script explanation:
- Queries GitHub for the latest version via Winget manifest.
- Downloads the .installer.yaml, extracts the official download URL.
- Downloads the installer file from the official download link.
- Silently installs it using the Start-Process cmdlet.
- Cleans up the downloaded temp file.