Provision offline files in Windows 8.x

Hi there,
I stumbled across a problem. I want to make certain folders offline available for all users. For this I am using the Group Policy setting "Administratively assigned offline files" under "Administrative Templates / Network / Offline Files". Unfortunately,
both, the user part setting and the computer part setting, do not work.
All paths are specified as UNC paths in the "name" column of the provided table in the Group Policy Editor.
Any suggestions, how to get this working?
----------------------- Greetings from Germany, Martin

Hi,
I made a test in our testing enviroment. It works fine when enable this policy. Both my test account could access Offline Files.
Therefore, please check your group policy setting. Make sure sharing folder path correct.
Computer Configuration->Administrative Templates->Network->Offline Files
Roger Lu
TechNet Community Support

Similar Messages

  • 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

  • Recover Deleted Offline File in Window's 7

    Documents that were suppose to sync with the server had not synced in months. The filess I am sure were being saved to the offline file cache. The offline file cache was deleted by using microsoft hotfix 50561 (kb230738), reinitalizing the cache and correcting
    the save path. The documents are very important. I researched and found the xp tool for recovering deleted offline files. csccmd.exe by using the command
    csccmd.exe /extract /target:c:\docs /recurse
    Is There a tool like this for windows 7? is there a way to recover the lost files. Previous versions and system restore was not enabled and I have not been able to enable then.

    Hi ShaneC_76,
    Thanks for the post!
    Please refer to<cite>
    </cite>Windows Offline Files.
    Check the 10. Restoring Offline Files In Windows Vista and 7.
    Regards,
    Miya
    Please Note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    This posting is provided "AS IS" with no warranties, and confers no rights. | 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.

  • Windows 7 and Offline Files - Sync at logoff

    All,
    I have set up folder redirection in my organisation (testing purposes) The problem I am facing is Windows 7 will not automatically sync offline files back to the share.
    There is a gpo for Windows XP to do this when a user is either is logging off on on. I am trying to accomplish the same when a user logs off and a script can be run to initiate a sync.
    Please help.
    This is the VBS script I am using, but does nothing when I run it. IS there something missing? A better solution?
    ' THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
    ' ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
    ' THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
    ' PARTICULAR PURPOSE.
    ' Copyright (c) Microsoft Corporation. All rights reserved.
    ' Usage: CscSyncAll.vbs [/Direction:in|out|inout] [/PinNewFiles:1:0] [/Conflicts:local|remote|latest] [/Machine:value] [/User:value] [/Password:value]
    ' Demonstrates how to sync the entire Offline Files cache.
    const cComputerName = "LocalHost"
    const cWMINamespace = "root\cimv2"
    ' Process commandline arguments
    strComputerName = WScript.Arguments.Named("Machine")
    If Len(strComputerName) = 0 Then strComputerName = cComputerName
    strUserID = WScript.Arguments.Named("User")
    If Len(strUserID) = 0 Then strUserID = ""
    strPassword = WScript.Arguments.Named("Password")
    If Len(strPassword) = 0 Then strPassword = ""
    ' Sync control flags from Win32_OfflineFilesCache.Synchronize
    const fFillSparse = &H00000001
    const fSyncIn = &H00000002
    const fSyncOut = &H00000004
    const fPinNewFiles = &H00000008
    const fPinLinkTargets = &H00000010
    const fPinForUser = &H00000020
    const fPinForUser_Policy = &H00000040
    const fPinForAll = &H00000080
    const fLowPriority = &H00000200
    const fAsyncProgress = &H00000400
    const fInteractive = &H00000800
    const fConsole = &H00001000
    const fSkipSuspendedDirs = &H00002000
    const fBackground = &H00010000
    const fCrKeepLocal = &H10000000
    const fCrKeepRemote = &H20000000
    const fCrKeepLatest = &H30000000
    const wbemFlagSendStatus = &H00000080
    SyncControlFlags = fSyncIn + _
    fSyncOut + _
    fPinNewFiles + _
    fPinForUser + _
    fConsole + _
    fInteractive
    strDirection = WScript.Arguments.Named("Direction")
    If Len(strDirection) <> 0 Then
    if LCase(strDirection) = "in" Then
    SyncControlFlags = SyncControlFlags - fSyncOut
    Elseif LCase(strDirection) = "out" Then
    SyncControlFlags = SyncControlFlags - fSyncIn
    Elseif LCase(strDirection) = "inout" Then
    ' Do nothing. Flags already indicate in/out
    Else
    Wscript.Echo "Invalid direction value [" & strDirection & "]"
    Err.Raise 507 ' "an exception occured" error
    End if
    End if
    strPinNewFiles = WScript.Arguments.Named("PinNewFiles")
    If Len(strPinNewFiles) <> 0 And strPinNewFiles = "0" Then
    SyncControlFlags = SyncControlFlags - fPinNewFiles
    End if
    strConflicts = WScript.Arguments.Named("Conflicts")
    If Len(strConflicts) <> 0 Then
    If LCase(strConflicts) = "local" Then
    SyncControlflags = SyncControlFlags + fCrKeepLocal
    Elseif LCase(strConflicts) = "remote" Then
    SyncControlFlags = SyncControlFlags + fCrKeepRemote
    Elseif LCase(strConflicts) = "latest" Then
    SyncControlFlags = SyncControlFlags + fCrKeepLatest
    End if
    End if
    Set objWMILocator = WScript.CreateObject("WbemScripting.SWbemLocator")
    Set objWMIServices = objWMILocator.ConnectServer(strComputerName, _
    cWMINameSpace, _
    strUserID, _
    strPassword)
    Set objCache = objWMIServices.Get("Win32_OfflineFilesCache=@")
    Set objParams = objCache.Methods_("Synchronize").InParameters.SpawnInstance_
    Set objSink = WScript.CreateObject("WbemScripting.SWbemSink", "SINK_")
    Set objItemInstances = objWMIServices.InstancesOf("Win32_OfflineFilesItem")
    ' Set up the API arguments
    Dim ItemPaths(0)
    objParams.Paths = ItemPaths
    objParams.Flags = SyncControlFlags
    ' Constants for cache item types
    const cFile = 0
    const cDirectory = 1
    const cShare = 2
    const cServer = 3
    ' Execute the sync action on each share in the Offline Files cache.
    For Each objItem in objItemInstances
    If cShare = objItem.ItemType Then
    ItemPaths(0) = objItem.ItemPath
    objParams.Paths = ItemPaths
    objWMIServices.ExecMethodAsync objSink, "Win32_OfflineFilesCache", "Synchronize", objParams, wbemFlagSendStatus
    End If
    Next
    ' Loop until we receive an OnCompleted event
    bDone = False
    While Not bDone
    wscript.sleep 1000
    Wend
    Sub SINK_OnProgress(UpperBound, Current, Message, objContext)
    DIM PART_REASON, PART_RESULT, PART_RESULTMSG, PART_PATH
    DIM REASON_BEGIN, REASON_END, REASON_ITEMBEGIN, REASON_ITEMRESULT
    DIM Reasons(3)
    ' The message is composed as follows:
    ' <reason>:<result>:<result msg>:<path>
    ' <reason>
    ' Integer indicates reason for progress callback.
    ' Values are:
    ' 0 - "Begin" overall operation
    ' 1 - "End" overall operation
    ' 2 - "Begin Item" operation
    ' 3 - "Item result"
    ' <result>
    ' Integer result code; HRESULT.
    ' <result msg>
    ' Text describing the result. In most cases this is translated using
    ' the Win32 function FormatMessage. In some cases a more descriptive
    ' message is provided that is better aligned with Offline Files.
    ' <path>
    ' UNC path string associated with the progress notifcation. This is
    ' empty for the "Begin" and "End" notifications.
    ' Define indexes of the various parts in the message.
    PART_REASON = 0
    PART_RESULT = 1
    PART_RESULTMSG = 2
    PART_PATH = 3
    ' The reason codes present in the <reason> part.
    REASON_BEGIN = 0
    REASON_END = 1
    REASON_ITEMBEGIN = 2
    REASON_ITEMRESULT = 3
    ' split the message into the 4 parts and extract those parts.
    Parts = Split(Message, ":", -1, 1)
    Reason = CInt(Parts(PART_REASON))
    Path = Parts(PART_PATH)
    Result = CLng(Parts(PART_RESULT))
    ResultMsg = Parts(PART_RESULTMSG)
    Select Case Reason
    Case REASON_ITEMRESULT
    WScript.Echo Path
    if 0 <> Result then
    Wscript.Echo " Error: " & Hex(Result) & " " & ResultMsg
    end if
    Case REASON_END
    if 0 <> Result then
    Wscript.Echo "Error: " & Hex(Result) & " " & ResultMsg
    end if
    End Select
    End Sub
    ' Called when the operation is complete.
    Sub SINK_OnCompleted(HResult, objLastError, objContext)
    bDone = True
    End Sub
    *This code was pulled from: http://blogs.technet.com/b/filecab/archive/2007/04/26/cscsyncall-vbs-sync-the-entire-offline-files-cache.aspx

    Hi,
    Please know that Offline Files in Windows 7 uses Bitmap Differential Transfer. Bitmap Differential Transfer tracks which blocks of a file in the local cache are modified while you are working offline and then sends only those blocks to the server. In Windows
    XP, Offline Files copies the entire file from the local cache to the server, even if only a small part of the file was modified while offline.
    How the synchronization in Windows 7 Offline Files works
    http://blogs.technet.com/b/netro/archive/2010/04/09/how-the-synchronization-in-windows-7-offline-files-works.aspx
    That should be the cause of the issue that your script didn't work.
    Considering that the issue should be related to the script, I suggest to post the question on Script Center forum for further help.
    Script Center forum:
    http://social.technet.microsoft.com/Forums/scriptcenter/en-US/home
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. 
    Thanks for understanding.
    Kate Li
    TechNet Community Support

  • Is there any equivalent in OS X to Windows Offline files?

    I have been using Offline files in Windows since1999, and today this is the only feature I still haven't found a way to do with a Mac. I need that for work. Is it available with Mac OS X Lion?
    Thanks a lot!

    lupunus wrote:
    CariocaDaGema wrote:
    I have been using Offline files in Windows since1999, and today this is the only feature I still haven't found a way to do with a Mac. I need that for work. Is it available with Mac OS X Lion?
    Thanks a lot!
    If you refer to "offline files" as downloaded websites you may use it quite like in Windows by choose "save as" for the site. It creates a folder and a html file to open in a browser.
    Or did I misunderstood your question?
    Lupunus
    You did, Offline Files (in windows) refers to files stored on a network drive that are mirrored to your local machine (for offline use) and then synchronized back to the network drive when you reconnect.

  • Disable Offline Files

    Am trying to devise a package to push to W2K (fully-patched) workstations
    that will disable Offline Files (in Windows Explorer, Tools - Folder
    Options - Offline Files tab - uncheck Enable Offline Files). It turns out
    that it is not an easy, quick reghack. Additionally, we "lock down" our
    users, users are USERS and not administrator-equivalent. We are using
    client 4.91 with mixed SP1 and SP2. We use ZEN 3.2 SP3. Server is NetWare
    6.5 SP?
    The following regkeys are part of the disabling process:
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Applets\SysTray]
    "Services"=dword:00000017
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\NetCache]
    "DefCacheSize"=dword:00000415
    "Enabled"=dword:00000000
    However, just using those keys don't disable the feature (if you enter
    these, it doesn't disable the function - the function stays retained).
    I found the following additional information:
    C:\Winnt\CSC is a hidden directory, and when you Enable Offline Files, 2
    "system" files are created (if they didn't exist) - 00000001 and 00000002.
    You can delete 00000002 anytime, but not 00000001 unless you disable
    Offline Files. You can not delete 00000001 unless you disable Offline Files.
    I can easily push out a reghack for just about any other program with no
    issues, but this is something else (and, nevertheless, frustrating).
    Problem: Just inserting the regkeys manually, clicking on the REG file, or
    pushing the keys via ZEN, does NOT disable the Offline Files option.
    QUESTION: Has anyone used ZEN to successfully push out a method to disable
    Offline Files, and if yes, what is needed to disable that functionality?
    Thank you.

    Use a Group Policy:
    \Computer Configuration\Administrative Templates\Network\Offline Files\Allow
    or Disallow use of the Offline Files feature
    Craig Wilson
    Novell Product Support Forum Sysop
    Master CNE, MCSE 2003, CCNA
    Editor - http://www.ithowto.com
    (Seeking Full-Time Expert? Drop me a note :> )
    <[email protected]> wrote in message
    news:[email protected]...
    > Am trying to devise a package to push to W2K (fully-patched) workstations
    > that will disable Offline Files (in Windows Explorer, Tools - Folder
    > Options - Offline Files tab - uncheck Enable Offline Files). It turns out
    > that it is not an easy, quick reghack. Additionally, we "lock down" our
    > users, users are USERS and not administrator-equivalent. We are using
    > client 4.91 with mixed SP1 and SP2. We use ZEN 3.2 SP3. Server is
    > NetWare
    > 6.5 SP?
    >
    > The following regkeys are part of the disabling process:
    >
    > **************************************
    >
    > [HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Applets\SysTray]
    > "Services"=dword:00000017
    >
    > [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\NetCache]
    > "DefCacheSize"=dword:00000415
    > "Enabled"=dword:00000000
    >
    > **************************************
    >
    > However, just using those keys don't disable the feature (if you enter
    > these, it doesn't disable the function - the function stays retained).
    >
    > I found the following additional information:
    >
    > C:\Winnt\CSC is a hidden directory, and when you Enable Offline Files, 2
    > "system" files are created (if they didn't exist) - 00000001 and 00000002.
    > You can delete 00000002 anytime, but not 00000001 unless you disable
    > Offline Files. You can not delete 00000001 unless you disable Offline
    > Files.
    >
    > I can easily push out a reghack for just about any other program with no
    > issues, but this is something else (and, nevertheless, frustrating).
    >
    > Problem: Just inserting the regkeys manually, clicking on the REG file, or
    > pushing the keys via ZEN, does NOT disable the Offline Files option.
    >
    > QUESTION: Has anyone used ZEN to successfully push out a method to disable
    > Offline Files, and if yes, what is needed to disable that functionality?
    >
    > Thank you.
    >
    >

  • Offline files greyed out.

    I have a client computer running win 7. It's on a domain running server 2012. I had three folders mapped to that computer, and one of the folders was set to sync offline files, but it was the wrong one. I unchecked the "make available offline"
    setting. It then un indexed that folder. I then tried to set the correct folder to "make available offline", but it's greyed out. I've tried multiple fixes but nothing works. Can someone show me how to make the correct folder available for offline
    files.
    Thank you.

    Hi,
    Before going further, would you please let me know if this issue occurred in the only one folder which set to sync offline files?
    Based on your description, would you please let me know if you use the administrator account? If not, please logon as an administrator and the monitor this issue.
    In addition, please refer to the following article and check if it’s helpful.
    Offline files in Windows XP – Make Available Offline?
    http://synergy-blog.com/blog/2009/11/offline-files-in-windows-xp-make-available-offline/
    If this issue still exists, please don’t hesitate to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • Word crashing whilst offline files enabled

    Hi all,
    Having a few issues with Microsoft Word crashing whilst using offline files through the Sync centre.
    We use folder redirection to a central server, and supplement this with offline file sync for when they are off-site.
    When 'Online' the documents can be opened and saved without issue, however as soon as the laptop is taken home, Word will open a document and then crash. The same goes for trying to save it. A new document will not crash until a save is attempted.
    I believe this is down to offline files and perhaps the location they are trying to save in (C:\WIndows\CSC??). Anyone have any ideas on a fix? I'm going to play around with permissions a bit later to see if that has any effect, and also try saving and opening
    from a local location (such as USB).
    MS Office 2010
    Windows 7 Enterprise 64bit
    Lenovo L430 ThinkPads i3 4GB RAM Integrated graphics
    Thanks.

    Hi,
    In regarding of the issue, I have some questions about the issue:
    Did the other programs crashed when you opened the other format of the offline files, such as Excel file, txt file?
    Did all the local Word 2010 files crash when saving?
    Let's do the test to narrow down the issue:
    Open a other format offline file (Excel or other) through Sync center, if it still makes the program crashed, please try to
    reinitialize the offline cache and then follow the below link to re-use the offline file:
    http://windows.microsoft.com/en-us/windows/working-with-network-files-offline#1TC=windows-7
    If the issue only occur with Word offline file, we may force on the Word program itself. I recommend we may try the steps mentioned in the following article and check if it helps:
    http://support.microsoft.com/kb/921541
    If the issue still exists, please try the following methods:
    Verify/install the latest updates
    Start Word in safe mode, the issue may be caused by some add-ins. (http://office.microsoft.com/en-us/powerpoint-help/work-with-office-safe-modes-HP010354300.aspx)
    Repair Office 2010.
    Hope it's helpful.
    Thanks
    George Zhao
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click "[email protected]"

  • Offline Files sync gives Access Denied on Windows 8.1 Enterprise

    A small number of our staff have now been issued with Windows 8.1 Enterprise hybrid tablet computers, however there is a problem with using Offline Files on them - when synchronising, it responds "Access Denied".
    The tablets have Windows 8.1 Enterprise with all the latest updates on them. Staff users have a home folder on the network under \\server\staff\homes\departmentname\username which gets mapped to U: and their My Documents is redirected there. The server is currently
    Windows Server 2003 R2 SP2.
    We have tried:
    Resetting the Offline Files cache using the FormatDatabase registry key
    Using Group Policy Objects to force Offline Files synchronisation at logon and logoff
    Clearing the local cached copy of the user's profile from the machine and getting them to log back on to recreate it
    Setting up Offline Files event logging to the event viewer - this provides no useful information as it only logs disconnect/reconnect and logoff/logon events
    Forcing Group Policy update using gpupdate /force
    Forcing synchronisation using PowerShell and https://msdn.microsoft.com/en-us/library/windows/desktop/bb309189%28v=vs.85%29.aspx?f=255&MSPPError=-2147217396
    As suggested by http://support.microsoft.com/kb/275461 we gave the All Staff security group Read permissions on F:\Staff (which is the one that is shared as \\server\staff) and then blocked inheritance for folders below that
    We also checked the following:
    The CSC cache has not been relocated
    No error 7023 or event 7023 errors relating to Offline Files are present in the event logs
    The Offline Files service is running
    The OS is already Windows 8.1 Enterprise, so installing the Pro Pack is not applicable
    In HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\UserState\UserStateTechnologies\ConfigurationControls  all the values are set to 0 and not 1
    We do not use System Center Configuration Manager
    No errors were found in the Folder Redirection event logs
    None of these solved the problem, does anyone have any suggestions?
    Here is the error we are seeing:
    Thanks,
    Dan Jackson (Lead ITServices Technician)
    Long Road Sixth Form College
    Cambridge, UK

    Hi,
    Generally speaking, this problem is most probably occurs at File Server Client. 
    Firstly, please check the sharing file Sync Settings.
    Shared file properties\Sharing\Advanced Sharing\Caching 
    Also check shared file user list, make sure these problematic user account have full permission.
    On the other hand, could you able to access to the shared file directly in Windows Explorer?
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Yes, the user can access the shared folder in Windows Explorer. The user has the following permissions:
    Traverse Folder/Execute File
    List Folder/Read Data
    Read Attributes
    Read Extended Attributes
    Create Files/Write Data
    Create Folders/Append Data
    Write Attributes
    Write Extended Attributes
    Delete
    Read Permissions
    Here is a screenshot of how the Caching settings are set up on the top-level Staff share.

  • How to Move Offline Files Cache in Windows 7?

    I'm using the offline files feature in Win7 (much better implementation, btw - kudos!) and I've run into a problem:  the CSC is using up all the drive space on C:\.  I'd like to move the CSC to D:\, however I've been unable to do so.
    I've seen this posted here previously (2/2009), however the response was to follow the instructions from Vista (using migwiz.exe).  When I launch migwiz.exe, I have no option of selecting the offline files as outlined in the Vista instructions (http://blogs.technet.com/filecab/archive/2006/12/12/moving-the-offline-files-cache-in-windows-vista.aspx).
    Are there any other ways of doing this?
    Thanks!

    Hi everyone,
    I have found a way to move the offline cache in W7, but it means you have to reset your existing offline files, give the new location, and resync the folders in the new location.
    Here is what to do (if you haven't synchronised any offline files yet, for exemple after a clean install, you can start directly in step 3):
    0) Make sure your existing offline files are synchronised with the server, as you are going to lose ALL the offline copies and you don't want to lose any new/modified files. Make a backup if you're not sure and if the files are important.
    1) reset the content of the old cache by adding the following command in a batch file and running it (of course you can add the parameter in the registry manually, but it's quite handy to have the batch ready whenever you need to reset the cache):
    REG ADD "HKLM\System\CurrentControlSet\Services\CSC\Parameters" /v FormatDatabase /t REG_DWORD /d 1 /f
    2) Reboot, the added key will be detected, all the content of the cache will be deleted, as well as the key itself (it only resets once)
    3) Add the following registry key in the same HKLM\System\CurrentControlSet\Services\CSC\Parameters section of the registry:
    Type: REG SZ (string)
    Name: CacheLocation
    Value: the new location in NT format, ie \??\d:\csc if you want to create the new cache in d:\csc
    4) Create the folder in the new location
    5) Reboot (not sure if it's necessary, but better safe than sorry)
    6) Reselect the files/folders you want to sync offline, and they should sync in the new location.
    7) If you want to, you can delete the old cache location in c:\windows\csc by following the end of the vista procedure linked in the first post (using takeown etc)
    It worked for me (Win7 RTM x86), let us know if it works for you...
    Obviously it won't help if you don't want to / can't resynchronise, but if you're starting from scratch or don't mind resyncing from scratch, it's a good workaround.
    EDIT: if you sync a lot of files and get a lot of errors, try to reset your offline files again following the above procedure (steps 1-2), disable offline files, reboot, enable offline files, reboot, and resync your files. Again, it worked for me...

  • Problem to make able Offline File Windows 7

    Hi, I need your help to solve this problem whit the offline files.
    This is the step-by-step of what i done:
    I opened the control panel in windows 7
    I Clicked on the sync center icon
    I Clicked on the manage offline files link
    I Clicked on the enable offline files button
    I Restarted the pc
    But it doesn’t work out: when I go back to the start on the control panel I find the button “Enable Offline Files” instead of the “Disable  Offline Files”.
    Can someone tell me why? I need to know what I do wrong.
    Tks

    Hi,
    Did you enable offline files by using an administrator account? Just a confirmation, thanks for your understanding.
    In addition, would you please let me know whether the problematic Windows 7 client computer joined to a domain?
    If it’s in domain environment, please contact your administrator and confirm if disable “Allow or Disallow use of the Offline Files feature” policy setting (the path in GPME: Computer Configuration-> Policies-> Administrative Templates->
    Network-> Offline Files). If disable this policy setting, Offline Files is disabled and users cannot enable it.
    Please also refer to following TechNet article and check if can help you.
    Configuring New Offline Files Features
    for Windows 7 Computers Step-by-Step Guide
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Windows 8.1 Client Side Caching - Is it possible to specify the location of the offline file cache?

    Hi,
    Is there any approved way to change the location of the offline files cache in Windows 8.1?  I'm asking before moving client systems from Windows 7 where a registry change was required - is this still the way to go?
    I believe that if the default user-profile directory is moved, this causes problems for updates to Windows 8/8.1 now, is the same true if you move CSC?
    Just a bit of background.  The systems I want to do this for have smallish SSD boot drives with a higher capacity spinning disk.  The machines are members of a domain with Folder Redirection setup.  I could setup group policies to disable
    caching of some of the larger directories or even disable CSC entirely on the machines which have an SSD boot drive, but would prefer not to do so.
    Thanks in advance.

    Hi,
    According to your descryption, In windows 7, the tool is migwiz.exe, namely the Windows Easy Transfer, you can modify the registry in the way listed in the post below:
    http://social.technet.microsoft.com/Forums/en-US/bbf5890c-b3d7-4b38-83d8-d9a5e025fb2b/how-to-move-clientside-caching-to-a-new-location?forum=w7itproinstall
    In Windows 8, Windows easy transfer is also a built in tool to migrate user profiles and user settings, but as for the offline transfer, I suggest to use the USMT for your situation.
    Because with USMT you can specify the folder that you want to migrate the files to, by using an offline.xml you can set the path just as the sample listed below:
    <offline>
         <winDir>
              <path>C:\Windows</path>
              <path>D:\Windows</path>
              <path>E:\</path>
         </winDir>
         <failOnMultipleWinDir>1</failOnMultipleWinDir>
    </offline>
    You can also refer t othe details at:
    http://technet.microsoft.com/en-us/library/hh824880.aspx
    Regards
    Wade Liu
    TechNet Community Support

  • "Windows could not start the offline files service on local computer. Error 3: The system cannot find the path specified"

    Using Windows 8.1 Pro on Toshiba Satellite i7 Laptop with 8Gb Ram
    After upgrade from Windows 8 Pro to 8.1 Pro, the Offline Files/CSC service refuses to start and gives the error message:
    "Windows could not start the offline files service on local computer. Error 3: The system cannot find the path specified"
    Before the upgrade, offline files worked fine... how do I re-enable offline files?

      I had a similar issue -  couldn't make any files available offline.
    I found that the offline folder service would not start
    This was because the CSC permission were totally screwed.  I had to take ownership of each folder and file, one by one, then grant everyone full access.
    then delete the full contents of the CSC folder
    format the CSC database using the registry fix then reboot
    in control panel, disable the offline files,  reboot, then re-enable.  and now its working :)
    2hrs to resolve this, with grateful thanks to this thread and some others.
    damn windows8

  • Offline file issues with windows 8.1 not responding

    Hi,
    I am trying to make a teachers home folder available offline so the teacher can access his work at home. I am using windows 8.1, and offline files is enabled. When I select the folder to make it available offline nothing happens, usually it should go through
    a process of making the folder available offline.
    Any help or advice will be helpful
    Thanks in advance

    Hi,
    Please check the offline setting in Sync Center first.
    Open Control Panel, then type offline in
    search bar and press Enter.
    Make sure Offline file is enabled.
    Also you can try to use a little txt file for test if it could be offline access.
    If problem persists, please check Event Viewer if it identify this problem.
    Roger Lu
    TechNet Community Support

  • Windows Offline Files / Sync Center - 99GB?? bug?

    Currently have a laptop connected to a domain where the user's My Documents folder is set up in Sync Center... while the laptop is on the network everything is fine and dandy, however once the user disconnects a good portion of the files and folder show
    a gray X indicating that they haven't sync'd over a local copy. When going into the 'Disk usage' tab for Sync Center, everything shows as 99GB used, 99GB available and the drive size is 999GB. If I do a manual sync I see that it fails due to not enough offline
    cache space. Attempts to change it with the 'Change size' button have failed as nothing shows up when I click on that button. Free disk space shows up as roughly 24GB free and Windows Scan Disk reveals nothing wrong with the drive. Help!

    Hi,
    Did this issue occur before ? Did the machines in the domain share the same issue with you?
    1.If the issue occured occasionally, I recommend you to  manually re-initialize the offline files database/client-side cache following this link:
    How to re-initialize the offline files cache and database in Windows XP (Win7 takes with the same path)
    https://support.microsoft.com/kb/230738?wa=wsignin1.0
    2.This issue may be caused by the group policy,please check the following policies according to the path.If you have no permission to change the policies ,please contact with your administrator.
    Here is the policies path:
    Computer Configuration\Administrative Templates\Network\Offline Files
    Limit disk space used by off line files
    Default cache size
    Prohibit user configuration of Offline files
    Here is the link for reference:
    Fixing OffLine File Cache Problems Using Group Policy
    http://www.falconitservices.com/support/KB/Lists/Posts/Post.aspx?ID=158 (link from official website would be better)
    NOTE: This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites.
    3.If the issue persists, please check the Event Viewer for related error information.
    This path may be helpful:
    Event Viewer \Applications and Services\Microsoft\Windows\Offline Files
    Best regards 

Maybe you are looking for

  • Is Garage band SPDIF compatible?

    My SPDIF signal works fine with Soundtrack Pro but I can't get it to work with garage band any insights? Thanks

  • Making a password show what parts of the document you see

    I have a random request from a client that I am not sure is even possible. They want their document to be used by two people, one of them will only be able to see say 4 pages of it while the other will be able to see it all including what the person

  • Variables for a given cube

    Hi I have activated a cube 0XYZ and did not activate any queries. I am creating a query on my own i want know what all variables and CKF & RKF i ca use If i am creating a query on 0XYZ. Any way? Please let me know Thanks

  • 30" Monitor having problems after updating to 10.6.4

    I have a Dell 3007WFP 30" monitor and as soon as I updated to 10.6.4 I am seeing a mirror display on the right hand side of the entire screen. It's in resolution 2048x1280 which is the only resolution I like to use. I am seeing other posts on here ab

  • I can't download free games .....................

    Hi i have a real problem that when i click on a free game to download it they tell ma that"your request can't processed"error code 1009. please can you tell me what should can i do??????????