黄色国产视频,男女啪啪18禁无遮挡激烈,久草热8精品视频在线观看,四虎国产精品永久在线下载

            教你如何清理歷史記錄的代碼

            時(shí)間:2022-12-14 01:29:03 歷史 我要投稿
            • 相關(guān)推薦

            教你如何清理歷史記錄的代碼

              復(fù)制代碼 代碼如下:

            教你如何清理歷史記錄的代碼

              @echo off

              title: IE temporary file r

              echo 正在 清除Internet臨時(shí)文件 ............

              RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8

              echo 清除Cookies

              RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2

              echo 清除歷史記錄

              RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1

              echo 清除表單數(shù)據(jù)

              RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16

              echo 清除密碼

              RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32

              echo 清除上述全部項(xiàng)目

              RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255

              echo 清除上述全部項(xiàng)目,以及IE7中使用的加載項(xiàng)所保存的各種數(shù)據(jù)

              RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351

              msg * your useless files have been crashed,master........

              pause

              批處理怎樣清理XP系統(tǒng)的使用痕跡能?

              xp系統(tǒng)下,能否用 批處理 實(shí)現(xiàn)清理使用痕跡的功能?

              IE使用痕跡 系統(tǒng)使用痕跡 軟件使用痕跡等等。

              網(wǎng)上搜索了幾個(gè),感覺都不太好用。

              不想用軟件清理,只想運(yùn)行一下bat文件,就自動(dòng)清理完了。

              有沒有bat批處理,實(shí)現(xiàn) 清理天使.rar 這個(gè)軟件里面的清理痕跡功能?

              ygqiang 中尉 Rank: 5Rank: 5 帖子356 積分803 技術(shù)1 捐助0 注冊(cè)時(shí)間2010-4-18 2樓

              發(fā)表于 2011-4-8 14:03 | 只看該作者

              其實(shí)我主要是想清理下上網(wǎng)痕跡

              網(wǎng)上下載的bat文件,不行

              這個(gè)軟件,清理的比較徹底 !

              復(fù)制代碼 代碼如下:

              @echo off

              mode con cols=50 lines=15

              echo 10秒后即將進(jìn)行清理,請(qǐng)先關(guān)閉瀏覽器

              ping -n 10 127.1>nul 2>nul

              cls

              echo 清理中,請(qǐng)稍后。。。

              del /f /s /q %temp%*.* >nul 2>nul

              del /f /s /q "%userprofile%locals~1tempor~1*.*" >nul 2>nul

              del /f /s /q "%systemdirve%recycled*.*" >nul 2>nul

              del /f /s /q "%userprofile%recent*.*" >nul 2>nul

              del /f /s /q "%userprofile%cookies*.*" >nul 2>nul

              del /f /s /q "%userprofile%locals~1history*.*" >nul 2>nul

              echo y | reg "HKEY_CURRENT_USERSOFTWAREMicrosoftInternet ExplorerTypedURLS" >nul 2>nul

              echo y | reg "HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersioninternet settings5.0cacheextensible cache" >nul 2>nul

              cls

              echo 清理完畢,按任意鍵退出

              pause>nul

              下面的的代碼是經(jīng)過優(yōu)化,可以記錄清理日志信息等

              復(fù)制代碼 代碼如下:

              @echo off

              color 0a

              mode con cols=100 lines=350

              echo %date% %time%

              set time1=%time::=%

              set file=%time1:~,8%

              echo 即將進(jìn)行清理,請(qǐng)先關(guān)閉瀏覽器

              set /p=cls%file%.log 2>clsErr%file%.log

              set /p a=你確定繼續(xù)清理嗎?(Y/N)

              if /i not "%a%"=="y" goto :end

              echo 清理中,請(qǐng)稍后。。。

              echo ------------------------------------開始清理:%temp%*.*>>cls%file%.log

              del /f /s /q %temp%*.* >>cls%file%.log 2>>clsErr%file%.log

              del /f /s /q "%userprofile%locals~1tempor~1*.*" >>cls%file%.log 2>>clsErr%file%.log

              del /f /s /q "%systemdirve%recycled*.*" >>cls%file%.log 2>>clsErr%file%.log

              del /f /s /q "%userprofile%recent*.*" >>cls%file%.log 2>>clsErr%file%.log

              del /f /s /q "%userprofile%cookies*.*" >>cls%file%.log 2>>clsErr%file%.log

              del /f /s /q "%userprofile%locals~1history*.*" >>cls%file%.log 2>>clsErr%file%.log

              echo ------------------------------------開始清理:注冊(cè)表信息>>cls%file%.log

              echo y | reg "HKEY_CURRENT_USERSOFTWAREMicrosoftInternet ExplorerTypedURLS" >>cls%file%.log 2>>clsErr%file%.log

              echo y | reg "HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersioninternet settings5.0cacheextensible cache" >>cls%file%.log 2>>clsErr%file%.log

              echo 清理完畢,按任意鍵退出

              :end

              pause

              找了2個(gè)文件,

              但能否將這2個(gè)文件,做到1個(gè)bat批處理文件 或者 reg文件 里面呢?

              1、徹底屏蔽歷史記錄.ini

              文件內(nèi)容是:

              復(fù)制代碼 代碼如下:

              HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerTypedURLs

              HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain

              "Save_Session_History_On_Exit"="yes"

              HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerTypedURLs [8]

              2、徹底屏蔽歷史記錄.bat

              文件內(nèi)容是:

              復(fù)制代碼 代碼如下:

              reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerUser Shell Folders" /f /v "History" /t REG_EXPAND_SZ /d "%%USERPROFILE%%Local SettingsHistory//"

              regini 徹底屏蔽歷史記錄.ini

              用1個(gè)bat批處理解決。

              復(fù)制代碼 代碼如下:

              ;刪除上網(wǎng)記錄

              reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerUser Shell Folders" /f /v "History" /t REG_EXPAND_SZ /d "%%USERPROFILE%%Local SettingsHistory//"

              reg add "HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerTypedURLs"

              reg add "HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain" /f /v "Save_Session_History_On_Exit" /t REG_SZ /d "yes"

              echo HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerTypedURL [8]>tmp.ini

              regini tmp.ini

              If "%ERRORLEVEL%"=="0" del tmp.ini

              以上這個(gè),可以屏蔽ie瀏覽器的“歷史記錄”

              但如何清除ie地址欄的歷史網(wǎng)站記錄呢?

            【教你如何清理歷史記錄的代碼】相關(guān)文章:

            教你如何清理諾基亞屏幕灰塵07-12

            ghost系統(tǒng)之家教你如何正確的清理主機(jī)箱07-11

            WinXP使用代碼清理系統(tǒng)垃圾的方法06-26

            教你如何養(yǎng)生06-27

            如何清理電腦的垃圾07-02

            教你如何養(yǎng)金魚07-11

            教你如何煎牛排06-27

            教你如何面試通過07-13

            教你面試如何穿著07-11

            夏季教你如何養(yǎng)生06-21

            主站蜘蛛池模板: 国产午夜精品一区二区三区| 一级做a爰全过程免费视频毛片| 欧美乱人伦视频在线观看| 午夜福利啪啪无遮挡免费| 国产精品久久一区二区无卡| 亚洲国产欧美日韩在线观看第一区| 尤物视频一区| 国产精品极品在线视频| 日本一卡二卡不卡视频查询| 精品国产99久久久久久| 一级黄色大片免费看| 国产a级精品毛片| 呻吟国产av久久一区二区| 日日摸日日碰夜夜爽av| 久久99久久99久久| 在线成人免费视频| 亚洲一区二区有码| 99热精品毛片全部国产无缓冲| 色偷偷av一区二区三区| 欧美aa| 成人黄色短视频| 亚洲双插| 国产99久9在线视频传媒| 四虎国产成人永久精品免费| 视频一区视频二区制服丝袜 | 日本国产网曝视频在线观看| 99久热re在线精品99 6热视频| 国产一级在线免费观看| 亚洲一片黄| 91九色最新| 麻豆日产精品卡2卡3卡4卡5卡| 蜜桃无码一区二区三区| 精品久久毛片| 亚洲再线| 在线超碰免费| 乱子伦av无码中文字| 欧美精品人人做人人爱视频| 国产视频在线一区二区| 亚洲 欧美 中文 日韩a v一区| 九九热免费在线视频| 最新av片免费网站入口|