From 79e5540860d077693e70b340db4d69d5e15107b7 Mon Sep 17 00:00:00 2001 From: Ben Kaduk Date: Thu, 16 Aug 2012 16:03:48 -0400 Subject: Kill running processes on upgrades/uninstalls The InstallValidate action of the windows installer will bring up a dialog informing us that some currently running processes must be terminated before installation may proceed, and offers to do so, but does not actually kill the processes. We have our own code to kill running processes which did not execute, for two reasons: it was sequenced after InstallValidate, and we did not have a current list of processes to look for. Add the right processes to look for and kill, and use our own process-killing code since it actually works. ticket: 7343 (new) queue: kfw target_version: 1.10.4 tags: pullup --- src/windows/installer/wix/kfw.wxs | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'src/windows/installer') diff --git a/src/windows/installer/wix/kfw.wxs b/src/windows/installer/wix/kfw.wxs index 20a70e5ed7..d00c6e88e8 100755 --- a/src/windows/installer/wix/kfw.wxs +++ b/src/windows/installer/wix/kfw.wxs @@ -168,8 +168,9 @@ - - (Not Installed) And (UPGRADEPISMERE Or UPGRADEKFW Or UPGRADEKFW64) + + + (Not Installed) And (UPGRADEPISMERE Or UPGRADEKFW Or UPGRADEKFW64) SYSTEMKRB5INI <> "" @@ -236,6 +237,11 @@ krbcc32s.exe Kerberos Credential Cache + + kpKrbcc64 + krbcc64s.exe + Kerberos Credential Cache + kpK95 k95.exe @@ -261,6 +267,16 @@ afscreds.exe AFS Credentials Manager + + kccapiserver + ccapiserver.exe + Credentials Cache API Server + + + kMITKerberos + MIT Kerberos.exe + MIT Kerberos Ticket Manager + -- cgit