Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.012 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'python.': 0.02; 'exist,': 0.09; 'msi': 0.09; 'runs': 0.10; 'python': 0.11; 'windows': 0.15; 'cryptic.': 0.16; 'doing:': 0.16; 'exists"': 0.16; 'from:addr:timgolden.me.uk': 0.16; 'from:name:tim golden': 0.16; 'message-id:@timgolden.me.uk': 0.16; 'received:74.55.86': 0.16; 'received:74.55.86.74': 0.16; 'received:smtp.webfaction.com': 0.16; 'received:webfaction.com': 0.16; 'subject:uninstall': 0.16; 'through.': 0.16; 'tjg': 0.16; 'uninstall': 0.16; 'subject:python': 0.16; 'wrote:': 0.18; 'trying': 0.19; 'select': 0.22; 'previously': 0.22; 'saying': 0.22; 'installation': 0.23; 'header:User-Agent:1': 0.23; 'deleted.': 0.24; "i've": 0.25; 'options': 0.25; 'logging': 0.26; 'header:In-Reply-To:1': 0.27; 'installed': 0.27; 'tried': 0.27; "doesn't": 0.30; 'specified': 0.30; "i'm": 0.30; 'gives': 0.31; 'dialog': 0.31; 'install,': 0.31; 'option.': 0.31; 'repair': 0.31; 'file': 0.32; 'run': 0.32; 'up.': 0.33; 'totally': 0.33; '"the': 0.34; "i'd": 0.34; 'problem.': 0.35; 'but': 0.35; 'there': 0.35; 'requiring': 0.38; 'to:addr:python-list': 0.38; 'files': 0.38; 'resource': 0.38; 'to:addr:python.org': 0.39; 'enough': 0.39; 'unable': 0.39; 'either': 0.39; 'skip:p 20': 0.39; 'how': 0.40; 'remove': 0.60; 'skip:u 10': 0.60; 'deleting': 0.60; 'is.': 0.60; 'manually': 0.60; 'hope': 0.61; 'include:': 0.61; 'simple': 0.61; 'complete': 0.62; 'show': 0.63; 'choose': 0.64; 'account': 0.65; 'situation': 0.65; 'worth': 0.66; 'from:addr:mail': 0.83; 'again?': 0.84; 'installer': 0.84; 'presumably': 0.84; 'x64': 0.84 Date: Fri, 29 Aug 2014 20:53:13 +0100 From: Tim Golden User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: python-list@python.org Subject: Re: Manually uninstall python 3.4.1 x64 References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 44 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1409341871 news.xs4all.nl 2916 [2001:888:2000:d::a6]:46394 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:77284 On 29/08/2014 09:19, Curtis Clauson wrote: > Python v3.4.1 x64 on Windows 7 x64. > > I've a situation where the c:/Python34 directory was irrecoverably deleted. > > When I run the python-3.4.1.amd64.msi installer and choose Remove, it > gives me a dialog saying a required file is missing about halfway > through. It gives me no clue as to what this file is. > > If I choose Repair, it gives me a dialog saying "The specified account > already exists" about halfway through. Totally cryptic. > > If I choose Change and either select that all features or no features > will be installed, it gives me a dialog saying "The specified account > already exists" about halfway through. > > I've tried hunting down and deleting every reference to the installation > directory in the registry but it doesn't change this problem. I am > completely unable to install, uninstall, or repair python. > > Is there a resource that will completely uninstall python without > requiring that any of the previously installed files exist, or that > gives complete instructions on how to manually remove enough so that the > installer will work again? Unfortunately I don't think there's a simple answer to this one. (Altho' I'm not an MSI expert and I'd be very happy to be overruled). msiexec.exe, which is the program which actually runs the MSIs, has a number of options you can invoke, including a verbose logging option. You can see them all by doing: msiexec /? or, presumably some MSDN page with the same information. Some things which might be worth trying include: msiexec /log whatever.log python-xx-yy.msi to log verbosely, in the hope that some missing or present file or registry might show up. And/or playing with the Repair Options to narrow things down. TJG