0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

不要なログを削除

Last updated at Posted at 2020-08-21

IE キャッシュのクリア

RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255

255という数字はすべて削除
「(インターネット一時ファイルの削除」(8)、
Cookieの削除」(2)、
履歴の削除」(1)、
フォームの削除」(16)、
パスワードの削除」(32

個別に実行することも可能です
// タブを指定して開く場合 (一番左が0)
control.exe Inetcpl.cpl,,4

イベントログ

rem イベントログ停止
sc config eventlog start= disabled
shutdown /r

rem ログを削除
C:\Windows\System32\winevt\Logs\

rem イベントログ自動起動
sc config eventlog start= auto

RDP

clean.bat
del /AH "%USERPROFILE%\Documents\Default.rdp"

del /AH "%OneDrive%\ドキュメント\Default.rdp"

reg delete "HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client" /f

rem ついでにプログラムの実行履歴の削除したい場合は以下
rem reg delete "HKEY_CLASSES_ROOT\Local Settings\Software\Microsoft\Windows\Shell\MuiCache" /f
  • レジストリ : 下の青部分
  • Default.rdp : 下の赤部分
  • OneDriveインストール時はドキュメントに保存されるのでそれも削除対象。

無題.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?