From: Jeffrey Altman Date: Fri, 30 Dec 2005 22:43:20 +0000 (+0000) Subject: KFW installation should not use impersonation X-Git-Tag: ms-bug-test-20060525~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5af359baff0f328a2894fa716484da545091f9c8;p=thirdparty%2Fkrb5.git 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 --- diff --git a/src/windows/installer/wix/ChangeLog b/src/windows/installer/wix/ChangeLog index 6eb2aa9a6e..38f463566d 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 f791feed62..667413c9e7 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" />