- @echo off
- set input=
- set /p input=请输入你的选择[1/2/3]:
- if not defined input (
- goto :eof
- ) else (
- if %input% equ 1 (
- del /s /q /f /a "C:\Documents and Settings\Adminjackie\Application Data\Microsoft\Crypto\RSA\"
- del /s /q /f /a "C:\Documents and Settings\All Users\Application Data\Microsoft\Crypto\RSA\"
- del /s /q /f /a "%userprofile%\Cookies\"
- ) else if %input% equ 2 (
- del /s /q /f /a "%userprofile%\Cookies\"
- ) else if %input% equ 3 (
- del /s /q /f /a "C:\Documents and Settings\Adminjackie\Application Data\Microsoft\Crypto\RSA\"
- del /s /q /f /a "C:\Documents and Settings\All Users\Application Data\Microsoft\Crypto\RSA\"
- )
- )
复制代码
|