My C drive is 15 Gb and filling up mostly avec the windows mise à jour désinstaller dossiers.
Puis-je set up windows mise à jour to put these désinstaller dossiers on a second drive avec more space
at the time the mise à jour takes place?
related questions:-
- [Is there a way to prevent installs/updates to litter my hard drive with cryptic folders?](https://superuser.com/questions/140/is-there-a-way-to-prevent-installs-updates-to-litter-my-hard-drive-with-cryptic-f)
- [Can I put Windows update uninstall folders on a different drive?](https://superuser.com/questions/22226/can-i-put-windows-update-uninstall-folders-on-a-different-drive)
Puis-je set up windows mise à jour to use the second drive for future mise à jours?
Re: Puis-je set up windows mise à jour to use the second drive for future mise à jours?
Hopefully I ne get a -1 for this as it ne pertain vers le désinstaller dossiers directly. But will help avec this utilisateurs space problème and the moving du mise à jour fichiers.
You could move some du other dossiers depuis it seems the désinstaller dossiers are hard coded? A good one serait C:\Windows\SoftwareDistribution dossier (where mises à jour, etc. are téléchargé to), cependant Microsoft says you ne peut pas move this one either, but vous pouvez si vous use the Microsoft (Sysinternals) [Junction](http://technet.microsoft.com/en-us/sysinternals/bb896768) tool (I toujours extract it vers le root of my C:\Windows dossier as it is used depuis le invite de commandes). This tool in essence redirects data from one location to another, the ordinateur thinks the dossier encore exists in its original location even though you moved it. I use it all the time for this dossier and others like the i386 dossier à la place of changing le registre.
**Adding a Junction**
First vous allez need to stop the Windows Mise à jour Service and copy the SoftwareDistribution dossier to your other drive (avec autorisations). Start a Command Promt (cmd) via Start > Run > cmd, ensuite :
```
net stop wuauserv
xcopy C:\Windows\SoftwareDistribution D:\Windows\SoftwareDistribution /O /X /E /H /K
```
Windows will ask you if D:\Windows\SoftwareDistribution specifies a fichier name or répertoire name (F = fichier, D = répertoire)?
```
Answer D for directory
```
Second vous allez rename the old dossier.
```
rename C:\Windows\SoftwareDistribution SoftwareDistribution.del
```
Third step is to créer the Junction (également depuis le invite de commandes) :
```
junction C:\Windows\SoftwareDistribution "D:\Windows\SoftwareDistribution"
```
Forth is to redémarrez le Windows Mise à jour Service :
```
net start wuauserv
```
See if vous pouvez télécharger an mise à jour. Si cela fonctionne, supprimez le SoftwareDistribution.del dossier, sinon, try again or rename the SoftwareDistribution.del fichier back.
**Supprimez le Junction**
To supprimez le Junction if pour une raison quelconque vous n'avez pas want it anymore. Arrêtez le Windows Mise à jour Service and copy the Software Distribution fichiers back vers le Windows dossier :
```
net stop wuauserv
xcopy D:\Windows\SoftwareDistribution C:\Windows\SoftwareDistribution /O /X /E /H /K
```
Next supprimez le juction avec -d :
```
junction -d D:\Windows\SoftwareDistribution
```
Ensuite redémarrez le Windows Mise à jour Service :
```
net start wuauserv
```
**See what dossiers have a Junction :**
```
junction -s c:\
```
You could move some du other dossiers depuis it seems the désinstaller dossiers are hard coded? A good one serait C:\Windows\SoftwareDistribution dossier (where mises à jour, etc. are téléchargé to), cependant Microsoft says you ne peut pas move this one either, but vous pouvez si vous use the Microsoft (Sysinternals) [Junction](http://technet.microsoft.com/en-us/sysinternals/bb896768) tool (I toujours extract it vers le root of my C:\Windows dossier as it is used depuis le invite de commandes). This tool in essence redirects data from one location to another, the ordinateur thinks the dossier encore exists in its original location even though you moved it. I use it all the time for this dossier and others like the i386 dossier à la place of changing le registre.
**Adding a Junction**
First vous allez need to stop the Windows Mise à jour Service and copy the SoftwareDistribution dossier to your other drive (avec autorisations). Start a Command Promt (cmd) via Start > Run > cmd, ensuite :
```
net stop wuauserv
xcopy C:\Windows\SoftwareDistribution D:\Windows\SoftwareDistribution /O /X /E /H /K
```
Windows will ask you if D:\Windows\SoftwareDistribution specifies a fichier name or répertoire name (F = fichier, D = répertoire)?
```
Answer D for directory
```
Second vous allez rename the old dossier.
```
rename C:\Windows\SoftwareDistribution SoftwareDistribution.del
```
Third step is to créer the Junction (également depuis le invite de commandes) :
```
junction C:\Windows\SoftwareDistribution "D:\Windows\SoftwareDistribution"
```
Forth is to redémarrez le Windows Mise à jour Service :
```
net start wuauserv
```
See if vous pouvez télécharger an mise à jour. Si cela fonctionne, supprimez le SoftwareDistribution.del dossier, sinon, try again or rename the SoftwareDistribution.del fichier back.
**Supprimez le Junction**
To supprimez le Junction if pour une raison quelconque vous n'avez pas want it anymore. Arrêtez le Windows Mise à jour Service and copy the Software Distribution fichiers back vers le Windows dossier :
```
net stop wuauserv
xcopy D:\Windows\SoftwareDistribution C:\Windows\SoftwareDistribution /O /X /E /H /K
```
Next supprimez le juction avec -d :
```
junction -d D:\Windows\SoftwareDistribution
```
Ensuite redémarrez le Windows Mise à jour Service :
```
net start wuauserv
```
**See what dossiers have a Junction :**
```
junction -s c:\
```