Changes between Initial Version and Version 1 of VPN Remote Network Connection Setup


Ignore:
Timestamp:
10/31/22 06:04:48 (2 years ago)
Author:
Paul Kulda
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VPN Remote Network Connection Setup

    v1 v1  
     1= VPN Remote Network Connection Setup =
     2
     3{{{
     4Fixing Problem With Windows 7 Shared Files and Mapped Drives Unavailable Over VPN
     5November 18, 2010
     6
     7One of our IT consulting customers using a Windows 7 laptop was experiencing a problem with access mapped drives while connected to their company using VPN.
     8
     9Doing some research I found that Windows 7 and Vista both have what's called "slow link mode".  The behavior is that if the latency of the network connection exceeds 80 milliseconds (ms), the system will transition the files to "offline mode".  The 80 ms value is configurable using a local group policy edit.
     10
     11    Open Group policy (start -> run -> gpedit.msc)
     12    Expand "Computer Configuration"
     13    Expand "Administrative Templates"
     14    Expand "Network"
     15    Click on "Offline Files"
     16    Locate "Configure slow-link mode"
     17    This policy can either be disabled or set to a higher value for slower connections.
     18
     19Note – The "Configure Slow link speed" value is for Windows XP Professional. [more]
     20
     21Additionally, there is a registry value that can be added that can force auto reconnection...
     22
     23When a server has been unavailable (offline mode) and then becomes available again for connection, Offline Files Client Side Caching tries to transition that server to online mode if all the following conditions are true:
     24
     25    There are no offline changes for that server on the local computer.
     26    There are no open file handles for that server on the local computer.
     27    The server is accessed over a "fast" link.
     28
     29You can adjust the definition of "slow" and "fast" by using the SlowLinkSpeed Offline Files policy. With this, you can configure Offline Files Client Side Caching to ignore these conditions and transition the server to online mode regardless of whether these conditions exist. To do this, follow these steps:
     30
     31    Click Start, click Run, type REGEDIT, and then click OK.
     32    Locate and click the following registry subkey:
     33    HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\NetCache
     34    Click Edit, point to New, and then click DWORD Value.
     35    Type SilentForcedAutoReconnect, and then press ENTER to name the value.
     36    Double-click SilentForcedAutoReconnect.
     37    In the Value data box, type 1, and then click OK.
     38
     39Finally, here is a link to a Microsoft TechNet article explaining how Vista/7 handles offline files.  At the bottom of the article is a procedure for disabling offline files completely using a Group Policy Object.  http://technet.microsoft.com/en-us/library/cc749449%28WS.10%29.aspx
     40
     41}}}