Windows 11: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Windows 11 == == Enable Long File Paths == <pre> Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem] "LongPathsEnabled"=dword:00000001 </pre> ref: [https://superuser.com/questions/1807770/enable-long-paths-on-win-11-home]") |
|||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== Subpages == | |||
{{subpages}} | |||
== Windows 11 == | == Windows 11 == | ||
== Save RDP Credentials == | |||
Windows Defender does not allow saved credentials to be used anymore. This can be worked around with: | |||
"Windows Defender Credential Guard does not allow using saved credentials" for RDP connections? | |||
Solution: | |||
cmdkey /generic:TERMSRV/<targetname> /user:<username> /pass:<password> | |||
cmdkey /list:TERMSRV/* | |||
cmdkey /delete:TERMSRV/10.10.10.10 | |||
Also: | |||
search: credential manager | |||
ref: | |||
* https://superuser.com/questions/1756354/windows-defender-credential-guard-does-not-allow-using-saved-credentials-for-r | |||
* https://learn.microsoft.com/en-us/answers/questions/1021785/windows-11-22h2-cant-use-saved-credential?page=1&orderby=helpful&comment=answer-1177710#answers | |||
* https://support.microsoft.com/en-us/windows/accessing-credential-manager-1b5c916a-6a16-889f-8581-fc16e8165ac0 | |||
== Enable Long File Paths == | == Enable Long File Paths == | ||
Enable Long File Paths: <ref>https://superuser.com/questions/1807770/enable-long-paths-on-win-11-home</ref> | |||
<pre> | <pre> | ||
Windows Registry Editor Version 5.00 | Windows Registry Editor Version 5.00 | ||
Line 10: | Line 35: | ||
</pre> | </pre> | ||
ref: [https:// | This can also be enabled via Group Policy via Computer Configuration > Administrative Templates > System > Filesystem > Enable NTFS long paths. <ref>https://www.itprotoday.com/windows-10/enable-long-file-name-support-in-windows-10</ref> | ||
== Disable grouping on the taskbar == | |||
See [[Windhawk#Disable grouping on the taskbar]] | |||
== Network Adapter Priority == | |||
powershell | |||
Get-NetIPInterface | |||
note InterfaceMetric | |||
ncpa.cpl | |||
Adapter -> Properties -> IPV4 -> Advanced | |||
[ ] Automatic Metric # uncheck | |||
Interface metric (larger number is lower priority) | |||
How To Change The Network Connection Priority In Windows 10 | |||
https://www.kapilarya.com/how-to-change-the-network-connection-priority-in-windows-10 | |||
--- | |||
Another summary <ref>https://www.geeksforgeeks.org/how-to-set-internet-priority-on-windows/</ref> | |||
<pre> | |||
* Press Win + R > type “ncpa.cpl” > Enter. | |||
* Right-click “Wi-Fi” or Ethernet > select “Properties.” | |||
* Double-click on IPv4 or IPv6 > Click “Advanced.” | |||
* Uncheck Automatic Metric > Enter 1 (or your desired number) > Click OK. | |||
</pre> | |||
Can also set with Powershell: | |||
Set-NetIPInterface -InterfaceIndex [IFIndex] -InterfaceMetric [IFMetric] | |||
or: | |||
netsh wlan show profiles | |||
netsh wlan show interfaces | |||
netsh wlan set profileorder name="[WifiProfileName]" interface="[AdapterName]" priority=[PriorityValue] | |||
== keywords == |
Latest revision as of 08:23, 24 September 2024
Subpages
Subpage Table of Contents
Windows 11
Save RDP Credentials
Windows Defender does not allow saved credentials to be used anymore. This can be worked around with:
"Windows Defender Credential Guard does not allow using saved credentials" for RDP connections?
Solution:
cmdkey /generic:TERMSRV/<targetname> /user:<username> /pass:<password>
cmdkey /list:TERMSRV/*
cmdkey /delete:TERMSRV/10.10.10.10
Also:
search: credential manager
ref:
- https://superuser.com/questions/1756354/windows-defender-credential-guard-does-not-allow-using-saved-credentials-for-r
- https://learn.microsoft.com/en-us/answers/questions/1021785/windows-11-22h2-cant-use-saved-credential?page=1&orderby=helpful&comment=answer-1177710#answers
- https://support.microsoft.com/en-us/windows/accessing-credential-manager-1b5c916a-6a16-889f-8581-fc16e8165ac0
Enable Long File Paths
Enable Long File Paths: [1]
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem] "LongPathsEnabled"=dword:00000001
This can also be enabled via Group Policy via Computer Configuration > Administrative Templates > System > Filesystem > Enable NTFS long paths. [2]
Disable grouping on the taskbar
See Windhawk#Disable grouping on the taskbar
Network Adapter Priority
powershell Get-NetIPInterface note InterfaceMetric
ncpa.cpl
Adapter -> Properties -> IPV4 -> Advanced [ ] Automatic Metric # uncheck Interface metric (larger number is lower priority)
How To Change The Network Connection Priority In Windows 10 https://www.kapilarya.com/how-to-change-the-network-connection-priority-in-windows-10
---
Another summary [3]
* Press Win + R > type “ncpa.cpl” > Enter. * Right-click “Wi-Fi” or Ethernet > select “Properties.” * Double-click on IPv4 or IPv6 > Click “Advanced.” * Uncheck Automatic Metric > Enter 1 (or your desired number) > Click OK.
Can also set with Powershell:
Set-NetIPInterface -InterfaceIndex [IFIndex] -InterfaceMetric [IFMetric]
or:
netsh wlan show profiles netsh wlan show interfaces netsh wlan set profileorder name="[WifiProfileName]" interface="[AdapterName]" priority=[PriorityValue]