#Disable input method (can be a good way to avoid input method key conflicts during the game) # #If you are using other input methods, you need to use Regshot(https://sourceforge.net/projects/regshot/files/regshot/1.9.0/) to compare the values before and after the input method is disabled, and then find the corresponding values in the batch process. and fix it. #warning:This script is available for countries with non-English input methods @echo off reg delete HKU\S-1-5-21-1683420909-53141089-172011864-1000\Software\Microsoft\CTF\SortOrder\AssemblyItem\0x00000804\{34745C63-B2F0-4784-8B67-5E12C8701A31}\00000001 /f reg delete HKU\S-1-5-21-1683420909-53141089-172011864-1000\Software\Microsoft\CTF\TIP\{81D4E9C9-1D3B-41BC-9E6C-4B40BF79E35E} /f #Enable input method# #warning:This script is available for countries with non-English input methods @echo off reg add HKU\S-1-5-21-1683420909-53141089-172011864-1000\Software\Microsoft\CTF\SortOrder\AssemblyItem\0x00000804\{34745C63-B2F0-4784-8B67-5E12C8701A31}\00000001 /f reg add HKU\S-1-5-21-1683420909-53141089-172011864-1000\Software\Microsoft\CTF\TIP\{81D4E9C9-1D3B-41BC-9E6C-4B40BF79E35E} /f reg add HKU\S-1-5-21-1683420909-53141089-172011864-1000\Software\Microsoft\CTF\TIP\{81D4E9C9-1D3B-41BC-9E6C-4B40BF79E35E}\LanguageProfile /f reg add HKU\S-1-5-21-1683420909-53141089-172011864-1000\Software\Microsoft\CTF\TIP\{81D4E9C9-1D3B-41BC-9E6C-4B40BF79E35E}\LanguageProfile\0x00000804 /f reg add HKU\S-1-5-21-1683420909-53141089-172011864-1000\Software\Microsoft\CTF\TIP\{81D4E9C9-1D3B-41BC-9E6C-4B40BF79E35E}\LanguageProfile\0x00000804\{F3BA9077-6C7E-11D4-97FA-0080C882687E} /f reg add "HKU\S-1-5-21-1683420909-53141089-172011864-1000\Software\Microsoft\CTF\SortOrder\AssemblyItem\0x00000804\{34745C63-B2F0-4784-8B67-5E12C8701A31}\00000001" /v "CLSID" /t REG_SZ /d "{81D4E9C9-1D3B-41BC-9E6C-4B40BF79E35E}" /f reg add "HKU\S-1-5-21-1683420909-53141089-172011864-1000\Software\Microsoft\CTF\SortOrder\AssemblyItem\0x00000804\{34745C63-B2F0-4784-8B67-5E12C8701A31}\00000001" /v "Profile" /t REG_SZ /d "{F3BA9077-6C7E-11D4-97FA-0080C882687E}" /f reg add "HKU\S-1-5-21-1683420909-53141089-172011864-1000\Software\Microsoft\CTF\SortOrder\AssemblyItem\0x00000804\{34745C63-B2F0-4784-8B67-5E12C8701A31}\00000001" /v "KeyboardLayout" /t REG_DWORD /d "0" /f reg add "HKU\S-1-5-21-1683420909-53141089-172011864-1000\Software\Microsoft\CTF\TIP\{81D4E9C9-1D3B-41BC-9E6C-4B40BF79E35E}\LanguageProfile\0x00000804\{F3BA9077-6C7E-11D4-97FA-0080C882687E}" /v "Enable" /t REG_DWORD /d "1" /f #Common shortcuts and commands# win+R #Run win+E #Resource Manager firewall.cpl #Fireawall wf.msc #Advanced Firewall msinfo32 #System Information devmgmt.msc #Device Manager regedit or regedt32 #registry services.msc #Service Manager compmgmt.msc #Computer Management gpedit.msc #Group Policy Editor gpupdate /force #force policy update without reboot shutdown -s -t 30 #shutdown after 30 seconds shutdown -a #Cancel shutdown control #control panel mspaint #Draw a picture tasklist #show background tasks taskkill /IM Chrome.exe /F #teminate background tasks ctrl+shift+ESC #Task Manager net start #Show background services net user administrator "" #clear administrator password�� net user administrator /active:no #Disable administrator account taskkill /IM explorer.exe /F #Hide desktop (don't want to be disturbed by the fancy desktop when playing games) inetcpl.cpl #internet property,proxy setting and history clear etc. rundll32.exe Shell32.dll,Control_RunDLL input.dll,,{C07337D3-DB2C-4D0B-9A93-B722A6C106E2} #quick open keyboard setting,save to shortcut #Clear All Log# @echo off for /F "tokens=*" %%G in ('wevtutil.exe el') DO (call :do_clear "%%G") echo. echo All Event Logs have been cleared! goto theEnd :do_clear echo clearing %1 wevtutil.exe cl %1 goto :eof :theEnd Exit #Network link monitoring (after opening a process, refresh this script to see its link situation, links will be classified according to the application)# @echo off :loop cls netstat -bno pause goto loop loop #Get NIC mac address and interface name# getmac /v #Add right-click administrator command line# @echo off Reg.exe add "HKCR\Directory\shell\runas" /ve /t REG_SZ /d "Administrator Command Line" /f Reg.exe add "HKCR\Directory\Background\shell\runas" /ve /t REG_SZ /d "Administrator Command Line" /f Reg.exe add "HKCR\LibraryFolder\background\shell\runas" /ve /t REG_SZ /d "Administrator Command Line" /f #Enable Trim Command for SSD fsutil behavior set disabledeletenotify 0