nobles Posted August 14, 2006 Posted August 14, 2006 I cannot seem to get the following regwrite command to work. I want to be able to change the name of the Internet Explorer icon on the desktop which is a default registry value and I cannot seem to get it to work. Is "" the correct item to specify the default registry value in AutoIt? REGWRITE ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{871C5380-42A0-1069-A2EA-08002B30309D}", "", "REG_SZ", "IntraNet") Let me know if you have any ideas on how this could be done.
MHz Posted August 14, 2006 Posted August 14, 2006 Yes, the default value is "". I'm not sure of the change needed to set another name for the icon, but one does exist. Searching the net may bring results.
Moderators big_daddy Posted August 14, 2006 Moderators Posted August 14, 2006 This works for me: RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\" & _ "Explorer\CLSID\{871C5380-42A0-1069-A2EA-08002B30309D}", "", "REG_SZ", "IntraNet")
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