egalvez Posted June 29, 2005 Posted June 29, 2005 Hi. I'm wondering if AutoIt3 can be used to disable desktop icons like the Network Neighborhood icon.
jamesband Posted June 29, 2005 Posted June 29, 2005 Hi. I'm wondering if AutoIt3 can be used to disable desktop icons like the Network Neighborhood icon.<{POST_SNAPBACK}>WinXP can remove them from the desktop and the startmenu (i think). settings are in gpedit.msc
blindwig Posted June 29, 2005 Posted June 29, 2005 Hi. I'm wondering if AutoIt3 can be used to disable desktop icons like the Network Neighborhood icon.<{POST_SNAPBACK}>yes, use RegWrite() My UDF Threads:Pseudo-Hash: Binary Trees, Flat TablesFiles: Filter by Attribute, Tree List, Recursive Find, Recursive Folders Size, exported to XMLArrays: Nested, Pull Common Elements, Display 2dSystem: Expand Environment Strings, List Drives, List USB DrivesMisc: Multi-Layer Progress Bars, Binary FlagsStrings: Find Char(s) in String, Find String in SetOther UDF Threads I Participated:Base64 Conversions
erebus Posted June 30, 2005 Posted June 30, 2005 (edited) WinXP can remove them from the desktop and the startmenu (i think). settings are in gpedit.msc<{POST_SNAPBACK}>Try not to use gpedit.msc for local use. It was designed to set policies in a Windows Domain, not on a local computer.Instead search for windows tweaks in google. You can do what you want by tweaking the registry a bit. Edited June 30, 2005 by erebus
jftuga Posted June 30, 2005 Posted June 30, 2005 Regmon is a Registry monitoring utility that will show you which applications are accessing your Registry, which keys they are accessing, and the Registry data that they are reading and writing - all in real-time.You can download RegMon from:http://www.sysinternals.com/Utilities/Regmon.htmlStart it up just before removing NN, then manually remove NN. From the output of this program, you should be able to determine which Registry keys have been changed.-John Admin_Popup, show computer info or launch shellRemote Manager, facilitates connecting to RDP / VNCProc_Watch, reprioritize cpu intensive processesUDF: _ini_to_dict, transforms ini file entries into variablesUDF: monitor_resolutions, returns resolutions of multiple monitorsReport Computer Problem, for your IT help deskProfile Fixer, fixes a 'missing' AD user profile
blindwig Posted June 30, 2005 Posted June 30, 2005 Regmon is a Registry monitoring utility that will show you which applications are accessing your Registry, which keys they are accessing, and the Registry data that they are reading and writing - all in real-time.You can download RegMon from:http://www.sysinternals.com/Utilities/Regmon.htmlStart it up just before removing NN, then manually remove NN. From the output of this program, you should be able to determine which Registry keys have been changed.-John<{POST_SNAPBACK}>Or you could spend 5 seconds on Google and find out that to disable the icon, you need to write this to the registry:HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer "NoNetHood"=dword:00000001according to this site:http://techsupt.winbatch.com/TS/T000001063F6.html My UDF Threads:Pseudo-Hash: Binary Trees, Flat TablesFiles: Filter by Attribute, Tree List, Recursive Find, Recursive Folders Size, exported to XMLArrays: Nested, Pull Common Elements, Display 2dSystem: Expand Environment Strings, List Drives, List USB DrivesMisc: Multi-Layer Progress Bars, Binary FlagsStrings: Find Char(s) in String, Find String in SetOther UDF Threads I Participated:Base64 Conversions
egalvez Posted July 1, 2005 Author Posted July 1, 2005 Actually, I have a good friend who has his own business where he builds and repairs PCs, installs and troubleshoots networks, etc. I was with him a couple days ago and he was having a hard time hiding the Network Neighborhood icon ona few Win98 PCs. I've been wanting to recommend AutoIt3 to him and I thought if it could be used to hide (I mistakenly said disable in my original post) the Network Neighborhood icon, he might develop some interest in AutoIt. I suspect he'll develop interest in it anyway.
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