Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
In the Windows environment, a "Recovery Point" is commonly referred to as a "System Restore Point." System Restore Points are snapshots of your system files, program files, and registry settings at a specific point in time. They are crucial for recovering your system to a previous state in case of system failures, software issues, or other problems.
Open System Properties:
Win + R
to open the Run dialog.sysdm.cpl
and press Enter.Access System Protection:
Create Restore Point:
Open Command Prompt as Administrator:
Win + S
to open the search bar.cmd
, right-click on "Command Prompt," and select "Run as administrator."Execute the Command:
wmic.exe /Namespace:\\root\default Path SystemRestore Call CreateRestorePoint "MyRestorePoint", 100, 7
"MyRestorePoint"
with a descriptive name for your restore point.Open PowerShell as Administrator:
Win + S
to open the search bar.powershell
, right-click on "Windows PowerShell," and select "Run as administrator."Execute the Command:
Checkpoint-Computer -Description "MyRestorePoint" -RestorePointType "MODIFY_SETTINGS"
"MyRestorePoint"
with a descriptive name for your restore point.Open System Restore:
Win + S
to open the search bar.rstrui
and press Enter.Follow the Wizard:
Open Task Scheduler:
Win + S
to open the search bar.taskschd.msc
and press Enter.Create a New Task:
Set the Action:
powershell.exe
-Command "Checkpoint-Computer -Description 'ScheduledRestorePoint' -RestorePointType 'MODIFY_SETTINGS'"
Complete the Task:
By following these steps, you can create and manage System Restore Points in Windows, ensuring that you can recover your system to a previous state in case of any issues.