- Joined
- Aug 15, 2015
- Messages
- 53
- Reaction score
- 3
Finally updated both my PCs to FCU 1709 and they both came through at the same time, which is very unusual. Normally one updates well before the other. Not the reason I am posing.
My portable has a single 1Tb SSD split into 2 'drives' (400 + 600Gb each roughly). As a result the C: drive is starting to run out of space and is close to being full so I do everything possible to take the load onto the 'data' drive. I also run most of my important data on a NAS which is mirrored (2 x 6Tb, at the moment). As a result of using a portable which is not always on the network I have the important directories on the network mirrored on the D-drive. It took a while before I realized how to move the Windows 'Offline' storage onto the D-drive with help of Mr Google, of course, but the procedure is relatively simple although it is relatively involved and uses the powershell. For the record the procedure involves:-
Lines 9 and 10 become
Start up the sync centre, enable offline files, reboot and lo and behold the files I had been working on reappeared (phew!).
Anybody any ideas why FCU might delete the symbolic link for C:Windows\CSC ? and why the commands in the powershell disappeared (but that might be another thread in the powershell area).
My portable has a single 1Tb SSD split into 2 'drives' (400 + 600Gb each roughly). As a result the C: drive is starting to run out of space and is close to being full so I do everything possible to take the load onto the 'data' drive. I also run most of my important data on a NAS which is mirrored (2 x 6Tb, at the moment). As a result of using a portable which is not always on the network I have the important directories on the network mirrored on the D-drive. It took a while before I realized how to move the Windows 'Offline' storage onto the D-drive with help of Mr Google, of course, but the procedure is relatively simple although it is relatively involved and uses the powershell. For the record the procedure involves:-
- Creating an offline folder through the Sync Centre in Control Panel
- Creating a folder for the offline file cache. Something like D:\Offline
- enter the powershell with administrator privileges
- type the following: takeown /r /f C:\Windows\CSC.
- Open the Sync Center and go to Manage Offline Files.
- Click Disable Offline Files and restart the machine.
- once back on the PC reenter powershell, again with Admin privileges
- then issue the following commands:
- rd /s C:\Windows\CSC (having just been created it should be empty but you may need to use /r as well, recursive)
- mklink /J C:\Windows\CSC D:\Offline
- (or whatever your folder name is, but use quotes if you have at least one space in the name).
- Reopen sync centre and the Manage Offline Files window and Enable Offline Files.
- Restart the machine.
- Your Offline files should now be stored on the other drive with important space on the Windows drive freed up.
Lines 9 and 10 become
- remove-item –recurse C:\Windows\CSC and
- new-Item –ItemType SymbolicLink –Path C:\Windows\CSC –Target D:\Offline
Start up the sync centre, enable offline files, reboot and lo and behold the files I had been working on reappeared (phew!).
Anybody any ideas why FCU might delete the symbolic link for C:Windows\CSC ? and why the commands in the powershell disappeared (but that might be another thread in the powershell area).