Shoutbox

[Question] Uninstall script - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: [Question] Uninstall script (/showthread.php?tid=71274)

[Question] Uninstall script by tryxter on 02-01-2007 at 12:43 AM

Is it possible to uninstall a script using code?

Thanks!


RE: [Question] Uninstall script by Baggins on 02-01-2007 at 12:54 AM

You could delete the script directory using FSO ActiveX object

code:
var fso = new ActiveXObject ("Scripting.FileSystemObject");
I belive that is how to do the activex thinger.

This would not be a proper way to do it though, as it may result in data loss/corruption.


RE: [Question] Uninstall script by tryxter on 02-01-2007 at 12:59 AM

Well, yes. I know how to delete the dir, but as you said so, I thought it could corrupt data or something...

Any other ideia?

Thanks Baggins ;)


RE: [Question] Uninstall script by Baggins on 02-01-2007 at 01:01 AM

According to CookieRevised's reply to Script that disables another,

no