wiki:Windows Eleven Tweeks

Version 43 (modified by Paul Kulda, 11 months ago) ( diff )

--

Windows Eleven Tweeks

Install from Scratch without Microsoft Login Account

Email : no@… / <any password>

Disable Microsoft Account Logins

How do I get Windows to stop asking for Microsoft account?
2 Answers

    Run the Group Policy Editor ( gpedit.msc )
    Navigate to : Computer Configuration > Windows Settings > Security Settings > Local Polices > Security Options.
    Double-click "Accounts: Block Microsoft accounts"
    Select "Users can't add or log on with Microsoft accounts"
    Click OK.
    Reboot.

Fix block boxes over icons =

  • goto %localappdata%
  • del iconcache.db
  • restart

Disable Hiberfile.sys

powercfg /hibernate off

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

Enable Administrator Account (CMD Prompt)

net user administrator /active:yes

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 Movinging / Resizing A Windows that is Cut off at the Top

  • Press ALT+SPACE
    • then Move (M) or Size (S)
    • Use arrow keys to moze or resize

Fix Sync Arrows Not Displaying


Had same issue, and was solved by running regedit, erasing some entries in HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\ShellIconOverlayIdentifiers and restarting. Deleting OneDrive1... enties was not permited, but I had some from Google Drive. You can also make a bakup by double-clicking in the registry directory and doing an "Export" to a file.

On Windows 10, most of the entries are used by OneDrive and you won't have permission to remove them. In order to do so, right click on the entry (Example: "OneDrive1", then click "Advanced", then click the link labled "Change" at the very top next to "Owner". This lets you change the owner. Type in your username and hit OK. Now give yourself "Full Control" and then apply it. Now you should be able to delete or rename it.

Fix Install Windows 11 WITHOUT Network


    On the “Oops, you’ve lost internet connection” or “Let’s connect you to a network” page, use the “Shift + F10” keyboard shortcut.

    In Command Prompt, type the OOBE\BYPASSNRO command to bypass network requirements on Windows 11 and press Enter.

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.