The fastest solution is to disable the SmartSense service via PowerShell. Run Stop-Service -Name 'SmartSense' -Force and Set-Service -Name 'SmartSense' -StartupType Disabled as administrator to immediately stop unwanted screen locking behavior.

Fix Lenovo SmartSense Service Auto-Lock Issue – ThinkPad/IdeaPad 2026
Lenovo Intelligent Sensing Service (SmartSense) causes unwanted screen locking on ThinkPad and IdeaPad devices. This guide provides PowerShell and Intune solutions to disable the problematic service.
Understanding Lenovo Intelligent Sensing Service Issues
The Lenovo Intelligent Sensing Service, internally known as SmartSense, represents a significant challenge for IT administrators managing Lenovo ThinkPad and IdeaPad devices in enterprise environments. This service, designed for consumer convenience, uses the device's built-in camera and sensors to detect user presence and automatically lock or unlock the screen accordingly.
While this functionality may seem beneficial in theory, it creates substantial friction in professional environments where users frequently work with multiple monitors or step away briefly from their primary display. The service interprets normal multi-monitor workflows as user absence, triggering unwanted screen locks that disrupt productivity and generate helpdesk tickets.
The core issue stems from SmartSense operating independently of Windows power management policies and Intune device configuration profiles. Even when organizations have carefully configured appropriate screen timeout and lock policies, the Lenovo service overrides these settings, creating an inconsistent user experience that doesn't align with enterprise security requirements.
This comprehensive guide addresses the SmartSense problem through multiple approaches, from immediate PowerShell fixes to enterprise-scale Intune Proactive Remediation deployments, ensuring IT teams can resolve this issue effectively across their Lenovo device fleet.
Symptoms
- Screen locks automatically after a few seconds when looking at external monitors
- Laptop display dims unexpectedly during active use
- Screen timeout occurs faster than configured Windows power settings
- Users experience frequent authentication prompts despite being present
- Lock screen appears when user briefly looks away from laptop screen
- External monitor usage triggers immediate laptop screen lock
Root Causes
- Lenovo Intelligent Sensing Service (SmartSense) using camera and sensors to detect user presence
- Service interpreting external monitor usage as user absence
- SmartSense overriding Windows power management and lock screen policies
- Pre-installed service automatically starting on Lenovo devices
- Lenovo Vantage or driver updates re-enabling the service after manual disabling
- Enterprise environment conflicts with consumer-focused presence detection features
Solutions
Disable SmartSense Service via PowerShell
This method immediately stops and disables the Lenovo Intelligent Sensing Service using PowerShell commands.
- Press Windows + X and select Windows PowerShell (Admin) or Terminal (Admin)
- Run the following command to stop the service immediately:
Stop-Service -Name 'SmartSense' -Force - Disable the service from starting automatically:
Set-Service -Name 'SmartSense' -StartupType Disabled - Verify the service status:
Get-Service -Name 'SmartSense' | Select-Object Name, Status, StartType - The output should show Status as 'Stopped' and StartType as 'Disabled'
Disable via Services Management Console
Use the Windows Services console for a GUI-based approach to disable SmartSense.
- Press Windows + R, type
services.msc, and press Enter - Scroll down and locate Lenovo Intelligent Sensing or SmartSense
- Right-click the service and select Properties
- In the Properties dialog:
- Set Startup type to Disabled
- Click Stop if the service is currently running
- Click Apply then OK
- Close the Services console
Registry-Based Permanent Disable
Modify the Windows registry to permanently disable the SmartSense service and prevent automatic re-enabling.
- Press Windows + R, type
regedit, and press Enter - Navigate to:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SmartSense - Double-click the Start value
- Change the Value data from
2(Automatic) to4(Disabled) - Click OK
- Stop the running service via PowerShell:
Stop-Service -Name 'SmartSense' -Force - Restart the computer to ensure changes take effect
Intune Proactive Remediation Deployment
Deploy an automated solution across managed devices using Microsoft Intune Proactive Remediations.
- Open Microsoft Intune admin center → Devices → Remediations
- Click + Create to create a new remediation
- Name:
WIN-PR-D-LenovoSmartSense - Create the detection script:
# Detection Script try { $service = Get-Service -Name 'SmartSense' -ErrorAction SilentlyContinue if ($service -and ($service.Status -eq 'Running' -or $service.StartType -ne 'Disabled')) { Write-Output "SmartSense service needs remediation" exit 1 } Write-Output "SmartSense service is properly disabled" exit 0 } catch { Write-Output "SmartSense service not found" exit 0 } - Create the remediation script:
# Remediation Script try { $service = Get-Service -Name 'SmartSense' -ErrorAction SilentlyContinue if ($service) { Stop-Service -Name 'SmartSense' -Force -ErrorAction SilentlyContinue Set-Service -Name 'SmartSense' -StartupType Disabled Write-Output "SmartSense service disabled successfully" } exit 0 } catch { Write-Error "Failed to disable SmartSense service: $_" exit 1 } - Configure settings:
- Run this script using the logged-on credentials: No
- Enforce script signature check: No
- Run script in 64-bit PowerShell: Yes
- Assign to Lenovo device groups and set schedule (daily recommended)
Group Policy Deployment for Domain Environments
Use Group Policy to deploy the SmartSense disable script across domain-joined Lenovo devices.
- Open Group Policy Management Console on your domain controller
- Create a new GPO named
Disable Lenovo SmartSense - Navigate to Computer Configuration → Policies → Windows Settings → Scripts (Startup/Shutdown)
- Double-click Startup
- Click Add and create a PowerShell script:
# startup-disable-smartsense.ps1 if (Get-Service -Name 'SmartSense' -ErrorAction SilentlyContinue) { Stop-Service -Name 'SmartSense' -Force -ErrorAction SilentlyContinue Set-Service -Name 'SmartSense' -StartupType Disabled Write-EventLog -LogName Application -Source 'Group Policy' -EventId 1001 -Message 'SmartSense service disabled via GPO' } - Link the GPO to the OU containing Lenovo devices
- Run
gpupdate /forceon target machines or wait for next reboot - Verify deployment using Event Viewer logs
SELECT * FROM Win32_ComputerSystem WHERE Manufacturer LIKE '%LENOVO%'Verification
After applying any of the above methods, verify the fix using these steps:
- Check service status via PowerShell:
The output should show Status as 'Stopped' and StartType as 'Disabled'.Get-Service -Name 'SmartSense' | Select-Object Name, Status, StartType - Test screen behavior by looking at an external monitor for 30 seconds - the laptop screen should not lock automatically
- Verify Windows power settings are working correctly by checking Settings → System → Power & battery → Screen and sleep
- For Intune deployments, check the Proactive Remediation report for successful execution
- Monitor for 24-48 hours to ensure the issue does not recur
Advanced Troubleshooting
If the above methods didn't resolve the issue, try these advanced troubleshooting steps:
- Service recreated after updates: Lenovo Vantage updates may reinstall SmartSense. Uninstall Lenovo Vantage completely via Settings → Apps or use the Lenovo Vantage removal tool
- Multiple Lenovo services: Check for related services like 'Lenovo Intelligent Sensing Service' or 'LenovoSmartSense' with different names using
Get-Service | Where-Object {$_.DisplayName -like '*Lenovo*' -or $_.DisplayName -like '*Smart*'} - BIOS-level settings: Access BIOS/UEFI setup and look for 'Intelligent Sensing', 'Smart Sensing', or 'Presence Detection' options under Security or Power Management
- Driver conflicts: Update or rollback Lenovo camera drivers via Device Manager if the issue persists
- Alternative presence detection: Check Windows Hello settings and disable face recognition if configured
Frequently Asked Questions
What is the Lenovo Intelligent Sensing Service and why does it cause screen locking issues?+
Why do Lenovo updates keep re-enabling the SmartSense service after I disable it?+
Can I disable SmartSense through Lenovo Vantage settings instead of PowerShell?+
Will disabling the SmartSense service affect other Lenovo features or cause system instability?+
How can I verify that the SmartSense service is completely disabled across my organization's Lenovo devices?+
Further Intelligence
Deepen your knowledge with related resources
Discussion
Share your thoughts and insights
Sign in to join the discussion




