summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJeffrey Altman <jaltman@secure-endpoints.com>2005-12-30 22:43:20 +0000
committerJeffrey Altman <jaltman@secure-endpoints.com>2005-12-30 22:43:20 +0000
commit5af359baff0f328a2894fa716484da545091f9c8 (patch)
treea77c959b3a8cb74af041d9c2f655451f58fba617 /src
parent9082d20dff7bea8839d0f94728ed5d3fbf87e9c4 (diff)
downloadkrb5-5af359baff0f328a2894fa716484da545091f9c8.tar.gz
krb5-5af359baff0f328a2894fa716484da545091f9c8.tar.xz
krb5-5af359baff0f328a2894fa716484da545091f9c8.zip
KFW installation should not use impersonation
Do not use impersonation when installing the network provider in order to succeed on Vista. ticket: new component: windows target_version: 1.4.4 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17580 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/windows/installer/wix/ChangeLog5
-rw-r--r--src/windows/installer/wix/kfw.wxs6
2 files changed, 9 insertions, 2 deletions
diff --git a/src/windows/installer/wix/ChangeLog b/src/windows/installer/wix/ChangeLog
index 6eb2aa9a6..38f463566 100644
--- a/src/windows/installer/wix/ChangeLog
+++ b/src/windows/installer/wix/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-30 Jeffrey Altman <jaltman@mit.edu>
+
+ Remove impersonation from the network provider installation
+ to allow installation on Vista
+
2005-11-01 Jeffrey Altman <jaltman@mit.edu>
Add support for Network Identity Manager Framework
diff --git a/src/windows/installer/wix/kfw.wxs b/src/windows/installer/wix/kfw.wxs
index f791feed6..667413c9e 100644
--- a/src/windows/installer/wix/kfw.wxs
+++ b/src/windows/installer/wix/kfw.wxs
@@ -124,14 +124,16 @@
Id="InstallNetProvider"
BinaryKey="binCustom"
DllEntry="InstallNetProvider"
- Execute="oncePerProcess" />
+ Impersonate="no"
+ Execute="deferred" />
<CustomAction
Id="RemoveNetProvider"
BinaryKey="binCustom"
DllEntry="UninstallNetProvider"
+ Impersonate="no"
Return="ignore"
- Execute="oncePerProcess" />
+ Execute="deferred" />
<CustomAction
Id="RollbackNetProvider"