Folders Acting Strange

I recently uninstalled a program called alienguise in an attempt to edit how what icons represent folders and such things in my windows config manually instead of through a program. However ever since i uninstalled the program, every time I open up a folder, it will bring up the search option immediately, displaying none of the contents that are actually in the folder. If i search for what i want it will come up, yet this is obviously not normal operating behavior.

Just wondering how I can correct this problem.

Thanks in advance for the help.

#436089

Try these:

http://www.aqua-soft.org/board/showthread....=search+explore

http://www.aqua-soft.org/board/showthread....=%5Bhelp%5D

It may not apply directly to you, but the idea is the same.

Hope this helps!

-NC

#436119

Thank you so much, you are the man.

I figured since I'm already posting this thank you I'd just ask another question, but I'll be sure to search for the answer right after this post.

When I go to the advanced options for generic folders, the "Change Icon..." button is not able to be clicked and I'm wonder what needs to be edited for that to be enabled.

And i'm off to search for that. Thanks to anybody who helps me find the answer before I find it. =)

#436157

It's easier to ResHack the shell32.dll file to change the default icon for generic folders.

Here's some threads that might help you out:

http://www.aqua-soft.org/board/showthread....con+shell32.dll (I'd recommend this one--take a look at savouryspacemonkey's posts, especially this easier one

http://www.aqua-soft.org/board/showthread....con+shell32.dll

http://www.aqua-soft.org/board/showthread....con+shell32.dll

Hope this helps, ;)

-NC

#436158

copy this in a new file an renameit: xp_folder_open.vbs -- this will solve your problem..!!

'folder_open.vbs - Fixes problem where Search opens on a double click

'© Doug Knox - 03/13/2002

'Downloaded from www.dougknox.com

Set WshShell = WScript.CreateObject("WScript.Shell")

p1 = "HKEY_CLASSES_ROOTDirectoryshell"

p2 = "none"

WshShell.RegWrite p1, p2

p1 = "HKEY_CLASSES_ROOTDriveshell"

WshShell.RegWrite p1, p2

X = WshShell.Run("REGSVR32 /I /S SHELL32.DLL",4,True)

Set WshShell = Nothing

MyBox = MsgBox("Folders will now Open when double clicked", 4096, "Finished!")

#436604