Uninstalling LyricsFetcher ?????

Download and get help for different MediaMonkey for Windows 4 Addons.

Moderators: Peke, Gurus

EslerJJJ

Uninstalling LyricsFetcher ?????

Post 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
Bex
Posts: 6316
Joined: Fri May 21, 2004 5:44 am
Location: Sweden

Re: Uninstalling LyricsFetcher ?????

Post by Bex »

Tools->Extensions, select the script you want to uninstall and press the Uninstall button.
Advanced Duplicate Find & Fix Find More From Same - Custom Search. | Transfer PlayStat & Copy-Paste Tags/AlbumArt between any tracks.
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!

All My Scripts
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Re: Uninstalling LyricsFetcher ?????

Post by Vyper »

You might need to re-install it before doing what Bex says.
Stop Button Freak
eslerjjj

Re: Uninstalling LyricsFetcher ?????

Post 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
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Re: Uninstalling LyricsFetcher ?????

Post by Vyper »

Good deal. :)
Stop Button Freak
TheseusWrex
Posts: 6
Joined: Thu Jun 30, 2016 10:13 am

Re: Uninstalling LyricsFetcher ?????

Post 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.
Post Reply