Veamcast

Beta Program
Version 1.1.1231.0
Built 2026-06-23

What's New

various fixes

Uninstall the Store Version

If you have Veamcast installed from the Microsoft Store, you must uninstall it before installing the beta. The Store version and the beta cannot be installed side by side.

  1. Open SettingsAppsInstalled apps
  2. Search for Veamcast and click Uninstall

If Veamcast doesn't appear in the list, or the uninstall doesn't work, open PowerShell as Administrator and run:

Get-AppxPackage *Veamcast* | Remove-AppxPackage

Once uninstalled, proceed with the install steps below.

Install

  1. Trust the certificate (first time only)
    Right-click the Windows Start button (⊞ icon in your taskbar) → Terminal (Admin) or PowerShell (Admin), then paste this command:
    $ErrorActionPreference='Stop'; try { $c="$env:TEMP\vc.cer"; Invoke-WebRequest 'https://d1kty37vqcrzn.cloudfront.net/latest/Veamcast.cer' -OutFile $c; certutil -addstore Root $c | Out-Null; certutil -addstore TrustedPeople $c | Out-Null; Remove-Item $c; Write-Host 'Done - certificate installed' -ForegroundColor Green } catch { Write-Host "FAILED: $_" -ForegroundColor Red; Write-Host 'Make sure you opened PowerShell as Administrator (right-click Start > Terminal (Admin))' -ForegroundColor Yellow }
    You should see "Done - certificate installed". You only need to do this once.
  2. Install Veamcast
    Click below to install via App Installer. Future updates install automatically.
    Install Veamcast Beta Direct download (.msixbundle)

System Requirements

  • Windows 10 version 2004 (build 19041) or later, or Windows 11
  • x64 processor
  • WebView2 Runtime (included with Windows 11, auto-installed on Windows 10)

Troubleshooting

Installation Errors

"appinstaller URI is already being used by another package" (0x80004005)

Windows has cached a link between the installer URL and a previous version of the app. You need to uninstall the old version first.

Follow the Uninstall the Store Version steps above, then click the Install Veamcast Beta button again.

"Install" button does nothing or opens a blank page

The App Installer app may be missing or disabled on your system. To fix:

  1. Open the Microsoft Store
  2. Search for App Installer
  3. Click Get or Update to install the latest version

If that doesn't work, use the Direct download (.msixbundle) link instead, then double-click the downloaded file to install.

"Windows protected your PC" (SmartScreen warning)

This is normal for sideloaded apps not published through the Microsoft Store.

  1. Click More info
  2. Click Run anyway
Installation hangs or fails with no error message

Try these steps in order:

  1. Use the Direct download (.msixbundle) link and double-click the file to install
  2. If that fails, follow the Uninstall the Store Version steps to remove any existing installation, then retry
"Dependencies failed to install" or missing framework packages

The app requires the Visual C++ and .NET Native runtime packages. These should install automatically, but if they don't:

  1. Open Microsoft Store
  2. Search for and install: Microsoft Visual C++ 2015-2022 Redistributable
  3. Retry the Veamcast install

If the issue persists, try the direct download link and install the .msixbundle file manually.

Certificate

How to open PowerShell as Administrator
  1. Right-click the Windows Start button (⊞ icon in your taskbar)
  2. Click Terminal (Admin) or Windows PowerShell (Admin)
  3. Click Yes on the User Account Control prompt

If you only see "Command Prompt", type powershell and press Enter first.

Manual certificate install (alternative to the command)

If you prefer not to use the PowerShell command, you can install the certificate manually. You must add it to two certificate stores:

Download the .cer file, then repeat these steps twice:

  1. Right-click the .cer file → Install Certificate
  2. Select Local Machine → Next
  3. Select Place all certificates in the following store → Browse
  4. First time: choose Trusted Root Certification Authorities
    Second time: choose Trusted People
  5. Click Next → Finish
"Certificate could not be verified" error

This means the certificate wasn't installed to the right stores. Re-run the PowerShell command from Step 1 — it installs the certificate to both required stores (Trusted Root and Trusted People).

If you installed manually, make sure you added it to both stores, not just Trusted People.

Known Issues

Uninstall may not fully remove the app
Click for manual removal steps if uninstall appears to do nothing

Uninstall Issue

1. Force remove the Veamcast package
Get-AppxPackage *Veamcast* | Remove-AppxPackage
2. If step 1 fails, try removing for all users
Get-AppxPackage -AllUsers *Veamcast* | Remove-AppxPackage -AllUsers