Methanoid, on Aug 8 2008, 08:55 AM, said:
I get this in XP too. Is there a REGISTRY fix file for this? I have to apply this process after every install of XP SP3 and I'd like to automate it
For XP Check out the following in your registry. Note that Zone 1 refers to "Local Intranet" (
http://support.microsoft.com/kb/182569)
Check in your registry here:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\1]
"1406"=dword:00000000
"DisplayName"="Local intranet"
"Description"="This zone contains all Web sites that are on your organization's intranet."
... and here:
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\1]
"1406"=dword:00000000
"DisplayName"="Local intranet"
"Description"="This zone contains all Web sites that are on your organization's intranet."
I think XPSP3 adds DEFINITION of the valid sates for CrossDomainData (AKA Tools | Internet Options | Security | Local Intranet | Custom Level | Access data sources across domain) here at:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\SO\MISC\CrossDomainData]
This just defines the states as ALLOW, DENY, QUERY. But it points to the ValueName="1406" as where to go to change the setting in the first two registry entires.
Also, [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\SO\MISC\CrossDomainData] defines the valid corresponding data for the "1406" value. They are: "1406"=dword:00000000 is ALLOW, "1406"=dword:00000001 is QUERY, "1406"=dword:00000003 is DENY. We want to set "1406" to "1406"=dword:00000000 (ALLOW move or copy across local intranet) in both aforementioned keys.
Your registry patch to ALLOW CrossDomainData in YOUR local intranet might look something like this:
-------------------------
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\1]
"1406"=dword:00000000
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\1]
"1406"=dword:00000000
-------------------------
Another place to look is [HKCU\Software\Microsoft\CurrentVersion\Internet Settings\SO\MISC\DRAGDROP]
...and [HKLM\Software\Microsoft\CurrentVersion\Internet Settings\SO\MISC\DRAGDROP]
This tree points to value "1802" to ALLOW Drag & Drop across local intranet. Same reg patch methods apply.
Play with it. Give feedback.
The above worked for me in most cases. However, in the end, the only 100% effective solution was to add my local intranet private ip range to the "Trusted sites" list. I added "*://192.168.0.100-209/*". Now everything works - no more "Do you want to move or copy..." warning pop-ups.
The information appears at:
[HKEY_CURRENT_USER\Software\Microsoft\CurrentVersion\Internet Settings\ZoneMap\Ranges\Range1]
"*"=dword:00000002
":Range"="192.168.0.100-209"
... and:
[HKEY_USERS\S-1-5-21-507921405-1563985344-839522115-1003\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Ranges\Range1]
"*"=dword:00000002
":Range"="192.168.0.100-209"
This post has been edited by coiley: 11 October 2009 - 03:48 PM