在Windows 8.1中更新联结


2

我这样做:

net stop wuauserv

然后:

重命名c:\ windows \ SoftwareDistribution SoftwareDistribution.old

接着:

mklink E:\windows\SoftwareDistribution \D

\d最终在做,因为否则它不起作用和\ d因为同样的原因。

接着:

mklink /J C:\windows\SoftwareDistribution "E:\windows\SoftwareDistribution

所以我试着

net start wuauserv

我收到这条消息:

C:\Windows\system32>NET START WUAUSERV
The Windows Update service is starting.
The Windows Update service could not be started.

A system error has occurred. 

System error 3 has occurred.

The system cannot find the path specified.

那么我做错了什么?有人能帮助我吗?

Answers:


2

那么我做错了什么?

我这样做:

net stop wuauserv

然后:

rename c:\windows\SoftwareDistribution SoftwareDistribution.old

接着:

mklink E:\windows\SoftwareDistribution \D

此命令将创建指向目录的目录符号链接\D(如果存在)。我不认为这是你想做的。

我最终在做什么,因为否则它不起作用和\ d因为同样的原因。

接着:

mklink /J C:\windows\SoftwareDistribution "E:\windows\SoftwareDistribution

上一个命令具有不匹配的"字符。它应该是:

mklink /J C:\windows\SoftwareDistribution "E:\windows\SoftwareDistribution"

要么:

mklink /J C:\windows\SoftwareDistribution E:\windows\SoftwareDistribution

注意:

E:\windows\SoftwareDistribution 必须已经存在才能发挥作用。


正确的方法

使用以下命令:

net stop wuauserv
rename c:\windows\SoftwareDistribution c:\windows\softwaredistribution.old
md E:\windows\SoftwareDistribution
mklink /J C:\windows\SoftwareDistribution E:\windows\SoftwareDistribution
net start wuauserv

使用Junction重定向更新和软件分发文件夹到另一个硬盘驱动器


好吧,我尝试了,我得到了与以前相同的反复无常。
匿名

我有一个问题为什么我不需要符号链接,不是他的观点是象征性的指导c:\ windows \ SoftwareDistribution到他的新目的地
Anonymous

无论如何,我得到了与之前相同的结果但没有成功
Anonymous

@Anonymous您是否先创建了目录E:\windows\SoftwareDistribution?查看更新的答案。
DavidPostill

谢谢你,我刚刚意识到错误从开始我认为符号链接是关键,你知道将SoftwareDistribution从c指向E中的符号。
匿名
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.