Talk:Windows 10 Tips & Tricks
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.
Windows 10
- Windows 10 Tips & Tricks
- Windows 10 Windows Login Restore and Password Recovery
- Windows 10 Troubleshooting
We can't sign in to your account
sus processes
The fake background was likely an active full-screen overlay (often a malicious HTML Application .hta file, rogue script, or persistent browser window set as desktop background via registry or policy) that captured input and suppressed the taskbar.
SupremoService.exe, Supremo.exe, and SupremoHelper.exe are associated with Supremo remote desktop software, which is legitimate but frequently exploited in tech support scams for unauthorized access.
TeamViewer_Service.exe belongs to TeamViewer, a valid remote control tool often installed by scammers during fake support sessions.
GDCAgent.exe is a pre-installed Lenovo component that can display unwanted ads and has known vulnerabilities; removal is recommended by Lenovo.
command to look at running processes from CLI:
tasklist
command to identify key for each installed software (needed for CLI removal)
wmic product get name,identifyingnumber
Command generates a list, you can pipe it into a text file like this: wmic product get name,identifyingnumber > ids.txt