Jump to content

Useful Windows Commands


FunkyBuddha

Recommended Posts

Clear Cached Credentials:

Quote

rundll32.exe keymgr.dll,KRShowKeyMgr

Flush DNS to reload Hosts file:

Quote

ipconfig /flushdns

Move Chrome Cache to Ram drive (R:):

Quote

😄
cd "%localappdata%\Google\Chrome\User Data\Default"
rem back-up/rename current cache folder
rename Cache Cachex
rem go to ram drive
R:
cd \
mkdir chrome_cache
mklink /D %localappdata%\Google\Chrome\User Data\Default\Cache r:\chrome_cache

Reset Icons:

Quote

@echo off
taskkill /F /IM explorer.exe
cd /d %userprofile%\AppData\Local
attrib -h IconCache.db
del IconCache.db
start explorer.exe

Maximized Windows using batch commands:

Quote

if not "%1" == "max" start /MAX cmd /c %0 max & exit/b

 

  • Like 1
  • Thanks 1
Link to comment

Enable God Mode in Windows 10/11:

Quote
  • Create new folder on Desktop
  • Name it "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}"
  • Double Click the renamed folder

This should open a folder with over 200 options and settings.

 

  • Like 2
Link to comment

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...