File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 113
113
114
114
<!-- Setting the PATH variable -->
115
115
<Component Id =" PathUser" Directory =" APPLICATIONFOLDER" >
116
- <Condition >MSIINSTALLPERUSER</Condition >
116
+ <Condition >MSIINSTALLPERUSER = 1 </Condition >
117
117
<RegistryValue
118
118
Root =" HKCU"
119
119
Key =" SOFTWARE\!(wix.AppGUID)"
130
130
Value =" [APPLICATIONFOLDER]resources\resources\linux\bin\" />
131
131
</Component >
132
132
<Component Id =" PathSystem" Directory =" APPLICATIONFOLDER" >
133
- <Condition >NOT MSIINSTALLPERUSER</Condition >
133
+ <Condition >
134
+ <![CDATA[ MSIINSTALLPERUSER <> 1]]>
135
+ </Condition >
134
136
<RegistryValue
135
137
Root =" HKLM"
136
138
Key =" SOFTWARE\!(wix.AppGUID)"
Original file line number Diff line number Diff line change 45
45
X =" 236" Y =" 243" Width =" 56" Height =" 17" >
46
46
<Publish Order =" 1" Property =" MSIINSTALLPERUSER" Value =" {}" >MSIINSTALLPERUSER = 0</Publish >
47
47
<Publish Order =" 2" Property =" ALLUSERS" Value =" {}" >MSIINSTALLPERUSER</Publish >
48
- <Publish Order =" 3" Property =" ALLUSERS" Value =" 1" >NOT MSIINSTALLPERUSER</Publish >
48
+ <Publish Order =" 3" Property =" ALLUSERS" Value =" 1" >
49
+ <![CDATA[ MSIINSTALLPERUSER <> 1]]>
50
+ </Publish >
49
51
<Publish Order =" 4" Event =" NewDialog" Value =" RDVerifyReadyDlg" >1</Publish >
50
52
</Control >
51
53
<Control Id =" Cancel" Type =" PushButton" X =" 304" Y =" 243" Width =" 56" Height =" 17" Cancel =" yes" Text =" !(loc.WixUICancel)" >
Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ export default async function generateFileList(rootPath: string): Promise<string
213
213
214
214
'resources\\resources\\win32\\internal\\privileged-service.exe' : ( d , f ) => {
215
215
return < Component >
216
- < Condition > NOT MSIINSTALLPERUSER</ Condition >
216
+ < Condition > { ' MSIINSTALLPERUSER <> 1' } </ Condition >
217
217
< File
218
218
Name = { f . name }
219
219
Source = { path . join ( '$(var.appDir)' , d . name , f . name ) }
You can’t perform that action at this time.
0 commit comments