From 5af359baff0f328a2894fa716484da545091f9c8 Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Fri, 30 Dec 2005 22:43:20 +0000 Subject: [PATCH] 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 --- src/windows/installer/wix/ChangeLog | 5 +++++ src/windows/installer/wix/kfw.wxs | 6 ++++-- 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 + + Remove impersonation from the network provider installation + to allow installation on Vista + 2005-11-01 Jeffrey Altman 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" /> + Execute="deferred" />