MSFN Forum: How to remove "Do you want to move or copy files from this zone? - MSFN Forum

Jump to content


Windows Vista Forum Rules

If you have questions about customizing Windows Vista that are vLite-specific, please post them in the vLite forum, not here. If you have questions regarding the unattended installation of Windows Vista, please post them in the Unattended Windows Vista/Server 2008 section.
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

How to remove "Do you want to move or copy files from this zone? Vista SP1 Rate Topic: -----

#1 User is offline   oskingen 

  • MSFN Friend
  • PipPipPipPip
  • Group: Members
  • Posts: 613
  • Joined: 20-January 08
  • OS:none specified
  • Country: Country Flag

Posted 24 March 2008 - 12:13 PM

Hi, I got a problem that I don't know how to resolve it. Everytime i want to copy files using drag and drop from an other computer (macbook, win 2003 server...) through the network I got this message "do you want to move or copy files from this zone?" I search on google to find some solution but nothing doesn't work. Below the solution i tested but not working:

Open Control Panel -> Internet Options.
Open Security-tab; mark the zone "Local intranet", press the "Sites" button,
UN-tick "Automatically detect intranet network",THEN
tick "Include all local (intranet) sites not listed in other zones" and
tick "Include all network paths (UNCs)".
--------------------------------------------------------------------------------------
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\4]
@=""
"180B"=dword:00000000

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\4]
@=""
"180B"=dword:00000000
--------------------------------------------------------------------------------------
http://support.microsoft.com/kb/888534

any help?

This post has been edited by hannubys: 24 March 2008 - 12:17 PM



#2 User is offline   physics2010 

  • Group: Members
  • Posts: 1
  • Joined: 24-April 08

Posted 24 April 2008 - 08:44 PM

You were close. I tried all the above as well, but the final piece was

Tools | Internet Options | Security | Local Intranet | Custom Level | Access data sources across domain = Enable

Not sure if this is the only step, or if the ones you mentioned prior are necessary as well.

#3 User is offline   Methanoid 

  • Junior
  • Pip
  • Group: Members
  • Posts: 88
  • Joined: 21-December 04
  • OS:none specified

Posted 08 August 2008 - 06:55 AM

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

#4 User is offline   coiley 

  • Group: Members
  • Posts: 1
  • Joined: 11-October 09

Posted 11 October 2009 - 01:21 PM

View PostMethanoid, 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


#5 User is offline   Escorpiom 

  • Junior
  • Pip
  • Group: Members
  • Posts: 82
  • Joined: 18-January 09
  • OS:none specified
  • Country: Country Flag

Posted 25 October 2009 - 05:13 PM

View Postcoiley, on Oct 11 2009, 02:21 PM, said:

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"


For the sake of completeness, the first regpath is not correct, below the corrected one :

The information appears at:
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Ranges\Range1]

The second path [HKEY_USERS\S-1-5-21-507921405-1563985344-839522115-1003 is not the same on every system. Also, there is no need to set this second key. It is set automatic when the first one is set.
Other than that, it works fine.

Cheers,
Escorpiom.

#6 User is offline   cluberti 

  • Gustatus similis pullus
  • Group: Supervisor
  • Posts: 11,219
  • Joined: 09-September 01
  • OS:Windows RT
  • Country: Country Flag

Posted 27 October 2009 - 12:21 AM

Or you could put it in the same place, but in HKLM, and have it set for all users - far easier than mucking about with the user's registry (or SID registries for each user on the box).

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

2 User(s) are reading this topic
0 members, 2 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2013 msfn.org
Privacy Policy