Ceci est une ancienne révision du document !


~~CLOSETOC~~

VSS - Réparer l'erreur 0x81000101

Pour résoudre le problème, il suffit de modifier le registre :

  • Clé: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\SPP
  • Propriété : CreateTimeout
  • Type : DWord (32bits)
  • Valeur : 12000000 (Décimal)

Ci-dessous, un petit script qui automatise cette modification :

$Key = "HKLM:\Software\Microsoft\Windows NT\CurrentVersion\SPP"
$Property = "CreateTimeout"
$Value = 12000000
$Test = (Get-ItemProperty -Path $Key -Name $Property).$Property
If ($Test -eq $Null)
{
    New-ItemProperty -Path $Key -Name $Property -PropertyType DWord -Value $Value
}
Else
{
    Set-ItemProperty -Path $Key -Name $Property -Value $Value
}

Nicolas THOREZ 2020/02/17 16:42

Entrer votre commentaire. La syntaxe wiki est autorisée:
 
  • vss81000101.1581954538.txt.gz
  • Dernière modification : 2020/02/17 13:48
  • (modification externe)