why?
the default UI templates we use from WiX already take care of that.
All we need is the InstallExecuteSequence and that is used for all installations.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Maybe AdminExecuteSequence isn't needed, but as I explained to the email I sent you, I don't see how CM doesn't install as All Users since I can clearly see an HKLM\SOFTWARE\CommitMonitor reg value.
Maybe I'm missing something but it just seems weird to me that's why I wanted to ask what you think.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Ok, not all registry entries in HKLM require an admin user. Depending on the Windows configuration, normal users can install apps as well (to c:\program files and even writing to HKLM).
TSVN is special: the part of the registry that registers shell extensions and approves them so they're actually loaded requires an admin user, that's why the WiX file of TSVN has this little line in it:
<Property Id="ALLUSERS" Secure="yes">1</Property>
if you want to install CM for all users, run msiexec manually:
It just seems weird to me, that the only program from the 80 I have installed that is installed as the user is Commit Monitor, that's all. If you think this is normal, then I guess everything is fine.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
View and moderate all "tickets Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Tickets"
Originally posted by: tortoisesvn
why?
the default UI templates we use from WiX already take care of that.
All we need is the InstallExecuteSequence and that is used for all installations.
View and moderate all "tickets Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Tickets"
Originally posted by: XhmikosR
Maybe AdminExecuteSequence isn't needed, but as I explained to the email I sent you, I don't see how CM doesn't install as All Users since I can clearly see an HKLM\SOFTWARE\CommitMonitor reg value.
Maybe I'm missing something but it just seems weird to me that's why I wanted to ask what you think.
View and moderate all "tickets Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Tickets"
Originally posted by: tortoisesvn
Ok, not all registry entries in HKLM require an admin user. Depending on the Windows configuration, normal users can install apps as well (to c:\program files and even writing to HKLM).
TSVN is special: the part of the registry that registers shell extensions and approves them so they're actually loaded requires an admin user, that's why the WiX file of TSVN has this little line in it:
<Property Id="ALLUSERS" Secure="yes">1</Property>
if you want to install CM for all users, run msiexec manually:
msiexec /i commitmonitor.msi ALLUSERS="1"
http://support.microsoft.com/kb/230781
View and moderate all "tickets Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Tickets"
Originally posted by: XhmikosR
It just seems weird to me, that the only program from the 80 I have installed that is installed as the user is Commit Monitor, that's all. If you think this is normal, then I guess everything is fine.
View and moderate all "tickets Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Tickets"
Originally posted by: tortoisesvn
Well, is there anything that doesn't work?
If not, then why do you care?
View and moderate all "tickets Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Tickets"
Originally posted by: XhmikosR
Well it might work for my system, but I don't use UAC and I'm the only user (admin).