uninstall and (.msi files)
uninstall and (.msi files)
installed a program that initially worked ok, but has recently started misbehaving. on trying to uninstall it with the wine uninstaller, it just won't go. in fact the uninstall wizard just seems to install the program again, even if i delete it from program files.
i have tried to delete all it's associated files etc. but then when trying a fresh install the wizard must still see the original installation, as it only offers modify/remove/repair. i notice in the wiki that the wine uninstaller "does not work with programs installed with a .msi file". and there is a .msi file associated with this program.
so the questions.
1. how can i completely uninstall this program, and all it's associated entries?
2. is it ok to delete the temp folder just as in windows?
3. what stops the program from being totally uninstalled?
edit: i'm googling as i go...is it the user.reg. it has entries for the program in question?
thanks!
i have tried to delete all it's associated files etc. but then when trying a fresh install the wizard must still see the original installation, as it only offers modify/remove/repair. i notice in the wiki that the wine uninstaller "does not work with programs installed with a .msi file". and there is a .msi file associated with this program.
so the questions.
1. how can i completely uninstall this program, and all it's associated entries?
2. is it ok to delete the temp folder just as in windows?
3. what stops the program from being totally uninstalled?
edit: i'm googling as i go...is it the user.reg. it has entries for the program in question?
thanks!
Re: uninstall and (.msi files)
http://wiki.winehq.org/FAQ#head-9893ae5 ... af2e69b391K4Z00 wrote:so the questions.
1. how can i completely uninstall this program, and all it's associated entries?
No it's not ok. You can delete the content inside. And most programs should handle that.K4Z00 wrote:2. is it ok to delete the temp folder just as in windows?
Not implemented parts of Wine or bugs. It's a low priority - non one wants/needs to properly implement it / fix it.K4Z00 wrote:3. what stops the program from being totally uninstalled?
ok have deleted contents of temp folder, and deleted all entries manually, and via the wiki using the 4 terminal commands config/menus etc.
however when i run the installer, it is still detecting a previous install, and offering modify/remove/repair. none of which do anything useful!
any other suggestions or ideas most welcome, other than that, will delete those registry entries tomorrow.
being as there was/is only this one program installed, google result suggests rm -rf .wine/
will this delete the whole wine folder and write a new one when i install a new windows program? or is this idea pants?
however when i run the installer, it is still detecting a previous install, and offering modify/remove/repair. none of which do anything useful!
any other suggestions or ideas most welcome, other than that, will delete those registry entries tomorrow.
being as there was/is only this one program installed, google result suggests rm -rf .wine/
will this delete the whole wine folder and write a new one when i install a new windows program? or is this idea pants?
Some one been "fixing" that entry on wiki. It's missing the first step:K4Z00 wrote:thanks vitamin for the ever prompt reply!
is it worth deleting the entries in the user.reg file too?
there are 2 specific entries for the program
edit: (and it is still showing in the wine uninstaller)
Code: Select all
rm -rf ~/.wine
uninstall and (.msi files)
vitamin:
Hartmut
Yes, but i prefer 'mv ~/.wine ~/.wine-s1' ...Code:
rm -rf ~/.wine
... because then it is possible to reuse e.g. old savegames.And no you should not pick pieces from the ~/.wine dir, like
registry.
Hartmut
uninstall and (.msi files)
Hartmut Figge wrote:
This moves the file and maintains the .wine part with the .<insert
appropriate name here> portion appended.
what you are doing. I've done registry recoveries and they are
unusually messy. Moving the .wine directory is much easier and cleaner.
code:
cd
mv .wine{,.backup}
wineboot
cd <installation directory of new program>
wine setup.exe (alt. wine install.exe)
If the program requires specific packages I use Dan Kegel's winetricks
(gecko is broken on Wine 1.1, but there is a fix and workaround that
does the install).
James McKenzie
I prefer mv ~/.wine{,.<insert appropriate name here>}vitamin:
Yes, but i prefer 'mv ~/.wine ~/.wine-s1' ...Code:
rm -rf ~/.wine
This moves the file and maintains the .wine part with the .<insert
appropriate name here> portion appended.
It is never a good idea to edit the registry unless you know absolutely... because then it is possible to reuse e.g. old savegames.And no you should not pick pieces from the ~/.wine dir, like
registry.
what you are doing. I've done registry recoveries and they are
unusually messy. Moving the .wine directory is much easier and cleaner.
code:
cd
mv .wine{,.backup}
wineboot
cd <installation directory of new program>
wine setup.exe (alt. wine install.exe)
If the program requires specific packages I use Dan Kegel's winetricks
(gecko is broken on Wine 1.1, but there is a fix and workaround that
does the install).
James McKenzie
Hartmut
uninstall and (.msi files)
James McKenzie:
[...]
Hartmut
[...]
The above step if have never used.cd
mv .wine{,.backup}
wineboot
And perhaps some data from the backup is convenient. Was for me sometimes.cd <installation directory of new program>
wine setup.exe (alt. wine install.exe)
If the program requires specific packages I use Dan Kegel's winetricks
Hartmut