Unable to access UNC path on 2012 R2 file server with ABE enabled

Brief Description:
We have granted access to people via a domain local group on a folder on a file server that is three levels deep from the share, i.e. \\servercluster\share\folder1\folder2\folder3, where folder3 is where the group is granted Read & Execute
access.  The share has Access-Based Enumeration (ABE) enabled and the Everyone group has Full Control share permissions.  We also use DFS, so the path for that is \\domain\dfsrootname\folderfororganization\share\folder1\folder2\folder3.  People
in the aforementioned group only have access to folder3, its subfolders, and files.  They do not have any access to folder2 or any of the other folders higher in the tree at all.  Also, consider that folder3 contains a subfolder folder4, which is
simply inheriting permissions. 
What we have found is that clients running Windows 7 SP1 have strange access issues when attempting to access the folder via either the DFS or cluster name UNC paths.
Detailed Testing Results Accessing Folder3 Directly:
NOTE:  "UNC path" in the following test results means either the DFS or the cluster name share path.  The results are the same regardless which path is used.
1 - Enter UNC path without trailing backslash in Windows Explorer's address bar:
Windows Explorer seems to do nothing for about 30 seconds and then displays the following error:
"Windows cannot access <UNC path>
Check the spelling of the name.  Otherwise, there might be a problem with your network.  To try to identify and resolve network problems, click Diagnose."
2 - Enter UNC path with trailing backslash in Windows Explorer's address bar:
The same error encountered in #1 is displayed immediately.
3 - Enter UNC path with or without trailing backslash but contained in double quotes in Windows Explorer's address bar:
Internet Explorer opens and displays the error:
"Internet Explorer cannot display the webpage"
4 - Enter UNC path without trailing backslash in Run dialog box:
An error message immediately appears:
"<UNC path>
The specified path does not exist.
Check the path and then try again."
5 - Enter UNC path with trailing backslash in Run dialog box:
Same as #4.
6 - Enter UNC path without trailing backslash but contained in double quotes in Run dialog box:
Same as #4.
7 - Enter UNC path with trailing backslash and contained in double quotes in Run dialog box:
Windows Explorer opens the correct UNC path location and displays the folder contents.  This is the expected behavior for all of these attempts.
8 - Create Shortcut to UNC path by performing #7 and then dragging the folder icon in Windows Explorer's address bar to either to the desktop or the Favorites section, and then attempt to access the folder via
the shortcut.
Same as #7.
9 - Attempt to create a shortcut to the UNC path using the New Shortcut wizard:
Unable to successfully create the shortcut, regardless if you add a backslash at the end or enclose the path in double qutoes.  When you press Next after entering the UNC path, you receive the following error:
"The file <UNC path> cannot be found."
10 - Disable ABE on the share and repeat all tests:
All tests with ABE disabled on the share have the same result as #7.  There is no issue whatsoever accessing the desired folder when ABE is disabled.
Other Notable Behaviors:
If the aforementioned folder (folder3) contains one or more subfolders (e.g. folder4), you are able to access those subfolders via UNC path directly and then go up one level to folder3 without issue, even when ABE is enabled.  You just cannot access
folder3 directly via UNC path unless you attempt to access it via the method used in #7 above or a successfully created shortcut.
Adding a user account directly to the folder3 ACL rather than using group membership makes no difference.
If access is granted to folder4 instead of folder3 (the fourth folder deep rather than the third), accessing folder4 directly via UNC path is not an issue regardless of ABE status or attempted access method.
Windows 8 and 8.1 clients have no trouble directly accessing the folder's UNC path via any method.  The unusual, undesirable behavior seen in Windows 7 is non-existent on Windows 8.x clients.
Systems Involved:
Client:  Windows 7 Enterprise SP1 x86
Server:  Windows Server 2012 R2 Standard in cluster
Other Details About the Systems:
Both the client and the file server cluster are in the domain AD DS domain.
The client and the file server cluster are in different subnets.
There is no firewall or other packet inspection or compression service/device in between the client and server (not even Windows Firewall).
Question:
Is there a way to fix this behavior with Windows 7 clients and ABE enabled on the share so that it works correctly without forcing the clients or server to use SMBv1 or disabling ABE on the shares?

7-Zip 9.20
Adobe Flash Player 13 ActiveX
Cisco WebEx Meetings
Java 7 Update 51
It should be noted that I can't repeat the behavior on my test machine again today after some changes were made in our environment.
Today, I found that someone had modified permissions on the folder to give the group my test account was a member of rights to traverse the folder hierarchy from the root of the share.  Additionally, in testing something with FIPS mode, I ended up reverting
my virtual machine to an older snapshot.
After removing the extra permissions that weren't present when I was doing my testing and reverting to the older snapshot, I  am not having issues accessing the real equivalent of folder3 directly in Windows Explorer via DFS UNC path or creating a shortcut
with the New Shortcut wizard.
Things have been fundamentally changed and I cannot repeat the behavior on this particular folder.  I will see if I can recreate the same situation on another folder.

Similar Messages

  • Unable to access classes in third party jar files packaged with my ejb.jar

    I have packaged some third party jar files in my xxx_ejb.jar file.  The third party jar file contains classes that are accessed by some custom classes which are in turn accessed by my bean classes.  I get the following error when my custom classes attempt to use any of the classes in one of the third party jar files:
    java.lang.NoClassDefFoundError: com/Ostermiller/util/CSVParser
    Shouldn't I be able to access classes in jar files that are packaged with my xxx_ejb.jar file?  I see the xxx_ejb.jar file as a resource of the application classloader that contains it but I don't see the third party jar files.

    As per the Java EE specification, additional JAR files should be packaged on the EAR level. Only WAR files' WEB-INF/lib folder is scanned for JAR files to be added to the classloader.

  • Unable to access Web Method after deploying into the server

    Hi,
    I'm Unable to access Web method after deploying into the server.
    My Web method is 
    [WebMethod]
    [ScriptMethod(ResponseFormat = ResponseFormat.Json )]
    public object getOwners()
    DataTable dt = _qbObj.returnDDLData("employeedetails", "EmpID", "EmpFirstName");
    if (dt == null)
    return new { Result = "Error", Options = "Error getting data" };
    string[] strAttributes = { "ID", "Name" };
    string[] strColName = { "EmpID", "EmpFirstName" };
    List<SolOwners> lstObject = convertToList(dt, strAttributes, strColName, new SolOwners());
    var owners = lstObject.Select(c => new { DisplayText = c.Name, Value = c.ID });
    return new { Result = "OK", Options = owners };
    When I.m accessing that method after deploying into server, I got following error.
    System.InvalidOperationException: There was an error generating the XML document. ---> System.InvalidOperationException: &lt;&gt;f__AnonymousType9`2[System.String,System.Collections.Generic.IEnumerable`1[&lt;&gt;f__AnonymousTypea`2[System.String,System.String]]] cannot be serialized because it does not have a parameterless constructor.
    at System.Xml.Serialization.TypeScope.GetTypeDesc(Type type, MemberInfo source, Boolean directReference, Boolean throwOnError)
    at System.Xml.Serialization.XmlSerializationWriter.CreateUnknownTypeException(Type type)
    at System.Xml.Serialization.XmlSerializationWriter.WriteTypedPrimitive(String name, String ns, Object o, Boolean xsiType)
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationWriter1.Write1_Object(String n, String ns, Object o, Boolean isNullable, Boolean needType)
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationWriter1.Write71_anyType(Object o)
    at System.Xml.Serialization.XmlSerializer.Serialize(XmlWriter xmlWriter, Object o, XmlSerializerNamespaces namespaces, String encodingStyle, String id)
    --- End of inner exception stack trace ---
    at System.Xml.Serialization.XmlSerializer.Serialize(XmlWriter xmlWriter, Object o, XmlSerializerNamespaces namespaces, String encodingStyle, String id)
    at System.Xml.Serialization.XmlSerializer.Serialize(TextWriter textWriter, Object o, XmlSerializerNamespaces namespaces)
    at System.Web.Services.Protocols.XmlReturnWriter.Write(HttpResponse response, Stream outputStream, Object returnValue)
    at System.Web.Services.Protocols.WebServiceHandler.WriteReturns(Object[] returnValues)
    at System.Web.Services.Protocols.WebServiceHandler.Invoke()Please help me to solve that issue.Thank you.

    Hi Vani,
    What project are you developing? According to your code looks like an Asp.Net application? Am i right?
    If so , please repost in  ASP.Net Forum
    http://forums.asp.net for more efficient responses.
    This forum is discuss problems of C# development.
    Have a nice day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Server 2012 R2 File Server - 2008 R2/Win7 Clients Access Denied. SMB 3 Encryption.

    I've setup a Server 2012 R2 File Server. When creating shares I selected to enable encryption.
    Now Windows 7 and 2008 R2 clients cannot access. Pretty clear that this is SMB 3 encryption the cause.
    OK. So can I enable these Windows 7 and 2008 R2 clients to access encrypted SMB 3 shares?
    I can find no answer or documentation on this.

    So can I enable these Windows 7 and 2008 R2 clients to access encrypted SMB 3 shares?
    No, you can't. These Windows 7 and 2008 R2 clients talking to Windows Server 2012 R2, they will negotiate to the lowest common protocol which would be SMB 2.1 enabling communication, while not taking advantage of the SMB 3.0 specific capabilities (encryption
    included).
    There's no built-in encryption inside SMB 2.1

  • Shadow Copies on 2012 R2 File Server Cluster

    Hello all!
    I've inherited a two node physical 2012 R2 file server cluster that contains a few SMB shares on a single clustered disk.  I'd like to enable shadow copies for this shared disk but want to store the shadow copy data on its own shared disk
    as per shadow copy best practices (at least on non-clustered file servers).
    I created a second cluster disk, assigned it to the same resources as the SMB clustered disk. 
    Now historically I've enabled shadow copies through computer management but I want to ensure the shadow copies are cluster aware so in the Failover Cluster Manager I open Storage | Disks and right click the SMB cluster disk and click the Shadow Copies tab.
    From the tab I can Enable shadow copies, this sounds like what I'm looking for, unfortunately it does not give me an option to choose a disk/volume to store my shadow copy data, so this can't be right.
    My next step was to connect computer management to the cluster virtual server name (NOCFS4) and through the System Tools | Shared Folders | All Tasks | Configure Shadow Copies it shows me the correct number of shares on the SMB cluster disk plus
    I can see the Settings button for configuring the location and size limit for shadow copies, however once I tweak the shadow copy location and size settings, click Ok and click Enable to turn on the shadow copies I get a long pause and an error about
    not being able to create a schedule. So it seems connecting to the cluster virtual object is not the answer either.
    That leaves using computer management to connect to one of the physical server nodes of the cluster. When I open the shadow copy interface on the physical node I note that it shows a 0 for the number of shares it detects on the SMB clustered disk.
    This doesn't surprise me since this interface isn't cluster resource aware.
    So I'm stuck. Does anyone know the "Microsoft way" to enable shadow copies on a clustered disk while storing the shadow copy data on a second cluster disk both attached to the same cluster resource?

    Hi guys
    I spotted exactly same problem right now on Windows 2012 R2 with latest updates.
    Enabling Shadow Copy via Cluster Manager on disk will enable schedule and snapshots but schedule is not-cluster aware (is created locally on node) and "Previous Versions" are visible only locally but not via shared folders (UNC path accesible by
    clients)
    When I spotted this behavior I tried different way going via Computer Management and cluster resource name but console always hangs for me when using "Configure Shadow Copies". After many minutes configuration window is opened (Hurray!) but any
    action there will hang whole console again. Enabling Shadow Copies will fail with "0x80004005: Unspecified
    error" for creating scheduled task but "Next Run Time" column still shows "Disabled". Checking disk resource via Cluster Manager shows it is enabled and ?local? scheduled task is created.
    Computer management console still shows DISABLED and any action freezes whole console (only when cluster resource name is used).
    This fix I found, unfortunately, is not applicable to 2012 R2 OS: https://support.microsoft.com/en-us/kb/2894464
    To sum up there is a major bug in MS implementation in Shadow Copies for Shared Folders when clustering is used or it is still not supported in 2012 R2? Doing it outside cluster works as it should (without freezes and Previous Versions are available via
    UNC)
    There is no documentation about FileServer Clustering on 2012(R2) unfortunately.
    Could someone from MS clarify it?
    Many thanks
    Filip
    EDIT:
    Ok, one correction:
    Scheduled task is not created in "Failover Clustering" hive of Scheduled tasks as user may expect but failover of fileshare to other node will unregister/reregister it on active node only.

  • When I access a windows files server with the mac I am adding .apple (hidden files). How can I prevent this.

    When I access a windows files server with the mac I am adding .apple (hidden files). How can I prevent this?

    Look for a program called BlueHarvest. I'm not sure if it still works with Mountain Lion.
    I believe your file server can be set up to handle the metadata files, but I suppose that would depend on the Server software and your IT staff.

  • Unable to browse UNC paths since restarting windows 2008 R2 server

    Hi
    Since rebooting the server we can no longer browse any UNC paths via the RUN field, whether windows  e,g.
    \\Localhost\c$
    or 
    \\192.168.0.10\shared
    or 
    \\server-srv02\backups
    We can however map the drives using the command line e.g. net use * \\192.168.0.10\shared 
    Drive X: is now connected to \\192.168.0.10\shared.
    The command completed successfully.
    We cannot map the root of a share
    d:\Users\administrator.UNSWORTH>net use * \\192.168.0.10
    System error 53 has occurred.
    The network path was not found.
    Please can someone help as i believe a system update has caused this problem , and i have spent 1 day trying to resolve changing various registry / group policy settings. i have rebooted the server several times.
    We are running Windows 2008 R2 SP1 in terminal server mode.
    Please help

    Hi
    thanks for your reply. Here are the details you requested;
    Client
    d:\Users\administrator.UNSWORTH>net use * \\192.168.0.10
    System error 53 has occurred.
    The network path was not found.
    d:\Users\administrator.UNSWORTH>net use *
    \\192.168.0.10\c$
    Drive W: is now connected to \\192.168.0.10\c$.
    The command completed successfully.
    Windows IP Configuration
    Host Name . . . . . . . . . . . . : unsworth-srv03
    Primary Dns Suffix . . . . . . . : unsworthcl.com
    Node Type . . . . . . . . . . . . : Hybrid
    IP Routing Enabled. . . . . . . . : No
    WINS Proxy Enabled. . . . . . . . : No
    DNS Suffix Search List. . . . . . : unsworthcl.com
    Ethernet adapter Local Area Connection:
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Broadcom NetXtreme Gigabit Ethernet
    Physical Address. . . . . . . . . : D4-AE-52-CF-6C-AD
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    IPv4 Address. . . . . . . . . . . : 192.168.0.7(Preferred)
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Default Gateway . . . . . . . . . : 192.168.0.1
    DNS Servers . . . . . . . . . . . : 192.168.0.10
    192.168.0.1
    NetBIOS over Tcpip. . . . . . . . : Enabled
    Server
    Windows IP Configuration
    Host Name . . . . . . . . . . . . : UNSWORTH-SRV01
    Primary Dns Suffix . . . . . . . : unsworthcl.com
    Node Type . . . . . . . . . . . . : Hybrid
    IP Routing Enabled. . . . . . . . : No
    WINS Proxy Enabled. . . . . . . . : No
    DNS Suffix Search List. . . . . . : unsworthcl.com
    Ethernet adapter Local Area Connection:
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Broadcom BCM5716C NetXtreme II GigE (NDIS VBD Client) #36
    Physical Address. . . . . . . . . : 84-2B-2B-19-B5-5F
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    IPv4 Address. . . . . . . . . . . : 192.168.0.10(Preferred)
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Default Gateway . . . . . . . . . : 192.168.0.1
    DNS Servers . . . . . . . . . . . : 192.168.0.10
    NetBIOS over Tcpip. . . . . . . . : Enabled

  • Accessing UNC paths programmatically

    Hi,
    I have a URL in the following format: 
    http://mysite/Default.aspx?source=UNCPathtoaresource
    The Querystring parameter "source" always points to a UNC path location.
    Now, the issue is, if I provide a UNC path to a resource on  fileshare, everything works fine. However,
    if i provide a UNC Path to resource on SharePoint document library then the URL does not render anything.
    How is SharePoint UNC path different than fileshare UNC Path? what makes it inaccessible?
    Thanks,

    Hi Cooltechie,
    Thanks for posting your issue,
    You can achieve the same implementation using JS script. below is the URL that has code snippet can be used for this implementation. Checkout if this is easy implementation for your requirement.
    http://spjsblog.com/category/document-library/
    I hope this is helpful to you. If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • UNC paths and java.io.file in Oracle

    Hi,
    I'm just getting to grips with using some basic java in the database. I'm using 8.1.7 on W2K.
    I'm trying to test for the existance of a file on a separate w2k domain:
    import java.io.File;
    public class JFileExists {
    public static int fileexists (String fileName) {
    File myFile = new File (fileName);
    boolean retval = myFile.exists();
    if (retval) return 1; else return 0;
    public static void main (String args[]) {
    System.out.println (
    fileexists (args[0])
    grant javasyspriv to mp;
    function jfn_file_exists (file_in IN VARCHAR2) RETURN number
    AS LANGUAGE JAVA NAME 'JFileExists.fileexists (java.lang.String) return int';
    From the command prompt all is well:
    E:\java>"c:\oracle\ora81\Apache\jdk\bin\java.exe" JFileExists i:\test.txt
    1
    E:\java>"c:\oracle\ora81\Apache\jdk\bin\java.exe" JFileExists \\mpweb1\image\test.txt
    1
    But when loaded into oracle its returning false with the UNC path. (but is ok with a mapped drive to the same path)
    SQL> declare
    2 begin
    3 pa_main.pr_print(to_char(pa_main.jfn_file_exists('I:\test.txt')));
    4 pa_main.pr_print(to_char(pa_main.jfn_file_exists('\\mpweb1\image\test.txt')));
    5 end;
    6 /
    1
    0
    PL/SQL procedure successfully completed.
    The oracleservicesid and listener are starting under a user called oracle_user which is a member
    of the admins and domain admins group.
    mpweb1 is on a separate domain to the database server mpdb1 but it also has a user called oracle_user with the same password.
    oracle_user has full access to the share in question.
    Am I missing something? I was trying to keep the database server and web server on different domains for better security
    - but would things be easier if they were on the same domain?
    Any help much appreciated for this java newbi!
    Thanks,
    Simon.
    null

    I am also having problems with UNC paths. But I cannot access the location even if it is mapped as a drive. In JDK VJM I do not have a problem, but in Oracle it says the file cannot be found and say permission denied. I will try to change the user that starts the database and see if that helps.
    null

  • Unable to access web setup from 4 different Win7 machines with IE9 / FireFox

    I Hope someone can help, I suspect this may have something to do with a recent update to Windows or IE since this worked at least a couple of months ago.
    I'm unable to access the  web setup screen from 4 different windows machines running IE 9 or Firefox (various combinations of wireless, wired, etc.). When I get to the certificate error and hit the "yes, i understand, continue", it comes back with a 'can't be reached' page and looking into the details says the 'connection was dropped'.  However If I connect from a MacBook / safari, I'm able to reach the page fine (and admin the router).
    Summary:
    Using a wrt610n
    I am connected to the router, the ip address hasn't changed, the password hasn't changed
    I can use the router & connect to the internet
    I have the router set to require HTTPS, but switching it to allow HTTP doesn't help.
    Both Wired & Wireless Win 7 / IE9 machines can't connect.
    Tried setting the router ip address to 'trusted' zone in IE
    Tried setting the router ip address to the 'compatibility' mode in IE
    Tried using latest version of Firefox with the same results.
    Thanks in Advance!
    Stephen

    Before I suggest you any troubleshooting steps, I would like to ask few question. Like did you try opening the “https://192.168.1.1” in Internet Explorer 8. If not, then try to open the Router Management page in the same manner in Internet Explorer 8 and check whether it opens or not. As it should show up.

  • I am unable to access my email. I can sign in with my password, then a message comes up that says "The plug-in for this page has been disabled. Click here to manage your plug-ins." All plug-ins listed are enabled. What am I missing?

    I am unable to access my email from Charter.net. I can sign in with my password, then a message comes up which says "The plug-in for this page has been disabled. Click here to manage your plug-ins." All of my plug-ins are enabled. What am I missing?

    After a great deal of searching I ran across the suggestion to disable all plug-ins and then, one by one, enable them until finally the problem was solved. I am not sure which plug-in was causing the problem, as I am satisfied to have the problem solved. I am going to leave the rest of the plug-in disabled.

  • Windows 2012 Standard File Server Clustering SMB Share Error: Access is denied.

    Hi All,
    My setup consist of 2 nodes clustered with File Server role.  I can successfully failover role to either node with no issues.  But if I try to modify the permissions of any file share on my file server cluster I get the following error: Error
    Occurred while updating an SMB share: Access is denied.  Access is denied.
    Now I played around with the permissions on these shares and noticed that when I add the "everyone" group to these shares with change permissions I can successfully modify the shares with no errors.  If I removed the "everyone" group
    I get the error.  So to tell its like some service or account needs permission to these shares to be able to modify them.  I don't want to keep "everyone" group on these shares.  Can anyone please shed some light on what group, user,
    or service account needs permissions on these shared in order for me to modify these SMB shares without getting Access is denied.  Thanks

    Hi,
    It seems your account don’t have the enough right to modify this clustered folder permission.
    More information:
    Create a Shared Folder in a Clustered File Server
    http://technet.microsoft.com/en-us/library/cc732302.aspx
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Windows Server 2012 R2 File Server

    I updated my file server to Server 2012 R2 and everything went ok except now my windows 8 clients cannot connect to the file server.  I get a generic error An extended error has occurred when I try to unc to it and none of my drives will map.  Did anyone else have an issue like this?
    The file server is a virtual server running on Hyper-V and the file storage comes from a San iscsi drive.
    Thanks for any help with this issue.
    This topic first appeared in the Spiceworks Community

    I updated my file server to Server 2012 R2 and everything went ok except now my windows 8 clients cannot connect to the file server.  I get a generic error An extended error has occurred when I try to unc to it and none of my drives will map.  Did anyone else have an issue like this?
    The file server is a virtual server running on Hyper-V and the file storage comes from a San iscsi drive.
    Thanks for any help with this issue.
    This topic first appeared in the Spiceworks Community

  • Server 2012 R2 File Server Stops Responding

    Hi,
    I am facing one problem with my Windows Server 2012 R2 Ent Edition,
    Some times file server stops working, I have checked everything is working fine and also can take the RDP but not able to access the shared drive.
    I have restart the below services:
    DFS Name Space
    File Server Resource Manager
    Netlogon
    RPC
    TCP/IP Net Bios Helper
    Network Share Interface Service
    Server
    But finally we need to restart the server then after that problem is sort-out, 
    Thanks
    Arora, Jitender

    Hi
    Can you also check the log files for errors? What does event viewer indicate?
    Try updating the drivers as well on the server.
    Hope this helps. Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Excel 2010 changes relative link paths to absolute in files synced with Offline Files in Windows 7

    Hello! I'm wondering if anyone else has seen this problem: I have a large number of Excel 2010 and 2003 files in a folder on my file server. This whole folder is also synced to my computer using Offline Files in Windows 7. I have a lot of references between
    cells in different Excel files, and all referenced workbooks are physically in the same folder. This all works nicely when I create these files at work - all file paths referenced in the cells are created as relative paths and the documents open correctly.
    This is, I understand, the expected and default behavior when Excel creates links. When I edit these files at home, nothing seems odd until I get back to work and sync these files back to the file server. At this point, I discovered that Excel 2010 has, when
    I saved the files while away from the corporate network, changed /all/ the cell references in any offline-edited Excel files to point at absolute paths, and that these absolute paths point to somewhere in my %APPDATA% structure. So whenever I come to work
    and I try to open an Excel file that I have recently worked with offline, I get a bunch of error messages about referenced files that are missing, although clearly they exist in the same folder as the file I've opened, and I must edit all the file references
    again, whereupon they are again created correctly as relative paths (since all files exist in the same folder), which are promptly mangled into absolute C:\....\Offline Files\.....\..... paths whenever I save them at home (and since that works too, I don't
    notice it again until I come back to work and the offline files are synced back to the real network location). This seems to be a case of Windows 7's Offline Files not being able to fool Excel 2010 into believing it is working on a file server - apparently
    Excel 2010 can see through the fakery and decides on it's own to "fix" the problem (which obviously isn't a problem since the paths are relative to begin with) by saving the paths as absolute paths instead. Yes, really clever, Excel. The exepected behavior
    according to MSKB is that links are created as relative paths, so why does it change to absolute whenever Offline Files are involved? I know Offline Files only syncs, it doesn't actually change the files, so I can conclude that Excel is the program at fault
    here. Is there a fix for this, or a known workaround? Because frankly, this bug makes it impossible for me to work in any advanced manner with linked Excel files. The sad thing is that this worked perfectly fine with Office 2003 and Windows XP. Is there a
    patch for this problem that I might have missed (I am running the latest Service Pack and I get Office updates from Microsoft Update). If not, is there a workaround I can use to prevent Excel from corrupting my links when I edit the files offline?

    Hello danceswithwindows,
    Thank you for your post.
    This is a quick note to let you know that we are performing research on this issue.
    Sincerely
    Rex Zhang
    Rex Zhang
    TechNet Community Support

Maybe you are looking for

  • Roller Coaster tycoon 3

    Hello. I do not know if it's a bug in the game itself, or whether it's my computer. But I bought rollercoaster tycoon 3 on my Macbook Pro and when I turn on the player and will put any trees that fill the 1x1 is the invisible. It also happens to buil

  • Closed Network is still visible

    I have an Airport Express setup to create a network. On the same "wireless" tab in the AirPort Utility, when you click on the "Wireless Network Options" there is a check mark in the box for "Create Closed Network". However, the network is still visib

  • SP2013: create webpart for external list

    Hi there,  I have created an external content type and a external list for several entities from an sql server database. What I want to do now is, to develop a webpart / form (most likely in Visual Studio 2012) where I can add functionality to that e

  • Specified Order problem

    Greetings; I'm having a problem with "Group Options" "Specified Order", it is limiting me to displaying only few of the groups I created, is ther an explanation to that. Thanks

  • BIP not able to open the reports from the catalog

    Hi everyone, I am trying to open the existing reports from the catalog. When i try to expand the folders am getting all the subfolders and evrything and when i am trying to open a particular report am unable to open it, am not getting the data. For a