277 | | |
| 277 | == Clear Windows 7 Backup == |
| 278 | |
| 279 | {{{ |
| 280 | How to reset the Backup and Restore’s Action Center: |
| 281 | Create a 'System Restore' point before you edit the registry |
| 282 | |
| 283 | 1) Updating the registry: |
| 284 | The following registry change need to be made change the action center status 'DWORD values'. |
| 285 | |
| 286 | HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsBackup\Status\ActionCenterState DWORD=0 |
| 287 | |
| 288 | HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsBackup\ValidConfig DWORD=0 |
| 289 | |
| 290 | HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsBackup\ValidSystemImageBackup DWORD=0 |
| 291 | |
| 292 | reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsBackup\Status" /v ActionCenterState /d 0 /t REG_DWORD |
| 293 | reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsBackup\" /v ValidConfig /d 0 /t REG_DWORD |
| 294 | reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsBackup\" /v ValidSystemImageBackup /d 0 /t REG_DWORD |
| 295 | |
| 296 | |
| 297 | }}} |