Windows update change download location
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: City Beneath the Waves Looping
--
Chapters
00:00 Windows Update Change Download Location
00:35 Answer 1 Score 10
01:50 Accepted Answer Score 17
02:09 Thank you
--
Full question
https://superuser.com/questions/870103/w...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows7 #windows81 #windowsupdate
#avk47
ACCEPTED ANSWER
Score 17
I haven't tested this, but what about a symlink?
net stop wuauserv
mklink /j c:\windows\softwaredistribution d:\other\desired\location
net start wuauserv
ANSWER 2
Score 10
The updates are automatically downloaded to the WINDOWS\Software Distribution\Download
subfolder.
They are then unpacked to the drive which has the most free space available and installed from there.
The contents of the Download subfolder are periodically flushed.
There's no way to redirect where the updates are downloaded to due to Security concerns.
After reading a post of meatspace I have found this one:
Start>Run
- type
cmd
and press enter - type
net stop wuauserv
and press enter - type
rename c:\windows\SoftwareDistribution softwaredistribution.oldand
press enter
Creating a symbolic link using Junction (Download)
In this example the software distribution folder will be redirected from C:\WINDOWS\SoftwareDistribution
to the D:\WINDOWS\SoftwareDistribution
- Creating the Junction
To create the target directory from the command prompt
C:\md D:\Windows\SoftwareDistribution
To create the Junction
C:\junction C:\WINDOWS\SoftwareDistribution “D:\WINDOWS\SoftwareDistribution”
Restart the Windows Update Service
type
net start wuauserv
and press enter