aboutsummaryrefslogtreecommitdiff
path: root/src/xsd
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2025-11-02 00:03:07 -0700
committerRob Mensching <rob@firegiant.com>2025-11-03 14:03:39 -0800
commit33c12fa386aa7ace7a6bd06a45bc3ecf17e9c8f5 (patch)
tree3ef4849cfc28de598d6ec1d962b607fb374a54fb /src/xsd
parent2b709cb9662231ff7788147ad5c2ff5be6169160 (diff)
downloadwix-33c12fa386aa7ace7a6bd06a45bc3ecf17e9c8f5.tar.gz
wix-33c12fa386aa7ace7a6bd06a45bc3ecf17e9c8f5.tar.bz2
wix-33c12fa386aa7ace7a6bd06a45bc3ecf17e9c8f5.zip
Add support for perMachineOrUser
Resolves 9175
Diffstat (limited to 'src/xsd')
-rw-r--r--src/xsd/wix.xsd13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/xsd/wix.xsd b/src/xsd/wix.xsd
index 17111a00..cc0bc1dc 100644
--- a/src/xsd/wix.xsd
+++ b/src/xsd/wix.xsd
@@ -14187,6 +14187,16 @@
14187 </xs:documentation> 14187 </xs:documentation>
14188 </xs:annotation> 14188 </xs:annotation>
14189 </xs:enumeration> 14189 </xs:enumeration>
14190 <xs:enumeration value="perMachineOrUser">
14191 <xs:annotation>
14192 <xs:documentation>
14193 _New in WiX v7: WiX v7 adds this option to the Package Scope attribute._
14194 Set this value to declare that the package is [dual-purpose that can install per-machine or per-user](https://learn.microsoft.com/en-us/windows/win32/msi/single-package-authoring)
14195 and defaults to installing per-machine.
14196 Sets the ALLUSERS property to 2.
14197 </xs:documentation>
14198 </xs:annotation>
14199 </xs:enumeration>
14190 <xs:enumeration value="perUser"> 14200 <xs:enumeration value="perUser">
14191 <xs:annotation> 14201 <xs:annotation>
14192 <xs:documentation> 14202 <xs:documentation>
@@ -14198,7 +14208,8 @@
14198 <xs:enumeration value="perUserOrMachine"> 14208 <xs:enumeration value="perUserOrMachine">
14199 <xs:annotation> 14209 <xs:annotation>
14200 <xs:documentation> 14210 <xs:documentation>
14201 Set this value to declare that the package is [dual-purpose that can install per-user or per-machine](https://learn.microsoft.com/en-us/windows/win32/msi/single-package-authoring). 14211 Set this value to declare that the package is [dual-purpose that can install per-user or per-machine](https://learn.microsoft.com/en-us/windows/win32/msi/single-package-authoring)
14212 and defaults to installing per-user.
14202 Sets the ALLUSERS property to 2 and MSIINSTALLPERUSER property to 1. 14213 Sets the ALLUSERS property to 2 and MSIINSTALLPERUSER property to 1.
14203 </xs:documentation> 14214 </xs:documentation>
14204 </xs:annotation> 14215 </xs:annotation>