CTRL+SHIFT+WIN+B- All drivers reseted from video card (If games lagging) |
CTRL+SHIFT+ESC- Details * Right click mouse favorite game * Set priority: Realtime or High * Change priority - Startup * Right click mouse: Disable (Any unnecessary application) |
Windows+R: msconfig- Boot * Boot options * Uncheck No GUI boot * Apply * Ok - Boot * Avanced options * Check Number of processors * Set higher number * Ok * Apply * Ok - Services * Select Hide all Microsoft services * Disable all * Apply * Ok |
Windows+R: sysdm.cpl- Advanced * Performace * Settings * Visual effects * Adjust for best performance * Apply * Ok - Advanced * Performace * Settings * Advanced * Virtual memory * Change * Uncheck Automatically manage paging file size for all drivers * Click C: * Custom size: Initial size: 3072, Maximum size: 6144 * Set * Ok * Apply - Advanced * Startup and recovery * Settings * Time to display list of operating systems: 10 * Ok |
Windows+R: services.msc- Function Discovery Provider Host * Double click Startup type: Automatic * Apply * Ok - Function Discovery Resource Publication * Double click Startup type: Automatic * Apply * Ok - SSDP Discovery * Double click Startup type: Automatic * Apply * Ok - SysMain * Double click Startup type: Disabled * Apply * Ok - UPnP Device Host * Double click Startup type: Automatic * Apply * Ok - Windows Search * Double click Startup type: Disabled * Apply * Ok - Windows Time * Double click Startup type: Automatic * Apply * Ok * Start or Restart |
Windows+R: regedit- Computer/HKEY_CURRENT_USER/Control Panel/Desktop * Double click MenuShowDelay * Value data: 20 * Ok - Computer/HKEY_CURRENT_USER/Control Panel/Mouse * Double click MouseHoverTime * Value data: 30 * Ok - Computer/HKEY_CURRENT_USER/SOFTWARE/Microsoft/Windows/CurrentVersion/Run * Right click mouse: Delete (Any unnecessary application) - Computer/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/DateTime/Servers * Double click 0 or 1 * Value data: time.cloudflare.com * Ok - Computer/HKEY_LOCAL_MACHINE/SOFTWARE/Policies/Microsoft * Right click mouse Microsoft * New Key: MRT * Right click mouse MRT * New DWORD: DontOfferThroughWUAU * Value data: 1 * Ok - Computer/HKEY_LOCAL_MACHINE/SOFTWARE/Policies/Microsoft/Windows * Right click mouse Windows * New Key: Psched * Right click mouse Psched * New DWORD: NonBestEffortLimit * Value data: 10 * Ok - Computer/HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Control/Session Manager/Memory Management * Double click ClearPageFileAtShutDown * Value data: 1 * Ok |
Windows+R: gpedit.msc- Computer Configuration * Windows Settings * Security Settings * Local Policies * Security Options * Double click Shutdown: Clear virtual memory pagefile * Enabled * Apply * Ok - Computer Configuration * Administrative template * Windows components * App privacy * Double click Let Windows apps run in the background * Check Enabled * Default for all apps: Force deny * Apply * Ok - Computer Configuration * Administrative template * Network * QoS Packet Scheduler * Double click Limit reservable bandwidth * Enabled / Bandwidth limit(%) 10 * Apply * Ok |
Windows+X- Power Options * Additional power settings * Preferred plans * Select favorite plan * Click Change plan settings * Change advanced power settings: Select High Performance * Apply * Ok a) Wireless Adapter Settings * Power Saving Mode * Setting: Maximum Performance * Apply * Ok b) Processor power management * Minimum processor state * Setting: 100% (Desktop), Battery: 100% * Plugged: 100% (Laptop) * Maximum processor state * Setting: 100% (Desktop), Battery: 100% * Plugged: 100% (Laptop) * Apply * Ok - Network Connections * Change adapter options * Ethernet or Wifi * Right click mouse Properties * Configure * Power management * Uncheck Allow the computer to turn off this device * Ok - Network Connections * Change adapter options * Ethernet or Wifi * Right click mouse Properties * Configure * Advanced a) Desktop * ARP Offload: Disabled * Auto Disable Gigabit: Disabled * Energy-Efficient Ethernet: Disabled * Flow Control: Disabled * Green Ethernet: Disabled * Interrupt Moderation: Disabled * IPv4 Checksum Offload: Disabled * Jumbo Frame/Packet: Disabled * Large Send Offload IPv4/IPv6: Disabled * NS Offload: Disabled * Power saving mode: Disabled * Priority & VLAN: Enabled (VOIP, online games, streaming) OR Disabled (No traffic prioritization) * Receive Side Scaling: Disabled * Ok b) Laptop * ARP Offload: Disabled * Fat channel intolerant: Disabled * NS Offload: Disabled * MIMO power save mode: No SMPS * Roaming aggressiveness: Lowest * Transmit Power: Highest * Ok |
Windows+X (SSH commands for windows)- Command Prompt (Admin) a) gpupdate /force * ipconfig /flushdns (optionally, after restart pc) b) netsh interface tcp show global * netsh interface tcp set global autotuning=normal (optionally, only if internet speed it not as your plan) c) netsh interface ipv4 show subinterfaces * ping 1.1.1.1 -f -l 1452 or 1464 or 1472 + 28 = mtu size according to your ISP * netsh interface ipv4 set subinterface "Local Area Connection or Ethernet or Wi-Fi" mtu=???? store=persistent (optionally, only if you want to set prefered MTU) d) ipconfig /flushdns * ipconfig /registerdns * ipconfig /release * ipconfig /renew * netsh winsock reset * restart pc (optionally, flush windows dns cache) e) sfc /scannow * Enter & wait verification 100% complete * restart pc |
Windows+X (SSH commands for routers)- Command Prompt (Admin) * ssh router_username@router_ip * Enter * router_password * Enter - Command Prompt (Admin) * ssh-keygen -R router_ip (only if it shows this error WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED) a) nvram show | grep ping OR nvram show | grep ntp OR nvram show | grep territory OR nvram show | grep country OR nvram show | grep power OR nvram show | grep ddns OR nvram show | grep dns OR nvram show | grep qos OR nvram show | grep wifi * nvram set OR nvram unset command_line * nvram commit * service iptables-persistent save * reboot b) service restart_dns AND service restart_dnsmasq AND service restart_ddns AND service restart_dhcp AND service restart_dhcpc AND service restart_dhcpd AND service restart_hostapd AND service restart_httpd AND service restart_nat AND service restart_network AND service restart_networking AND service restart_routing AND service restart_wifi AND service restart_wireless AND service restart_firewall * nvram commit * reboot (clear all cache) c) ip route flush table main (remove all network routes configured, after this restart router from button) d) ip route show OR netstat -tuln OR route -n (testing commands) |
Windows+X (SSH commands for routers: minimum firewall, raw internet and low latency in games)- Command Prompt (Admin) * ssh router_username@router_ip * Enter * router_password * Enter a) iptables -F * iptables -X * iptables -t nat -F * iptables -t nat -X * iptables -t mangle -F * iptables -t mangle -X * nvram commit * service iptables-persistent save * reboot (delete all rules) b) iptables -P INPUT DROP * iptables -P FORWARD ACCEPT * iptables -P OUTPUT ACCEPT * nvram commit * service iptables-persistent save * reboot (basic policies) c) iptables -A INPUT -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT * nvram commit * service iptables-persistent save * reboot (allows already established connections) d) iptables -A INPUT -i lo -j ACCEPT * iptables -A OUTPUT -o lo -j ACCEPT * nvram commit * service iptables-persistent save * reboot (set these only if your router it in bridge mode) e) iptables -A INPUT -p tcp --dport 22 -j ACCEPT * iptables -A INPUT -p tcp --dport 80 -j ACCEPT * iptables -A INPUT -p tcp --dport 443 -j ACCEPT * nvram commit * service iptables-persistent save * reboot (allows traffic for SSH, HTTP and HTTPS) f) iptables -A INPUT -p udp -m conntrack --ctstate NEW,ESTABLISHED,RELATED -j ACCEPT * iptables -A OUTPUT -p udp -m conntrack --ctstate NEW,ESTABLISHED,RELATED -j ACCEPT * nvram commit * service iptables-persistent save * reboot (optionally, allows UDP for online games and VoIP) g) iptables -A INPUT -p icmp -j ACCEPT * nvram commit * service iptables-persistent save (optionally, allow ICMP pings from game servers) |
Windows+R- Type: mrt * Ok * Yes * Next * Quick or Full scan (If you think you have viruses) - Type: temp * Ok * Ctrl+A * On keyboard press Delete button * Continue - Type: %temp% * Ok * Ctrl+A * On keyboard press Delete button * Continue - Type: prefetch * Ok * Ctrl+A * On keyboard press Delete button |
Windows+S- Mouse settings * Additional mouse options * Pointer Options * Uncheck Enhance pointer precision * Apply * Ok - Personalization * Color settings * Transparency effects: Off - Ease of Access brightness setting * Simplify and personalize Windows * Off all - Privacy settings * Change privacy options * Off all - Sync your settings * Windows backup * Off All - System * Storage * Storage: On * Configure storage sense or run it now * Run Storage Sense: Every week * Delete files in my recicle bin: 1 day * Delete files in my downloads: 14 days - Defragment and Optimize Drives * Local Disk (C:) * Optimize - This PC * Right click mouse Local disk (C:) * Properties * General * Disk cleanup * Files to delete * Ok * Delete Files |
On desktop- Right click mouse - New - Shortcut - shutdown *s *f - Next - Name: Shutdown - Finish (Right click mouse shortcut - Properties - Shortcut - Change icon - Apply - Ok) - or Right click mouse - New - Shortcut - shutdown *s *t 5 - Next - Name: Shutdown - Finish (Right click mouse shortcut - Properties - Shortcut - Change icon - Apply - Ok) |
On desktop- Right click mouse - New - Shortcut - shutdown *r *f - Next - Name: Restart - Finish (Right click mouse shortcut - Properties - Shortcut - Change icon - Apply - Ok) |