
Some Tricks for easy leaving
How Extract wpress archive
npx wpress-extract migration.wpress
Link
How to fix Media or Local Disk
Command Prompt as Administrators
How to fix Win11
batch code
* run from command prompt as Adim
@echo https://www.thewindowsclub.com/windows-10-activation-error-0xc0000022
@echo 0xC0020036
@echo off
date /t & time /t
echo Dism /Online /Cleanup-Image /StartComponentCleanup
Dism /Online /Cleanup-Image /StartComponentCleanup
echo ...
date /t & time /t
echo Dism /Online /Cleanup-Image /RestoreHealth
Dism /Online /Cleanup-Image /RestoreHealth
echo ...
date /t & time /t
echo SFC /scannow
SFC /scannow
date /t & time /t
pause
SpeedUp your internet
https://www.youtube.com/watch?v=RK2PHpKI9M4&list=WL&index=1193&t=259s
ping thetechieguy.com -f -l 1492
To see the MTU size on your computer:
netsh interface ipv4 show subinterfaces
To set the MTU size:
netsh int ipv4 set subinterface “Ethernet” mtu=1500 store=persistent
netsh int ipv4 set subinterface “MiNet” mtu=1500 store=persistent
Reset Thumbnails
@echo off
:: Created by: Shawn Brink
:: Created on: October 17, 2021
:: Tutorial: https://www.elevenforum.com/t/clear-and-reset-thumbnail-cache-in-windows-11.2051/
echo.
echo The explorer process must be temporarily killed before resetting the thumbnail cache.
echo.
echo Please SAVE ALL OPEN WORK before continuing.
echo.
pause
echo.
taskkill /f /im explorer.exe
timeout 2 /nobreak>nul
echo.
DEL /F /S /Q /A %LocalAppData%\Microsoft\Windows\Explorer\thumbcache_*.db
timeout 2 /nobreak>nul
start explorer.exe
echo.
pause