bugfixing
This commit is contained in:
parent
262ffd9462
commit
4c977db02d
@ -1,25 +0,0 @@
|
||||
To disable the activation notification message in Windows, you can try the following steps:
|
||||
|
||||
Press the Windows key + R to open the Run dialog and type:
|
||||
|
||||
```dos
|
||||
slmgr.vbs /upk
|
||||
|
||||
```
|
||||
and press Enter. This command will uninstall the product key from the system, which will prevent the activation notification message from appearing.
|
||||
|
||||
Keep in mind that uninstalling the product key may also disable certain features of the operating system, depending on the version you are using. This method is not supported by Microsoft and may not provide the full functionality of the operating system.
|
||||
|
||||
If you are having difficulty activating your copy of the operating system, it is recommended to contact Microsoft support for assistance.
|
||||
|
||||
Alternatively, you may be able to disable the activation notification message by using a registry editor to modify the registry settings. However, modifying the registry can be risky and may cause problems with the operating system if not done carefully. It is recommended to create a backup of the registry before making any changes.
|
||||
|
||||
To disable the activation notification message using the registry, follow these steps:
|
||||
|
||||
- Press the Windows key + R to open the Run dialog.
|
||||
- Type regedit and press Enter to open the Registry Editor.
|
||||
- Navigate to the following key: "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update"
|
||||
- Double-click on the AutoUpdate value on the right side of the window.
|
||||
- Change the value to "0" and click OK.
|
||||
|
||||
This should disable the activation notification message. However, again, it is not recommended to disable the activation feature, as it is an important part of the licensing agreement for the use of the operating system. Disabling the activation feature may result in the operating system becoming unstable or unreliable, and may also make it more vulnerable to security
|
@ -5,15 +5,18 @@ set EDGEUPDATE="C:\Program Files (x86)\Microsoft\EdgeUpdate"
|
||||
|
||||
echo ####### %0 #######
|
||||
|
||||
rem get path for edge setup ...
|
||||
FOR /F "skip=2 tokens=2* " %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\{9459C573-B17A-45AE-9F64-1857B5D58CEE}" /v StubPath') do set EDGESETUP=%%b
|
||||
rem is it installed?
|
||||
reg query "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\{9459C573-B17A-45AE-9F64-1857B5D58CEE}" /v StubPath 1>nul 2>&1
|
||||
|
||||
if NOT %ERRORLEVEL% NEQ 0 (
|
||||
if %ERRORLEVEL% NEQ 0 (
|
||||
echo EDGE browser is NOT installed!
|
||||
echo ####### %0 #######
|
||||
exit /b
|
||||
)
|
||||
|
||||
rem get path for edge setup ...
|
||||
FOR /F "skip=2 tokens=2* " %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\{9459C573-B17A-45AE-9F64-1857B5D58CEE}" /v StubPath') do set EDGESETUP=%%b
|
||||
|
||||
rem delete everthing before the word "Application" ...
|
||||
call set EDGESETUP=%%EDGESETUP:*Application\=%%
|
||||
|
||||
@ -23,9 +26,6 @@ set "EDGESETUP=%EDGESETUP:\=" & rem."%"
|
||||
echo found EDGE version [ %EDGESETUP% ] ...
|
||||
set INSTALLER=Application\%EDGESETUP%\Installer
|
||||
|
||||
echo HIDING edge update in apps list ...
|
||||
reg add "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge Update" /v "SystemComponent" /d 1 /t REG_DWORD /f 1>nul 2>&1
|
||||
|
||||
echo UNINSTALLING edge browser ...
|
||||
%EDGEROOT%\%INSTALLER%\setup.exe --uninstall --system-level --verbose-logging --force-uninstall 2>nul
|
||||
|
||||
@ -51,5 +51,8 @@ reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\EdgeUpdate" ^
|
||||
echo REMOVING install registry key ...
|
||||
reg delete "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\{9459C573-B17A-45AE-9F64-1857B5D58CEE}" /f > NUL 2>&1
|
||||
|
||||
echo HIDING edge update in apps list ...
|
||||
reg add "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge Update" /v "SystemComponent" /d 1 /t REG_DWORD /f 1>nul 2>&1
|
||||
|
||||
echo ####### %0 #######
|
||||
|
||||
|
@ -276,14 +276,18 @@ move /Y %STARTMENU%\"Accessibility\*.*" ^
|
||||
|
||||
rem ... stupid OS problem #6
|
||||
rem Edge is such a zombie!
|
||||
echo Removing microsoft edge links in start menu...
|
||||
echo Removing microsoft edge links in start menu and desktop ...
|
||||
del /F %STARTMENU%\"Microsoft Edge.lnk" 2>nul
|
||||
del /F %USERPROFILE%\"Desktop\Microsoft Edge.lnk" 2>nul
|
||||
|
||||
rem IE too!
|
||||
echo Removing IE links in start menu, sigh ...
|
||||
echo Removing IE link in start menu ...
|
||||
del /F %STARTMENU%\"Accessories\Internet Explorer.lnk" 2>nul
|
||||
|
||||
rem Onedrive ...
|
||||
echo Removing OneDrive link in start menu ...
|
||||
del /F %APPDATA%\"Microsoft\Windows\Start Menu\Programs\OneDrive.lnk"
|
||||
|
||||
rem finally remove some useless directories in the users start menu ...
|
||||
echo Removing more startmenu crap ...
|
||||
rd /S /Q %STARTMENU%\"Accessories" 2>nul
|
||||
|
Loading…
Reference in New Issue
Block a user