Hi Johncoool,
If
dsregcmd, MDM diagnostics, and Access Work/School show nothing, then the PC is probably
not actively registered to an organization. In that case, the
“managed by your organization” message is most likely caused by
local policy registry entries, not a live GPO/MDM connection.
But since the shop owner did the setup, there are a few things you can check.
1. Check the Windows “registered owner”
This only shows the local Windows registration info. It does
not prove Microsoft account ownership, but it may show what name/organization was entered during setup.
- Open Command Prompt as Administrator.
- Run:
Code:
reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v RegisteredOwner
reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v RegisteredOrganization
You can also check:
winver
If the shop owner entered their name or company, it may appear there.
To change it:
Code:
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v RegisteredOwner /t REG_SZ /d "Johncoool" /f
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v RegisteredOrganization /t REG_SZ /d "" /f
2. Check whether the shop used a Microsoft account
- Go to Settings > Accounts > Your info.
- Confirm whether it says Local account or a Microsoft account email.
- Go to Settings > Accounts > Email & accounts.
- Check Accounts used by other apps.
- Remove anything you do not recognize.
If it is a local account and nothing is listed there, then the device is likely not tied to the shop owner’s Microsoft account anymore.
3. Check if the device is in Windows Autopilot / provisioning
This is important on business laptops. A Lenovo V15 sold as a business device could theoretically have been registered in Autopilot by a previous owner or reseller.
Run these commands as Administrator:
Code:
reg query "HKLM\SOFTWARE\Microsoft\Provisioning\Diagnostics\AutoPilot" /s
reg query "HKLM\SOFTWARE\Microsoft\Provisioning\AutopilotSettings" /s
reg query "HKLM\SOFTWARE\Microsoft\Enrollments" /s
Look for values such as:
Code:
CloudAssignedTenantId
CloudAssignedTenantDomain
CloudAssignedOobeConfig
TenantId
UPN
EnrollmentType
DiscoveryServiceFullURL
If all of those are empty or missing, Autopilot/MDM is probably not the cause.
4. Generate a full local policy report
Even if the device is not domain joined, local policies can still exist.
Run:
Code:
gpresult /scope computer /h "%USERPROFILE%\Desktop\computer-policy.html"
gpresult /scope user /h "%USERPROFILE%\Desktop\user-policy.html"
Open both files and check whether anything is listed under:
Code:
Administrative Templates
Power Management
Start Menu and Taskbar
System
Logon
If the only source is
Local Group Policy, then the issue is on the machine itself.
5. Check the exact registry policy causing the lockout
For your power/energy issue, check:
Code:
reg query "HKLM\SOFTWARE\Policies\Microsoft\Power" /s
reg query "HKLM\SOFTWARE\Policies\Microsoft\Windows\PowerShell" /s
reg query "HKLM\SOFTWARE\Policies\Microsoft\Windows" /s
reg query "HKCU\SOFTWARE\Policies\Microsoft\Windows" /s
For startup-app restrictions, also check:
Code:
reg query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies" /s
reg query "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies" /s
reg query "HKLM\SOFTWARE\Policies\Microsoft\Windows\Explorer" /s
reg query "HKCU\SOFTWARE\Policies\Microsoft\Windows\Explorer" /s
reg query "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /s
reg query "HKCU\SOFTWARE\Policies\Microsoft\Windows\System" /s
If you want easier review, export them to text files:
Code:
reg query "HKLM\SOFTWARE\Policies" /s > "%USERPROFILE%\Desktop\HKLM-Policies.txt"
reg query "HKCU\SOFTWARE\Policies" /s > "%USERPROFILE%\Desktop\HKCU-Policies.txt"
Then search the files for:
Code:
Power
EnergySaver
Explorer
Startup
Run
Disable
NoControlPanel
NoAddFromStartMenu
NoChanging
Hide
6. Check Chrome policy separately
Because the timing points to Chrome, check whether the corporate Google account pushed
Chrome browser policies.
In Chrome, open:
chrome://policy
Click
Reload policies.
If policies appear there, they are Chrome policies. They can affect Chrome, extensions, browser startup, password manager, etc. They should
not normally control Windows 11 Power/Battery settings.
Also check the registry:
Code:
reg query "HKLM\SOFTWARE\Policies\Google" /s
reg query "HKCU\SOFTWARE\Policies\Google" /s
If those exist, Chrome is managed. But again, that should not grey out Windows Energy Saver or Windows startup-app settings.
7. Check Lenovo utilities
Since this is a Lenovo business laptop, also check Lenovo Vantage / Commercial Vantage settings.
- Open Installed apps.
- Look for:
Code:
Lenovo Vantage
Lenovo Commercial Vantage
Lenovo System Interface Foundation
Lenovo Hotkeys
Lenovo Device Intelligence
- Open Lenovo Vantage/Commercial Vantage.
- Check power, battery conservation, energy, and enterprise/device-management options.
- Temporarily uninstall Lenovo Commercial Vantage if present.
- Reboot and check the Windows settings again.
Lenovo Commercial Vantage is more likely than normal Chrome to apply business-style power policies.
8. Reset local Group Policy only
If you are sure the PC is not domain/MDM joined, you can reset local policy.
Warning: This removes local Group Policy settings. Create a restore point first.
- Open Command Prompt as Administrator.
- Run:
Code:
mkdir "%USERPROFILE%\Desktop\PolicyBackup"
xcopy "%SystemRoot%\System32\GroupPolicy" "%USERPROFILE%\Desktop\PolicyBackup\GroupPolicy" /E /H /C /I
xcopy "%SystemRoot%\System32\GroupPolicyUsers" "%USERPROFILE%\Desktop\PolicyBackup\GroupPolicyUsers" /E /H /C /I
- Then reset local policy:
Code:
rd /s /q "%SystemRoot%\System32\GroupPolicy"
rd /s /q "%SystemRoot%\System32\GroupPolicyUsers"
gpupdate /force
- Reboot.
To undo, copy the backed-up folders back from:
%USERPROFILE%\Desktop\PolicyBackup
My view on the Chrome timing
The Chrome connection may be a
trigger/correlation, but I still doubt Chrome directly changed Windows GPO. More likely one of these happened:
- The corporate Google account made Chrome show as managed, and Windows already had local policies from setup.
- The shop/OEM setup included Lenovo/business policy defaults.
- A web “fix” or tweak changed registry policies after the issue appeared.
- A hidden provisioning/Autopilot remnant exists, though your earlier checks make this less likely.
The fastest next step is to post the output of these, with any email/domain/TenantId redacted:
Code:
reg query "HKLM\SOFTWARE\Microsoft\Provisioning\Diagnostics\AutoPilot" /s
reg query "HKLM\SOFTWARE\Policies\Microsoft\Power" /s
reg query "HKLM\SOFTWARE\Policies\Google" /s
reg query "HKCU\SOFTWARE\Policies\Google" /s
Those should tell us whether this is
Autopilot/provisioning,
Windows local policy,
Chrome policy, or
Lenovo/OEM behavior.