Installation
Installation
Requirements
- Windows 10 version 19041 (2004) or later, or Windows 11
- VoiceMeeter installed — Basic, Banana, or Potato
- No .NET or Windows App SDK runtime installation needed — Modern Meeter is self-contained and bundles both
Install from the Microsoft Store
The easiest way to install Modern Meeter is from the Microsoft Store:
Get Modern Meeter from the Microsoft Store
Store installs update automatically and require no developer mode or certificate trust.
Sideload with Deploy.ps1
For development builds or machines without Store access, use the Deploy.ps1 script to build and register the MSIX package via loose-file registration.
# Local deployment (Debug)
.\Deploy.ps1
# Local deployment (Release)
.\Deploy.ps1 -Configuration Release
Remote devices
Deploy.ps1 can deploy to another Windows machine over the network using WinAppDeployCmd.
# First time — pair with a PIN shown on the target device
.\Deploy.ps1 -DeviceIP 192.168.1.100 -Pin 123456
# Subsequent deployments (no PIN needed)
.\Deploy.ps1 -DeviceIP 192.168.1.100 -Configuration Release
# Discover deployable devices on the local network
.\Deploy.ps1 -Discover
Remote deployment automatically uninstalls any existing version before re-registering.
Uninstall
# Remove from the local machine
.\Deploy.ps1 -Unregister
# Remove from a remote device
.\Deploy.ps1 -DeviceIP 192.168.1.100 -Unregister
The deploy script builds the project, locates the packaging output, and registers the app automatically.
Building Modern Meeter from source requires Visual Studio 2022+ MSBuild and the .NET 10 SDK. Build instructions are available to contributors in the project repository.