Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
windows [2010/10/08 09:21]
greebo
windows [2018/12/20 11:56] (current)
zagi
Line 3: Line 3:
 http://www.blackviper.com/Windows_7/servicecfg.htm http://www.blackviper.com/Windows_7/servicecfg.htm
  
-Windows 7 TCP/IP tweaks - http://www.speedguide.net/read_articles.php?id=2574+  * Windows 7 TCP/IP tweaks - http://www.speedguide.net/read_articles.php?id=2574 
 + 
 +== Enable icmp echo-request in Windows IPv4 and IPv6 == 
 + 
 +  netsh advfirewall firewall add rule name="icmpv6 echo-request" dir=in action=allow protocol=icmpv6:128,any 
 +  netsh advfirewall firewall add rule name="icmpv4 echo-request" dir=in action=allow protocol=icmpv4:8,any 
 + 
 +== udp traceroute == 
 +<del>netsh advfirewall firewall add rule name="traceroute-udp" dir=in action=allow protocol=udp localport=33434-33523 remoteport=32769-65535 
 +</del> 
 + 
 +UDP traceroute is always blocked by Windows firewall! 
 + 
 +== Other Windows network optimizing tweaks to make Internet / IP "faster" ==
  
   netsh int tcp set heuristics disabled   netsh int tcp set heuristics disabled
-  netsh int tcp set global autotuninglevel=experimental +  netsh int tcp set global autotuninglevel=normal 
-  netsh int tcp set global congestionprovider=ctcp +  netsh int tcp set supplemental  template=internet congestionprovider=cubic 
-  netsh int tcp set global ecncapability=enabled+  netsh int tcp set global ecncapability=disable
   netsh int tcp set global rss=enabled   netsh int tcp set global rss=enabled
   netsh int tcp set global chimney=enabled   netsh int tcp set global chimney=enabled
Line 14: Line 27:
   netsh int tcp set global netdma=enabled   netsh int tcp set global netdma=enabled
   netsh int tcp set global timestamps=enabled   netsh int tcp set global timestamps=enabled
 +
 +
 +[[https://msandbu.org/windows-10-and-server-2016-network-enhancements/]]
 +=== Windows IPv6 network tweaks ===
 +
 +
 +
 +
 +Windows by default generate random interface IDs for non-temporary autoconfigured IPv6 addresses.
 +To change this type:
 +  
 +  netsh interface ipv6 set privacy state=disabled store=active
 +  netsh interface ipv6 set privacy state=disabled store=persistent
 +  netsh interface ipv6 set global randomizeidentifiers=disabled store=active
 +  netsh interface ipv6 set global randomizeidentifiers=disabled store=persistent
 +  
 +Disable 6to4 and Teredo, by entering the following commands in an Administrator shell:
 +
 +  netsh interface teredo set state disabled
 +  netsh interface ipv6 6to4 set state state=disabled undoonstop=disabled
 +  netsh interface ipv6 isatap set state state=disabled
 +  
 +and/or  disable IP helper service:
 +
 +  net stop "IP Helper"
 +
 +or use http://support.microsoft.com/kb/929852#fixit4me
 +
 +== Tweak network awareness ==
 +
 +http://blog.superuser.com/2011/05/16/windows-7-network-awareness/
  
 == Windows XP Professional (Slovenia Keyboard Layout) == == Windows XP Professional (Slovenia Keyboard Layout) ==
Line 47: Line 91:
  
 http://home.comcast.net/~SupportCD/OptimizeXP.html http://home.comcast.net/~SupportCD/OptimizeXP.html
 +
 +== Enable PAE in x86 32-bit Windows to Use Large 4GB or More RAM Memory ==
 +
 +http://forums.techarena.in/tips-tweaks/979404.htm
  
 == Crack Windows passwords == == Crack Windows passwords ==
Line 70: Line 118:
 == How to disable UtilMan == == How to disable UtilMan ==
  
 +
 +Option A) Disable access to UtilMan: "cacls %windir%\system32\utilman.exe /C /D Everyone"\\
 +REG ADD "HKEY_CURRENT_USER\Control Panel\Accessibility\StickyKeys" /v Flags /t REG_SZ /d 0 /f\\
 \\ \\
 http://www.nicholasoverstreet.com/2009/08/vista-and-7-easily-disable-ease-of-access/\\ http://www.nicholasoverstreet.com/2009/08/vista-and-7-easily-disable-ease-of-access/\\
  
 http://www.sevenforums.com/tutorials/888-quick-launch-enable-disable.html http://www.sevenforums.com/tutorials/888-quick-launch-enable-disable.html
 +
 +== How to disable hibernation hiberfil.sys == 
 +
 +<code>
 +powercfg.exe -h off
 +</code>
 +
 +== How to disable Windows services from command line CLI ==
 +
 +<code cmd>
 +
 +stopservices.cmd
 +@echo off
 +net stop "Adaptive Brightness"
 +net stop "Application Experience"
 +net stop "BitLocker Drive Encryption Service"
 +net stop "Bluetooth Support Service"
 +net stop "Computer browser"
 +net stop "Desktop Window Manager Session Manager"
 +net stop "Diagnostic Policy service"
 +net stop "Diagnostic System Host"
 +net stop "Diagnostic Service Host"
 +net stop "Disk Defragmenter"
 +net stop "Distributed Link Tracking Client"
 +net stop "Encrypting File System (EFS)"
 +net stop "Function Discovery Provider Host"
 +net stop "Function Discovery Resource Publication"
 +net stop "HomeGroup Listener"
 +net stop "HomeGroup Provider"
 +net stop "Human Interface Device Access"
 +net stop "Internet Connection Sharing (ICS)"
 +net stop "IP Helper"
 +net stop "Offline Files"
 +net stop "Portable Device Enumerator Service"
 +net stop "Remote Desktop Configuration"
 +net stop "Remote Desktop Services"
 +net stop "Remote Desktop Services UserMode Port Redirector"
 +net stop "Remote Registry"
 +net stop "Routing and Remote Access"
 +net stop "Server"
 +net stop "Workstation"
 +net stop "Windows Image Acquisition (WIA)"
 +net stop "Shell Hardware Detection"
 +net stop "Tablet PC Input service"
 +net stop "Themes"
 +net stop "Windows Defender"
 +net stop "Windows Media Player Network Sharing service"
 +net stop "WWAN AutoConfig"
 +net stop "Windows Time"
 +</code>
 +
 +More on Windows services: [[http://www.blackviper.com/windows-services/]]
windows.1286522470.txt.gz · Last modified: 2010/10/08 09:21 by greebo
CC Attribution-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0 ipv6 ready