Page 1 of 1

Uninstalling LyricsFetcher ?????

Posted: Mon Oct 29, 2012 5:24 am
by EslerJJJ
Greetings -

I'm kind of new to using Add-ons but enjoying finding all the amazing additions to Media Monkey's use through these cool applications. I have a question about one in particular. I installed and used LyricsFetcher for a week and have decided to remove it from my PC. I have deleted every reference to any files with LyricsFetcher. Now when I start MM, I am receiving this message:

Error #-2147024894-
File: "C:\....MediaMonkey\Scripts\Auto\LyricsFetcher.vbs",Line: 4, Column: 1

I can press "OK", and then get this error message:

Error happened during script execution:
This system cannot find the file specified

Again I can press "OK", and MM completes its start up and appears to be functioning fine. Any suggestions for me to complete my removal of LyricsFetcher so that I don't go through this series of error messages?

Thanks in advance,

John

Re: Uninstalling LyricsFetcher ?????

Posted: Mon Oct 29, 2012 5:39 am
by Bex
Tools->Extensions, select the script you want to uninstall and press the Uninstall button.

Re: Uninstalling LyricsFetcher ?????

Posted: Mon Oct 29, 2012 7:00 am
by Vyper
You might need to re-install it before doing what Bex says.

Re: Uninstalling LyricsFetcher ?????

Posted: Wed Oct 31, 2012 8:46 pm
by eslerjjj
Thanks both of you. It completed the uninstall and dropped the error messagesafter I had reinstalled it and followed your instructions.

Regards,
John

Re: Uninstalling LyricsFetcher ?????

Posted: Thu Nov 01, 2012 8:52 am
by Vyper
Good deal. :)

Re: Uninstalling LyricsFetcher ?????

Posted: Mon Feb 15, 2021 3:29 pm
by TheseusWrex
So, I know this is a very old topic, but I think I've figured out a fix for this. I've at least stopped the error messages from popping up when I open up MM.

I slightly modified the script as follows... here's the original...

Code: Select all

Sub OnStartup
    strProgramPath = SDB.ApplicationPath&"LyricsFetcher.exe"
	SET objShell = CREATEOBJECT("Wscript.Shell")
	objShell.Run Chr(34) & strProgramPath & Chr(34),1,false
End Sub

Sub FirstRun
    strProgramPath = SDB.ApplicationPath&"LyricsFetcher.exe"
	SET objShell = CREATEOBJECT("Wscript.Shell")
	objShell.Run Chr(34) & strProgramPath & Chr(34),1,false
End Sub
My edited script looks like this...

Code: Select all

Sub OnStartup
	strProgramPath = SDB.ApplicationPath
	SET objShell = CREATEOBJECT("Wscript.Shell")
End Sub


Sub FirstRun
    strProgramPath = SDB.ApplicationPath&"LyricsFetcher.exe"
	SET objShell = CREATEOBJECT("Wscript.Shell")
	objShell.Run Chr(34) & strProgramPath & Chr(34),1,false
End Sub
I don't know much about the scripting language, but I do know that there's no file called "LyricsFetcher.exe," so I got rid of that reference in the script. I also took the objShell.Run line. It seems to work perfectly, now.