我怎么能制作一个能够跟踪和保存互联网历史记录的批处理文件(来自谷歌浏览器),在我运行CCleaner并通过谷歌浏览器清除历史记录后,批处理文件已经创建了一个文本文件并且历史记录仍在它?我需要这个是一个批处理文件,可以创建和更新关于此的文本文件。
批处理代码从这里开始:
@echo off
echo Welcome to the history tracker!
echo Turn on? [1]-Yes [2]-No
set /P variable=Enter choice:
IF "%variable%"=="1" (GOTO start)
IF "%variable%"=="2" (GOTO end)
:end
echo.
:start
REM I don't know what else to do
答案 0 :(得分:1)
@echo off
:top
for /f "delims=: tokens=2" %%i in ('ipconfig /displaydns^|find "Record Name"') do (find "%%i" /i history.txt >nul 2>&1|| echo %%i >>history.txt)
timeout /nobreak 5 >nul 2>&1
sort history.txt /o history.txt
goto top
这将为您提供所有访问过的SITES列表。不是网站上的个别网页,而是网站。