Uninstalling LyricsFetcher ?????

Post a reply

Smilies
:D :) :( :o :-? 8) :lol: :x :P :oops: :cry: :evil: :roll: :wink:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Uninstalling LyricsFetcher ?????

Re: Uninstalling LyricsFetcher ?????

by TheseusWrex » Mon Feb 15, 2021 3:29 pm

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.

Re: Uninstalling LyricsFetcher ?????

by Vyper » Thu Nov 01, 2012 8:52 am

Good deal. :)

Re: Uninstalling LyricsFetcher ?????

by eslerjjj » Wed Oct 31, 2012 8:46 pm

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 ?????

by Vyper » Mon Oct 29, 2012 7:00 am

You might need to re-install it before doing what Bex says.

Re: Uninstalling LyricsFetcher ?????

by Bex » Mon Oct 29, 2012 5:39 am

Tools->Extensions, select the script you want to uninstall and press the Uninstall button.

Uninstalling LyricsFetcher ?????

by EslerJJJ » Mon Oct 29, 2012 5:24 am

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

Top