Difference between revisions of "Talk:Windows 10 Tips & Tricks"

From Free Knowledge Base- The DUCK Project: information for everyone
Jump to: navigation, search
(Created page with "== Rename a User Folder == http://superuser.com/questions/495290/how-to-rename-user-folder-in-windows-8")
 
(More on using netsh to fix limited connectivity: new section)
Line 2: Line 2:
  
 
http://superuser.com/questions/495290/how-to-rename-user-folder-in-windows-8
 
http://superuser.com/questions/495290/how-to-rename-user-folder-in-windows-8
 +
 +
== More on using netsh to fix limited connectivity ==
 +
 +
The following is a list of the Netsh commands with descriptions that you can use to reset your network adapter in Windows 10:
 +
netsh advfirewall reset
 +
 +
Restores the Windows Firewall with Advanced Security policy to the default policy. The current active policy can be optionally exported to a specified file. In a Group Policy object, this command returns all settings to not configured and deletes all connection security and firewall rules.
 +
netsh int ip reset
 +
 +
Removes all user configured IPv4 (Internet Protocol version 4) settings. Restarting computer is required before the default settings will take effect.
 +
netsh int ipv6 reset
 +
 +
Removes all user configured IPv6 (Internet Protocol version 6) settings. Restarting computer is required before the default settings will take effect.
 +
netsh winsock reset
 +
 +
Resets Winsock Catalog to a clean state. All Winsock Layered Service Providers which were previously installed must be reinstalled. This command does not affect Winsock Name Space Provider entries.
 +
 +
=== more ===
 +
 +
Run this command in an elevated Command Prompt to reset the Windows TCP/IP stack to its original state, a step that often fixes lots of network related issues:
 +
netsh int ip reset C:\logreset.txt
 +
 +
Here are some other netsh commands you can try if resetting the network adapter didn't fix the network error.
 +
netsh int tcp set heuristics disabled
 +
netsh int tcp set global autotuninglevel=disabled
 +
netsh int tcp set global rss=enabled
 +
 +
Then, run this command to verify that the settings were disabled:
 +
netsh int tcp show global
 +
 +
source: https://www.lifewire.com/resolve-connectivity-errors-in-windows-818232
 +
 +
=== more ===
 +
 +
Open an admin-level command prompt in Desktop mode, type the following commands, and hit Enter after each command:
 +
netsh int tcp set heuristics disabled
 +
netsh int tcp set global autotuninglevel=disabled
 +
netsh int tcp set global rss=enabled
 +
 +
Then type the following and hit Enter, to verify that practically all the settings are disabled.
 +
netsh int tcp show global
 +
 +
Finally, reboot your machine and see if this helps.
 +
 +
You may also try this:
 +
 +
Open Command Prompt as Administrator and run the following commands
 +
sc config licensemanager type=own
 +
 +
Restart the computer and see if it has helped.

Revision as of 23:07, 15 November 2017

Rename a User Folder

http://superuser.com/questions/495290/how-to-rename-user-folder-in-windows-8

More on using netsh to fix limited connectivity

The following is a list of the Netsh commands with descriptions that you can use to reset your network adapter in Windows 10:

netsh advfirewall reset

Restores the Windows Firewall with Advanced Security policy to the default policy. The current active policy can be optionally exported to a specified file. In a Group Policy object, this command returns all settings to not configured and deletes all connection security and firewall rules.

netsh int ip reset

Removes all user configured IPv4 (Internet Protocol version 4) settings. Restarting computer is required before the default settings will take effect.

netsh int ipv6 reset

Removes all user configured IPv6 (Internet Protocol version 6) settings. Restarting computer is required before the default settings will take effect.

netsh winsock reset

Resets Winsock Catalog to a clean state. All Winsock Layered Service Providers which were previously installed must be reinstalled. This command does not affect Winsock Name Space Provider entries.

more

Run this command in an elevated Command Prompt to reset the Windows TCP/IP stack to its original state, a step that often fixes lots of network related issues:

netsh int ip reset C:\logreset.txt

Here are some other netsh commands you can try if resetting the network adapter didn't fix the network error.

netsh int tcp set heuristics disabled
netsh int tcp set global autotuninglevel=disabled
netsh int tcp set global rss=enabled

Then, run this command to verify that the settings were disabled:

netsh int tcp show global

source: https://www.lifewire.com/resolve-connectivity-errors-in-windows-818232

more

Open an admin-level command prompt in Desktop mode, type the following commands, and hit Enter after each command:

netsh int tcp set heuristics disabled 
netsh int tcp set global autotuninglevel=disabled 
netsh int tcp set global rss=enabled

Then type the following and hit Enter, to verify that practically all the settings are disabled.

netsh int tcp show global

Finally, reboot your machine and see if this helps.

You may also try this:

Open Command Prompt as Administrator and run the following commands

sc config licensemanager type=own

Restart the computer and see if it has helped.