Installation service Error

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
yoman82
Level 1
Level 1
Posts: 9
Joined: Tue Mar 31, 2009 2:18 pm

Installation service Error

Post by yoman82 »

I know this isn't exactly a fun thing for you guys to do, but I cannot find a similar topic anywhere. Whenever I run a .exe based installer, I receive and error saying that the Windows Installation Service could not be accessed. This has been happening ever since I attempted to install Windows Installer 3.1. This error persists after a sudo apt-get remove wine* --purge command. I'm clueless, and any help would be much appreciated. Thank you.
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: Installation service Error

Post by vitamin »

yoman82 wrote:This error persists after a sudo apt-get remove wine* --purge command.
This is wrong. Uninstalling Wine doesn't touch it's configuration. You need to run this instead:

Code: Select all

rm -rf ~/.wine
Then verify directory was really removed:

Code: Select all

ls -la ~/.wine
If it's still there, then use sudo:

Code: Select all

sudo rm -rf ~/.wine
And keep in mind to NEVER EVER use sudo/su to run Wine with.
yoman82
Level 1
Level 1
Posts: 9
Joined: Tue Mar 31, 2009 2:18 pm

Post by yoman82 »

Thank you so much. I thought the --purge option had cleared the config files. Thanks.
IneedAname

Installation service Error

Post by IneedAname »

On Tue, 31 Mar 2009 14:22:53 -0500
"yoman82" <[email protected]> wrote:
I know this isn't exactly a fun thing for you guys to do, but I cannot find a similar topic anywhere. Whenever I run a .exe based installer, I receive and error saying that the Windows Installation Service could not be accessed. This has been happening ever since I attempted to install Windows Installer 3.1. This error persists after a sudo apt-get remove wine* --purge command. I'm clueless, and any help would be much appreciated. Thank you.
Read the Wine FAQ and delete or move your Wine prefix.
Locked