326
Post New Requests Here / Re: Remember removed programs
« Last post by AbteriX on February 09, 2009, 06:35 AM »f.ex. NirSofts MyUninstall can save current items to an file, -- you have to do this manually by hand from time to time.
Or maybe you want to export the relevant reg keys via a batch and let the scheduler do this for you regularly?
http://www.ss64.com/nt/regedit.html
Export part of the Registry
REGEDIT /E pathname "RegPath"
Write this in an batch.cmd and set up an task to execute this batch every once a month
and you will get such an list:
Note:
- modify the path "D:\Backup\" to your paths
- in an batch.cmd use two %s, on command line use one % only.
Or maybe you want to export the relevant reg keys via a batch and let the scheduler do this for you regularly?
http://www.ss64.com/nt/regedit.html
Export part of the Registry
REGEDIT /E pathname "RegPath"
Write this in an batch.cmd and set up an task to execute this batch every once a month
@ECHO OFF
REGEDIT /E D:\Backup\Registry_Uninstall_%%date%%.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"
REGEDIT /E D:\Backup\Registry_Products_%%date%%.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Products"
PAUSE
and you will get such an list:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{DD7CDE4F-.....-352D}_is1]
"Inno Setup: Setup Version"="5.2.3"
"Inno Setup: App Path"="f:\\Program Files\\PDF to Word"
"InstallLocation"="f:\\Program Files\\PDF to Word\\"
"Inno Setup: Icon Group"="PDF to Word"
"Inno Setup: User"="Administrator"
"Inno Setup: Selected Tasks"=""
"Inno Setup: Deselected Tasks"="desktopicon,quicklaunchicon"
"DisplayName"="PDF to Word"
"UninstallString"="\"f:\\Program Files\\PDF to Word\\unins000.exe\""
"QuietUninstallString"="\"f:\\Program Files\\PDF to Word\\unins000.exe\" /SILENT"
"Publisher"="Quick PDF"
"URLInfoAbout"="http://www.pdf.tld/"
"HelpLink"="http://www.pdf.tld/"
"URLUpdateInfo"="http://www.pdf.tld/"
"NoModify"=dword:00000001
"NoRepair"=dword:00000001
"InstallDate"="20080919"-Registry_Uninstall_09.02.2009.txt
Note:
- modify the path "D:\Backup\" to your paths
- in an batch.cmd use two %s, on command line use one % only.

Recent Posts





