Différences
Ci-dessous, les différences entre deux révisions de la page.
| Prochaine révision | Révision précédente | ||
| vss81000101 [2020/02/17 15:43] – créée nekan | vss81000101 [2021/03/05 13:09] (Version actuelle) – nekan | ||
|---|---|---|---|
| Ligne 1: | Ligne 1: | ||
| - | ~~CLOSETOC~~ | ||
| ====== VSS - Réparer l' | ====== VSS - Réparer l' | ||
| + | <label type=" | ||
| + | |||
| + | 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 : | ||
| + | <sxh powershell> | ||
| + | $Property = " | ||
| + | $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 | ||
| + | }</ | ||
| - | --- // | ||
| ~~DISCUSSION~~ | ~~DISCUSSION~~ | ||