[Windows]+[R]type
regedithit enter or click ok
Computer\HKEY_LOCAL_MACHINE\SYSTEM\Setup\MoSetup
AllowUpgradesWithUnsupportedTPMOrCPU
res
echo | set /p="text" | clipsave
reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /verestart
winget uninstall Microsoft.OneDrive
Windows Registry Editor Version 5.00 ; Created by: Shawn Brink ; Created on: March 7, 2024 ; Tutorial: https://www.elevenforum.com/t/completely-disable-and-remove-copilot-in-windows-11.23264/ [HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsCopilot] "TurnOffWindowsCopilot"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot] "TurnOffWindowsCopilot"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge] "HubsSidebarEnabled"=dword:00000000 [HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer] "DisableSearchBoxSuggestions"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Explorer] "DisableSearchBoxSuggestions"=dword:00000001save as Disable_and_remove_Copilot_for_all_users.reg
DISM /Online /Disable-Feature /FeatureName:Recall
reg add "HKLM\Software\Policies\Microsoft\Dsh" /v "AllowNewsAndInterests" /t REG_DWORD /d "0" /f
netsh interface ip set dns "Local Area Connection" dhcp netsh interface ip set address "Local Area Connection" dhcp
netsh interface ip set dns "Local Area Connection" static 192.168.0.200
netsh interface ipv4 set address "wlan" static 192.168.3.108 255.255.255.0 192.168.3.1
@ECHO off cls :start ECHO. ECHO 1. Change Connection1 Static IP ECHO 4. Obtain an IP address automatically ECHO 5. Exit set choice= set /p choice=Type the number to print text. if not '%choice%'=='' set choice=%choice:~0,1% if '%choice%'=='1' goto con1 if '%choice%'=='4' goto autosearch if '%choice%'=='5' goto end ECHO "%choice%" is not valid, try again ECHO. goto start :con1 ECHO Connecting Connection 1 netsh interface ip set address "wlan" static 192.168.3.108 255.255.255.0 192.168.3.1 1 goto end :autosearch ECHO obtaining auto IP ipconfig /renew "wlan" goto end :end