Difference between revisions of "Talk:Windows 10 Tips & Tricks"
(→More on using netsh to fix limited connectivity: new section) |
(→How do I disable Windows 10 login prompt to set up a PIN?: new section) |
||
Line 52: | Line 52: | ||
Restart the computer and see if it has helped. | Restart the computer and see if it has helped. | ||
+ | |||
+ | == How do I disable Windows 10 login prompt to set up a PIN? == | ||
+ | |||
+ | went to services.msc (as administrator), opened the properties for credential manager, went to the tab that says log on,then clicked on the button that says "this account". I then searched for my account, restarted my computer and after that i no longer got the pin question again. | ||
+ | |||
+ | https://answers.microsoft.com/en-us/windows/forum/windows_10-security/permanently-disable-pin-option-on-windows-10-home/112c0c49-1944-462c-8095-12e31da2e232 |
Revision as of 22:43, 4 February 2019
Contents
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.
How do I disable Windows 10 login prompt to set up a PIN?
went to services.msc (as administrator), opened the properties for credential manager, went to the tab that says log on,then clicked on the button that says "this account". I then searched for my account, restarted my computer and after that i no longer got the pin question again.