wiki:Windows Eleven Tweeks

Version 37 (modified by Paul Kulda, 14 months ago) ( diff )

--

Windows Eleven Tweeks

Install from Scratch without Microsoft Login Account

Email : no@… / <any password>

To get a normal right click run from cmd prompt

reg add HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32 /ve /d "" /f

  • restart required

NumLock Enable

reg add "HKEY_USERS\.DEFAULT\Control Panel\Keyboard" /v InitialKeyboardIndicators /d "2" /f

Explorer Issues

Control Panel --> File Explorer Options --> Launch Folder windows in a seperate process

Normal Start Bar

Personalization --> Taskbar

Allow Command Prompt to Access Network Drive

reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLinkedConnections /t REG_DWORD /d "1" /f

Prioritise IPv4

reg add HKLM\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters /v DisabledComponents /t REG_DWORD /d "0x20" /f

reg add HKLM\Software\Policies\Microsoft\Windows\NetworkConnectivityStatusIndicator /v DisablePassivePolling /t REG_DWORD /d "1" /f

Allow LT2P No IPSEC

reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\Parameters /v ProhibitIpSec /t REG_DWORD /d "1" /f

How to disable drag top of screen Snap layouts on Windows 11

  • --> Settings --> System -> Multitasking
  • Show Snap Layouts when i drag a windows to the top of my screen

turn off Credential Guard

You can turn it off with registry changes, a GPO, Intune, or whatever you're using to manage your systems (if anything).

https://learn.microsoft.com/en-us/answers/questions/1021785/windows-11-22h2-can39t-use-saved-credential.html

Easiest way is via the registry:

Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard.

Add a new DWORD value named EnableVirtualizationBasedSecurity and set its value to 0.
Add another new DWORD value named RequirePlatformSecurityFeatures and set that to 0.

reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard /v EnableVirtualizationBasedSecurity /t REG_DWORD /d "0" /f

reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard /v RequirePlatformSecurityFeatures /t REG_DWORD /d "0" /f

Now go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa.

Add a new DWORD value named LsaCfgFlags and set it to 0.

reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa /v LsaCfgFlags /t REG_DWORD /d "0" /f

Restart your computer.

Win Set View (Sort out Group by Issues)

https://lesferch.github.io/WinSetView/

Auto Offline Files ReConnect =

reg add HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\NetCache /v SilentForcedAutoReconnect /t REG_DWORD /d "1" /f

Maybe :

GPEDIT.MSC

  • Computer Configuration\Administrative *Templates\System\Logon\Always wait for the network at computer startup and logon
    • Set to Enabled.

Make Windows 11 Start Menu --> Windows 10 Start Menu

reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v Start_ShowClassicMode /t REG_DWORD /d "1" /f

if the above does not work (usually does not) then use Start 11

Fix Windows Update

net stop wuauserv

net stop cryptsvc

Now, open File Explorer, navigate to C:\ Windows and locate the SoftwareDistribution folder.

Delete the folder.

Open Command Prompt again in administrator mode.

Type the below-mentioned commands and press enter. It will start the Windows Update Service.

net start cryptsvc

OR

net stop bits

net stop wuauserv

net stop appidsvc

net stop cryptsvc

Del "%ALLUSERSPROFILE%\Application Data\Microsoft\Network\Downloader\*.*"

rmdir %systemroot%\SoftwareDistribution /S /Q

rmdir %systemroot%\system32\catroot2 /S /Q

regsvr32.exe /s atl.dll

regsvr32.exe /s urlmon.dll

regsvr32.exe /s mshtml.dll

netsh winsock reset

netsh winsock reset proxy

net start bits

net start wuauserv

net start appidsvc

net start cryptsvc

Note: See TracWiki for help on using the wiki.