RE: Checking for clean removal of application

2010-01-09 Thread Ken Schaefer
I'd use one of the packaging applications out there (Wise etc). They take a before/after snapshot of your system (which you usually use to create an MSI, but you could just as easily use as a checklist to ensure that everything's gone) Cheers Ken From: Christopher Bodnar [mailto:christopher_bo

RE: Checking for clean removal of application

2010-01-09 Thread paul chinnery
, 8 Jan 2010 13:14:34 -0800 Subject: RE: Checking for clean removal of application In batch: DIR /S > %TEMP%\Before.TXT Pause Install the app, then uninstall the app DIR /S > %TEMP%\After.TXT Then FC %TEMP%\before.txt %TEMP%\after.txt > %temp%\diff.txt

RE: Checking for clean removal of application

2010-01-08 Thread David Lum
In batch: DIR /S > %TEMP%\Before.TXT Pause Install the app, then uninstall the app DIR /S > %TEMP%\After.TXT Then FC %TEMP%\before.txt %TEMP%\after.txt > %temp%\diff.txt View contents of diff.txt Of course you install and uninstall the app before the AFTER.TXT is created, and %TEMP% can be C:

RE: Checking for clean removal of application

2009-12-28 Thread Sam Cayze
Revo Uninstaller From: Christopher Bodnar [mailto:christopher_bod...@glic.com] Sent: Monday, December 28, 2009 8:36 AM To: NT System Admin Issues Subject: Checking for clean removal of application We have an application that installs an agent on a server. We w

Re: Checking for clean removal of application

2009-12-28 Thread Kurt Buff
Process Monitor http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx On Mon, Dec 28, 2009 at 06:36, Christopher Bodnar wrote: > We have an application that installs an agent on a server. We want to test > to see how cleanly the agent is removed after uninstalling it. Does it > remove all

Re: Checking for clean removal of application

2009-12-28 Thread Jeff Bunting
InstallWatch will show you changes to a system for file system and registry. Basically, it performs a snapshot, installs the app, and then a post-install analysis. I think you'd still have to manually check the system after the uninstall though, so maybe not exactly what you need. http://www.eps