Atualizar junção no Windows 8.1

2

Estou fazendo isso:

net stop wuauserv

então:

renomeie c: \ windows \ SoftwareDistribution SoftwareDistribution.old

e depois:

mklink E:\windows\SoftwareDistribution \D

Eu estou fazendo \d no final porque senão ele não funciona e \ d por causa do mesmo motivo.

e depois:

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

então eu tento

net start wuauserv

e recebo esta mensagem:

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.

Então, o que estou fazendo de errado? Alguém pode me ajudar?

    
por Anonymous 02.04.2015 / 07:06

1 resposta

2

Então, o que estou fazendo de errado?

I'm doing this:

net stop wuauserv

then:

rename c:\windows\SoftwareDistribution SoftwareDistribution.old

and then:

mklink E:\windows\SoftwareDistribution \D

Este comando criará um link simbólico de diretório para o diretório \D (se existir). Eu não acho que isso é o que você quer fazer.

I'm doing \d in the end because otherwise it doesn't work and \d because of the same reason.

and then:

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

O comando anterior tem um caractere " incorreto. Deve ser:

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

ou:

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

Nota:

E:\windows\SoftwareDistribution já deve existir para que isso funcione.

A abordagem correta

Use os seguintes comandos:

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

Fonte Redirecionando Atualizações e a Pasta de Distribuição de Software usando o Junction para outro disco rígido

    
por 02.04.2015 / 08:07