Windows 11: Difference between revisions

From Omnia
Jump to navigation Jump to search
 
Line 73: Line 73:
  netsh wlan show interfaces
  netsh wlan show interfaces
  netsh wlan set profileorder name="[WifiProfileName]" interface="[AdapterName]" priority=[PriorityValue]
  netsh wlan set profileorder name="[WifiProfileName]" interface="[AdapterName]" priority=[PriorityValue]
== Media Creation ==
Create Windows 11 Installation Media
https://www.microsoft.com/en-us/software-download/windows11


== keywords ==
== keywords ==

Latest revision as of 02:47, 13 February 2026

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:

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]

Media Creation

Create Windows 11 Installation Media
https://www.microsoft.com/en-us/software-download/windows11

keywords