I want to be able to detect when my installer is running on a Win10 WVD OS.
- Detecting 'desktop' install:
MsiNTProductType = 1
- Detecting 'rdsh' install:
MsiNTProductType = 3 And TerminalServer = 1
- Detecting 'WVD' install?
Here are the pieces of data that I've got so far:
- WVD installs will set the MSI property
MsiNTProductType = 3
- WVD installs will set the MSI property
TerminalServer = 1
- WVD installs have
[HKLM\Software\Microsoft\Windows NT\CurrentVersion] "InstallationType"="Client"
What's an appropriate way to detect WVD installs in MSI? Are there other pieces of information that I don't know about? I'd rather not rely on the registry...