Activate Windows Watermark Won't Go Away? Fix It with one click (2026) | Codesempai

 

When the “Activate Windows” watermark will not go away


What is going on

If that “Activate Windows” message is stuck in the corner no matter what you try, you are not alone. Windows keeps showing it when activation does not line up with what the system expects, and normal toggles do not always clear it.

Quick fix (run as administrator)

This post is a short path out: grab the small helper below, unzip it, then run it as administrator. Right-click the file, choose Run as administrator, and follow any prompts. That is the whole idea—no installer wizard, no account signup.

Only do this on a machine you own and are allowed to change. If you are not sure, pause and ask whoever manages the PC.

Download

Download ZIP

After the download finishes, open the folder, extract the ZIP if Windows has not already, then run remove-windows-product-key.bat with admin rights as above.

What remove-windows-product-key.bat does

The batch file is not a hack or a third-party activator. It only calls Microsoft’s own licensing tool (slmgr.vbs) that ships with Windows. Here is what each part of the script is for.

Starts clean and checks for admin

The first lines turn off extra command noise and turn on normal batch behavior (@echo off, setlocal). Then the script runs net session. That command only works when the window is elevated. If it fails, you see an error telling you to use Run as administrator and the script stops—so it never touches licensing without the right permissions.

Uninstall the product key (/upk)

The main step is cscript //nologo "%SystemRoot%\System32\slmgr.vbs" /upk. /upk means “uninstall product key.” It removes the key Windows is using on this PC. After that, Windows typically shows as not activated until you enter a different key or sign in with a license that matches— which is why the script warns you before it runs. If this step errors out, the batch file tells you that your edition might not allow removal that way, then exits.

Optional: clear the key from the registry (/cpky)

After a successful /upk, the script may ask: Also run slmgr /cpky? (Y/N). If you answer Y, it runs slmgr.vbs /cpky, which clears leftover product key data from the registry. That is sometimes used when imaging PCs or cleaning up a bad key situation. If you only wanted to strip the key once, N is fine.

When you are done

The script suggests a restart so activation status and the watermark update everywhere, then pauses so you can read the messages before the window closes.

Post a Comment

If you have any doubts, please let me know

Previous Post Next Post