--=ddSHADOW=-- Posted August 16, 2006 Posted August 16, 2006 (edited) Some new feature that i dont like in the new Windows Live Messenger is the Sharing Folders located in My Computer.The way to remove this feature isStart -> Run and click on OK button regsvr32 -u "%PROGRAMFILES%\MSN Messenger\fsshext.8.0.0812.00.dllU need to check your version of Windows Live Messenger example 8.0.0812 so i writed one easy autoit script that will do that work for you. The script reads the installed version from register and does the job.I need more testing then i'll integrate this addon into the main install script you can get the latest HEREHere is the script that remove Sharing Folders located in My Computer.RemoveMySharingFolders_ONLY.au3The script will work untill they dont change the .dll name B) Edited August 16, 2006 by --=ddSHADOW=--
benners Posted August 17, 2006 Posted August 17, 2006 I have done something similar with Inno, is there a reason why you want the dialog box to be shown, because if not you can silently unregister the dll by adding -s regsvr32 -s -u "C:\Program Files\MSN Messenger\fsshext.8.0.0812.00.dll"
T D Posted August 17, 2006 Posted August 17, 2006 With every version number, the dll name changes. So how aboutcd %programfiles%\MSN MessengerFOR %%F IN (fsshext*.dll) DO REGSVR32 -s -u "%%F"Maybe run it at startup?I'm not too good at batch files so can someone check it?
benners Posted August 17, 2006 Posted August 17, 2006 @TDThe AutoIt script --=ddSHADOW=-- made above takes into account the changing version number
ZileXa Posted August 19, 2006 Posted August 19, 2006 Will this simply remove the Shared folder from My Computer or also disable sharing a folder?
benners Posted August 19, 2006 Posted August 19, 2006 @ZileXaTo disable the shared folder I use "SharingDisabled"=dword:00000001 under the users passport settings here HKEY_CURRENT_USER\Software\Microsoft\MSNMessenger\PerPassportSettings\passporthashhereStill can't get it to unattendedly use the same Display picture or have my credentials added to auto connect
muiz Posted August 20, 2006 Posted August 20, 2006 For the display picture , open msnmsgr.exe with resource tuner or res hack and change the pictures.
T D Posted August 22, 2006 Posted August 22, 2006 But how to integrate the display pic in the installer w/o repackaging, as WLM doesn't support making admin install points...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now