Sgt_Strider Posted May 16, 2006 Share Posted May 16, 2006 How do you guys remove the links folder? I've tried the registry tweaks and even used nlite to remove it, but it just won't work. I've asked for help in the past, but no one has been able to solve my problem. Is this folder impossible to remove? Link to comment Share on other sites More sharing options...
EchoNoise Posted May 16, 2006 Share Posted May 16, 2006 You can just right click on the folder.. and then set the hidden attribute to it Link to comment Share on other sites More sharing options...
Sgt_Strider Posted May 16, 2006 Author Share Posted May 16, 2006 You can just right click on the folder.. and then set the hidden attribute to it It's a good idea, but I want the folder deleted. If I want to hide it, how do I do it unattendedly? Link to comment Share on other sites More sharing options...
tommyp Posted May 16, 2006 Share Posted May 16, 2006 A winnt.sif with the proper switches will prevent 90% of the pre-installed links. The "media" links are part of the WMP installation inf. Link to comment Share on other sites More sharing options...
PITU Posted May 16, 2006 Share Posted May 16, 2006 You could also create a nullfile called "Links" in your Favorites-Folder. No Program should be able to create the Links-Folder. Link to comment Share on other sites More sharing options...
Sgt_Strider Posted May 17, 2006 Author Share Posted May 17, 2006 A winnt.sif with the proper switches will prevent 90% of the pre-installed links. The "media" links are part of the WMP installation inf.Some details?You could also create a nullfile called "Links" in your Favorites-Folder. No Program should be able to create the Links-Folder.Some details please? Link to comment Share on other sites More sharing options...
Yzöwl Posted May 17, 2006 Share Posted May 17, 2006 You could also create a nullfile called "Links" in your Favorites-Folder. No Program should be able to create the Links-Folder.Some details please?Use this as your clean up command!@ECHO OFFFOR /F "DELIMS=" %%? IN ( 'DIR/B/S/AD "%USERPROFILE%\.." ^|FINDSTR/LIE "FAVORITES\LINKS" 2^>NUL') DO ( IF ERRORLEVEL 0 (CALL :KILLIT "%%~dp?"))GOTO :EOF:KILLITPUSHD %1RD/S/Q LINKS &&(>Links TYPE NUL &(ATTRIB +S +R +H LINKS))POPD &GOTO :EOF Link to comment Share on other sites More sharing options...
Sgt_Strider Posted May 18, 2006 Author Share Posted May 18, 2006 You could also create a nullfile called "Links" in your Favorites-Folder. No Program should be able to create the Links-Folder.Some details please?Use this as your clean up command!@ECHO OFFFOR /F "DELIMS=" %%? IN ( 'DIR/B/S/AD "%USERPROFILE%\.." ^|FINDSTR/LIE "FAVORITES\LINKS" 2^>NUL') DO ( IF ERRORLEVEL 0 (CALL :KILLIT "%%~dp?"))GOTO :EOF:KILLITPUSHD %1RD/S/Q LINKS &&(>Links TYPE NUL &(ATTRIB +S +R +H LINKS))POPD &GOTO :EOFDo you mean place what you have typed into a cleanup.cmd file? Link to comment Share on other sites More sharing options...
mraeryceos Posted May 18, 2006 Share Posted May 18, 2006 How the Links toolbar can be useful (though i'm showing Firefox):http://home.earthlink.net/~storageplace/links.jpgor see attached. Link to comment Share on other sites More sharing options...
gunsmokingman Posted May 18, 2006 Share Posted May 18, 2006 (edited) You could also run this vbs script I have included a error message in it. Dim Act : Set Act = CreateObject("Wscript.Shell")Dim Flinks : Flinks = Act.ExpandEnvironmentStrings("%UserProfile%\Favorites\Links")Dim Fso : Set Fso = CreateObject("Scripting.FileSystemObject") If Fso.FolderExists(Flinks) Then Fso.DeleteFolder(Flinks), True Else MsgBox "No Links Folder, Please Re-Run After You Have Log On" & vbCrLf &_ "You need the Desktop Loaded Once So The Folder is Made.", 0 + 48, "No Desktop Loaded" End If This vbs script will self delete it self after it has ran, if it ran from SystemdriveI have made this script into a SFX fileDim Act : Set Act = CreateObject("Wscript.Shell")Dim Flinks : Flinks = Act.ExpandEnvironmentStrings("%UserProfile%\Favorites\Links")Dim FlinkVBS : FlinkVBS = Act.ExpandEnvironmentStrings("%Systemdrive%\DeleteLinksV1.vbs")Dim Fso : Set Fso = CreateObject("Scripting.FileSystemObject") If Fso.FolderExists(Flinks) Then Fso.DeleteFolder(Flinks), True Else MsgBox "No Links Folder, Please Re-Run After You Have Log On" & vbCrLf &_ "You need the Desktop Loaded Once So The Folder is Made.", 0 + 48, "No Desktop Loaded" End If If Fso.FileExists(FlinkVBS) Then Fso.DeleteFile(FlinkVBS) End If This vbs script will just delete the folder with no error message and the VBS file.Dim Act : Set Act = CreateObject("Wscript.Shell") Dim Flinks : Flinks = Act.ExpandEnvironmentStrings("%UserProfile%\Favorites\Links") Dim FlinkVBS : FlinkVBS = Act.ExpandEnvironmentStrings("%Systemdrive%\DeleteLinksV2.vbs") Dim Fso : Set Fso = CreateObject("Scripting.FileSystemObject") If Fso.FolderExists(Flinks) Then Fso.DeleteFolder(Flinks), True End If If Fso.FileExists(FlinkVBS) Then Fso.DeleteFile(FlinkVBS) End If Edited June 18, 2006 by gunsmokingman Link to comment Share on other sites More sharing options...
leo29 Posted May 18, 2006 Share Posted May 18, 2006 Just save this and double clik on it.Once you delte the 'Limks' folder, it will be be re-created again.Windows Registry Editor Version 5.00[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Toolbar]"LinksFolderName"="" Link to comment Share on other sites More sharing options...
oneless Posted May 18, 2006 Share Posted May 18, 2006 ..."LinksFolderName"=""Thanks for the tip. More usefull for me is to rename <Links> to <MSFN> for example.I tried with MSFN_2 (MSFN already exist)and when i open IE6, the folder MSFN_2 was there .and Welcome to MSFN @leo29. Link to comment Share on other sites More sharing options...
Sgt_Strider Posted May 19, 2006 Author Share Posted May 19, 2006 Just save this and double clik on it.Once you delte the 'Limks' folder, it will be be re-created again.Windows Registry Editor Version 5.00[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Toolbar]"LinksFolderName"=""I wish it was that simple. That registry tweak doesn't work. Link to comment Share on other sites More sharing options...
oneless Posted May 19, 2006 Share Posted May 19, 2006 ... That registry tweak doesn't work. i tested it in three different computers. manually(regedit) . and works in my case.how do you tested it for not working ? Link to comment Share on other sites More sharing options...
Sgt_Strider Posted May 21, 2006 Author Share Posted May 21, 2006 ... That registry tweak doesn't work. i tested it in three different computers. manually(regedit) . and works in my case.how do you tested it for not working ?No joke, I enter that registry tweak into my file and after Windows finish installing and I click on IE, there is the IE folder. Link to comment Share on other sites More sharing options...
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