30 minutes from zero play to deploy docker+k8s cluster

2023-01-02   ES  

First trick: Clear system garbage

During the installation and use of Windows, there will be quite a lot of spam files, including temporary files (such as:*. Tmp*._ mp) log file (*.log) temporary help file (*.gid) disk check file ( *.CHK) Temporary backup files (such as:*. OLD*.bak) and other temporary files, especially if the temporary folder of IE was not cleared for a period of time, the cache file sometimes occupied hundreds of MB of disk space in the cache file. These junk documents not only waste valuable disk space, but also cause the system to run slowly in severe cases.

The following steps are very simple and two steps!

Right -click on the desktop, select a new notebook, copy the following words, click separately, set the file name to remove the system garbage .bat, remember that the complex name must be .bat, OK OK, so OK It’s! Your garbage removal is made successfully! Double -click it to quickly clean up the junk file, less than a minute

ps. The word to be copied is to see (red part)

@echo off

echo is clearing the system’s junk file, please wait …

del /f /s /q %systemdrive%\*.tmp

del /f /s /q %systemdrive%\*._mp

del /f /s /q %systemdrive%\*.gid

del /f /s /q %systemdrive%\*.chk

del /f /s /q %systemdrive%\*.old

del /f /s /q %systemdrive%\recycled\*.*

del /f /s /q %windir%\*.bak

del /f /s /q %windir%\prefetch\*.*

rd /s /q %windir%\temp & md %windir%\temp

del /f /q %userprofile%\cookies\*.*

del /f /q %userprofile%\recent\*.*

del /f /s /q “%userprofile%\Local Settings\Temporary Internet Files\*.*”

del /f /s /q “%userprofile%\Local Settings\Temp\*.*”

del /f /s /q “%userprofile%\recent\*.*”

Echo Clear System LJ complete!

echo. & pause

After double -clicking the file later, when the screen prompts to clear the system LJ, the system will be cleaned up!

Second trick: Clear all excess startup projects

This command will automatically clean up all the unnecessary start -up items, only retain the input method (CTFMON)

The purpose of

is to reduce unnecessary resource occupation and make the system run smoothly

The

method is as above, see the content below (red part)

@ ECHO OFF

color 1f

Title Clear all excess startup projects

PAUSE

reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /va /f

reg delete HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run /va /f

reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run /v ctfmon.exe /d C:\WINDOWS\system32\ctfmon.exe

reg delete “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg” /f

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\IMJPMIG8.1”

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\IMJPMIG8.1” /v command /d “”C:\WINDOWS\IME\imjp8_1\IMJPMIG.EXE” /Spoil /RemAdvDef /Migration32″

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\IMJPMIG8.1” /v hkey /d HKLM

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\IMJPMIG8.1” /v inimapping /d 0

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\IMJPMIG8.1” /v item /d IMJPMIG

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\IMJPMIG8.1” /v key /d SOFTWARE\Microsoft\Windows\CurrentVersion\Run

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002A”

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002A” /v command /d “C:\WINDOWS\system32\IME\TINTLGNT\TINTSETP.EXE /IMEName”

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002A” /v hkey /d HKLM

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002A” /v inimapping /d 0

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002A” /v item /d TINTSETP

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002A” /v key /d SOFTWARE\Microsoft\Windows\CurrentVersion\Run

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002ASync”

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002ASync” /v command /d “”C:\WINDOWS\IME\imjp8_1\IMJPMIG.EXE” /Spoil /RemAdvDef /Migration32″

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002ASync” /v hkey /d HKLM

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002ASync” /v inimapping /d 0

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002ASync” /v item /d TINTSETP

reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg\PHIME2002ASync” /v key /d SOFTWARE\Microsoft\Windows\CurrentVersion\Run

Del “C: \ documens and settings \ all users \ Start menu \ Substance \*.*” /Q /f

Del “C: \ Documens and Settings \ Default User \ Start Menu \ Program \ Start \*.*” /Q /f

del “%userprofile%\ Start menu \ Program \ Start \*.*” /Q /f

start C:\WINDOWS\pchealth\helpctr\binaries\msconfig.exe

Third trick: Clear all excess desktop right -click menu

Many graphics cards will have one or more menu on the desktop after installing the driver. These functions are not practical.will also slow down the pop -up speed, we better clear it

The

method is as above, see the content below (red part)

@ ECHO OFF

Title Clear all excess desktop right -click menu

color 1a

PAUSE

regsvr32 /u /s igfxpph.dll

reg delete HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers /f

reg add HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\new /ve /d {D969A300-E7FF-11d0-A93B-00A0C90F2719}

reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v HotKeysCmds /f

reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v IgfxTray /f

Fourth trick: C drive to NTFS format

NTFS format is the format recommended by WinXP to convert to NTFS format that can improve the hard disk storageefficiency, and access permissions can be set to protect files but NTFS format partitions in DOS/Win9x

Nothing can be recognized under, it may cause inconvenience to primary users.

The method of

is as follows, see the content below (red part)

@ ECHO OFF

color 1b

Title C drive convert to NTFS format

convert c:/fs:ntfs

Fifth trick: Add a curl for each disk

This command will add a scroll label to each disk of this machine, which is generally used on the new machineto guide beginners to dominate their hard disk space more reasonably

The

method is as follows, see the content below (red part)

@ ECHO OFF

TITLE adds a curl for each disk

color 1B

PAUSE

c:

label c:WINXP

label D: software

label E: Film and Television

label f: game

label g: Information

label H: backup

d:

MD drive program

MD drive program \ 0.DirectX

MD drive program \ 1. The motherboard chipset

MD drive program \ 2. Graphics card

MD drive program \ 3. Sound card

MD drive program \ 4. Network card

MD drive program \ 5. Camera

Sixth trick: Close the harmful port

Improve security and make you even more worries! Intersection Intersection

The sixth trick will not be sent, too long, try it up and try it!

The address is as follows:

http://clubpic2.chinaren.com/uploadfile/200612/595/BxkRUQYT.bat

Seventh trick: Weijin virus batch processing special killing

Weijin virus is mainly transmitted through the network. The virus will infect all the .exe executable files in the computer. After the transmission speed is very fast, the Virus of the Virus is operated. The following virus files are generated in the system file directory:

Program Files\svhost32.exe

Program Files\micorsoft\svhost32.exe

windows\explorer.exe

windows\logo1_exe

windows\rundll32.exe

windows\rundl132.exe

windows\intel\rundl132.exe

windows\dll.dll

Virus new variants will automatically download more than 10 types of Trojan viruses including the paradise killer and QQPass (QQPass), in an attempt to steal a variety of popular online games including paradise symbols, and the account password of QQ

The method of

is as follows, see the content below (red part)

@ECHO OFF

del c:\winnt\logo1_.exe

del c:\windows\logo1_.exe

del c:\winnt\0sy.exe

del c:\windows\0sy.exe

del c:\winnt\1sy.exe

del c:\windows\1sy.exe

del c:\winnt\2sy.exe

del c:\windows\2sy.exe

del c:\winnt\3sy.exe

del c:\windows\3sy.exe

del c:\winnt\4sy.exe

del c:\windows\4sy.exe

del c:\winnt\5sy.exe

del c:\windows\5sy.exe

del c:\winnt\6sy.exe

del c:\windows\6sy.exe

del c:\winnt\7sy.exe

del c:\windows\7sy.exe

del c:\winnt\8sy.exe

del c:\windows\8sy.exe

del c:\winnt\9sy.exe

del c:\windows\9sy.exe

del c:\winnt\rundl132.exe

del c:\windows\rundl132.exe

net share c$ /d

net share d$ /d

net share e$ /d

net share F$ /d

net share G$ /d

net share h$ /d

net share i$ /d

net share j$ /d

net share admin$ /d

net share ipc$ /d

del c:\winnt\logo1_.exe

del c:\windows\logo1_.exe

del c:\windows\vdll.dll

del c:\winnt\vdll.dll

del c:\windows\tdll.dll

del c:\winnt\tdll.dll

del c:\windows\dll.dll

del c:\winnt\dll.dll

del c:\winnt\kill.exe

del c:\windows\kill.exe

del c:\winnt\sws32.dll

del c:\windows\sws32.dll

del c:\winnt\rundl132.exe

del c:\windows\rundl132.exe

echo.

echo.

echo.

echo. *****************************

echo.

echo. Poisoning … please don’t close …

echo.

echo. *****************************

echo.

echo.

echo.

echo.

ping 127.0.0.1 -n 5

del c:\winnt\logo1_.exe

del c:\windows\logo1_.exe

del c:\windows\vdll.dll

del c:\winnt\vdll.dll

del c:\windows\dll.dll

del c:\winnt\dll.dll

del c:\windows\tdll.dll

del c:\winnt\tdll.dll

del c:\winnt\kill.exe

del c:\windows\kill.exe

del c:\winnt\sws32.dll

del c:\windows\sws32.dll

del c:\winnt\rundl132.exe

del c:\windows\rundl132.exe

echo.

echo.

echo.

echo. *****************************

echo.

echo. Poisoning … please don’t close …

echo.

echo. *****************************

echo.

echo.

echo.

echo.

ping 127.0.0.1 -n 5

del c:\winnt\logo1_.exe

del c:\windows\logo1_.exe

del c:\windows\vdll.dll

del c:\winnt\vdll.dll

del c:\windows\dll.dll

del c:\winnt\dll.dll

del c:\windows\tdll.dll

del c:\winnt\tdll.dll

del c:\winnt\kill.exe

del c:\windows\kill.exe

del c:\winnt\sws32.dll

del c:\windows\sws32.dll

del c:\windows\0sy.exe

del c:\winnt\1sy.exe

del c:\windows\1sy.exe

del c:\winnt\2sy.exe

del c:\windows\2sy.exe

del c:\winnt\3sy.exe

del c:\windows\3sy.exe

del c:\winnt\4sy.exe

del c:\windows\4sy.exe

del c:\winnt\5sy.exe

del c:\windows\5sy.exe

del c:\winnt\6sy.exe

del c:\windows\6sy.exe

del c:\winnt\7sy.exe

del c:\windows\7sy.exe

del c:\winnt\8sy.exe

del c:\windows\8sy.exe

del c:\winnt\9sy.exe

del c:\windows\9sy.exe

del c:\winnt\rundl132.exe

del c:\windows\rundl132.exe

del C:\winnt\Logo1_.exe

del C:\winnt\rundl132.exe

del C:\winnt\bootconf.exe

del C:\winnt\kill.exe

del C:\winnt\sws32.dll

del C:\winnt\dll.dll

del C:\winnt\vdll.dll

del c:\winnt\tdll.dll

del C:\winnt\system32\ShellExt\svchs0t.exe

del C:\Program Files\Internet Explorer\0SY.exe

del C:\Program Files\Internet Explorer\1SY.exe

del C:\Program Files\Internet Explorer\2sy.exe

del C:\Program Files\Internet Explorer\3sy.exe

del C:\Program Files\Internet Explorer\4sy.exe

del C:\Program Files\Internet Explorer\5sy.exe

del C:\Program Files\Internet Explorer\6SY.exe

del C:\Program Files\Internet Explorer\7sy.exe

del C:\Program Files\Internet Explorer\8sy.exe

del C:\Program Files\Internet Explorer\9sy.exe

del C:\winnt\system32\Logo1_.exe

del C:\winnt\system32\rundl132.exe

del C:\winnt\system32\bootconf.exe

del C:\winnt\system32\kill.exe

del C:\winnt\system32\sws32.dll

del C:\windows\Logo1_.exe

del C:\windows\rundl132.exe

del C:\windows\bootconf.exe

del C:\windows\kill.exe

del C:\windows\sws32.dll

del C:\windows\dll.dll

del C:\windows\vdll.dll

del c:\windows\tdll.dll

del C:\windows\system32\ShellExt\svchs0t.exe

del C:\windows\system32\Logo1_.exe

del C:\windows\system32\rundl132.exe

del C:\windows\system32\bootconf.exe

del C:\windows\system32\kill.exe

del C:\windows\system32\sws32.dll

del c:\_desktop.ini /f/s/q/a

del d:\_desktop.ini /f/s/q/a

del e:\_desktop.ini /f/s/q/a

del f:\_desktop.ini /f/s/q/a

del g:\_desktop.ini /f/s/q/a

del h:\_desktop.ini /f/s/q/a

del i:\_desktop.ini /f/s/q/a

del j:\_desktop.ini /f/s/q/a

del k:\_desktop.ini /f/s/q/a

Use it yourself:

@echo off

Echo is clearing C: \ Inetpub \ LOGS \ LOGFILES \ W3SVC1 \ log file, please wait …

del /f /s /q   “C:\inetpub\logs\LogFiles\W3SVC1\*.log”

Echo Clear System LJ is done!

source

Related Posts

Thrift and ERLNIF efficiency comparison

[NUMPY] Matrix multiplication and point multiplication spade

Sample downsample code

Raspberry Pi docker run mysql

30 minutes from zero play to deploy docker+k8s cluster

Random Posts

How to use JS to get the Label or Value value selected by H: SelectoneMenu

MyBatis-Plus Insert Times Error Order

From entry to the soil: [SEED-LAB] MD5 collision test | MD5Collgen Experiment | Linux | Ubuntu | MD5 COLLISION Attack Lab | Detailed explanation

Java How to convert files to hexadic

vue -two -way data binding