hi Niket Kumar Singh, thanks for posting this on Q&A be sure u’re not alone in this struggle, trust me. let’s break it down super simple, step by step.
so, u’ve already done a ton of stuff kms activation, checked IMDS, even fixed the cert chain. nice! but that watermark keeps coming back like a bad meme ))) what might help:
recheck the cert chain again. yeah, i know u already did it, but sometimes azure being azure, things get weird. open powershell and run
Get-ChildItem -Path Cert:\LocalMachine\CA | Where-Object { $_.Subject -like "*Microsoft Azure RSA TLS Issuing CA 03*" }
if it’s missing, grab it from here and import it again.
run fclip.exe once more. this little guy sometimes needs a second nudge. just open cmd as admin and do
cd C:\Windows\System32
fclip.exe
wait a sec, then restart. see if the watermark ghosts u again.
check the azure metadata service. sometimes the VM loses its mind and forgets it’s in azure. run this in powershell to make sure
Invoke-RestMethod -Headers @{"Metadata"="true"} -Method GET -Uri "http://169.254.169.254/metadata/instance?api-version=2021-02-01"
if u get a response with all the VM details, cool. if not, uh-oh something’s blocking it.
force a kms reactivation. slmgr can be stubborn, so let’s yell at it again ))
slmgr /ckms
slmgr /skms kms.core.windows.net
slmgr /ato
if it says "activated," but the watermark stays, azure’s attestation might be glitching.
last resort redeploy the VM. i know, i know, it’s a hassle. but sometimes azure just needs a fresh start. try a redeploy from the portal (not a reboot, a full redeploy!).
if none of this works, so...u need backend support this might be a backend issue they need to fix.
hope this helps, lmk if non.
Best regards,
Alex
and "yes" if you would follow me at Q&A - personaly thx.
P.S. If my answer help to you, please Accept my answer
PPS That is my Answer and not a Comment
https://ctrlaltdel.blog/