Skip to main content

Automated Installation Commands

For Desktop apps (Windows)

Prashant Singh avatar
Written by Prashant Singh
Updated this week

INSTALL

EXE - NO Logging

<EXE PATH>

EXE - WITH Logging at C:\myzenv2.log

<EXE PATH> /i // /L*V C:\myzenv2.log

MSI - NO Logging

msiexec /i <MSI_PATH> /qb!

MSI - WITH Logging at C:\myzenv2.log

msiexec /i <MSI_PATH> /L*V C:\myzenv2.log

UNINSTALL

STANDARD

wmic product where name="MyZenV2" call uninstall /nointeractive

STEALTH

wmic product where name="zs" call uninstall /nointeractive
Did this answer your question?