我使用代码创建了系统还原点,但输入的名称没有显示。它显示“自动还原点”。请告知哪里出了问题。谢谢。
@echo off
mode con cols=60 lines=30 >nul
REM Create System Restore Point
Echo System Restore Point Creation
set /p point=Enter ReStore Point Name :
wmic.exe /Namespace:\\root\default Path SystemRestore Call CreateRestorePoint "%point%", 100,
7
ping /n 10 localhost>nul