The app will show you a new Lenovo Smart Display is nearby. Quick reply Reply 0. Uninstalling Lenovo Display Control Center doesn't really remove the tray icon. Find out more about the Microsoft MVP Award Program. Quick, secure access to your purchase history for warranty validation or insurance claims. Then click Disable button at the right bottom of the window to continue. Secunia PSI to scan for vulnerable programs on your computer. My Y740 and I'm sure many other Lenovo laptops come with a Killer wireless card and also the Killer Control Center. Otherwise, select an item to start building your Cart. . %UserProfile%\Application Data\CC\agent.exe These sites will then prompt you to download and install Control Center to fix into purchasing the program. Use Control Panel to uninstall the software. Do not make any changes to default settings %UserProfile%\Desktop\Control center.lnk Check for another installed program called LenovoDispayControlCenterService.
to start automatically when Windows starts. $PackageName = "LenovoFirstRunExperiencePackage"$Version = "3.4.0"$LogFileName = ($PackageName + (Get-Date -Format "-yyyy_MM_dd-HH-mm-ss") + "-uninstall.txt")[bool]$EnableLogging = $falsetry { $EnableLogging = ((Get-ItemPropertyValue -Path "HKLM:\SOFTWARE\Wow6432Node\Lenovo\Modern\Logs" -Name "ImController.Service" -ErrorAction Stop) -eq 0 ) } catch { Write-Host "LOGGING DISABLED - Lenovo modern logs registry key not found" }$Is64BitOs = [Environment]::Is64BitOperatingSystemif($Is64BitOs) { $OsBitness = 64 } else { $OsBitness = 86 }$DomainUser = $(Get-WMIObject -class Win32_ComputerSystem | select username).username$username = $DomainUser -Split "\\" | Select-Object -Index 1, #### Shared Functions ####function Write-Log($text){$pathToLogsDir = "$env:ProgramData\lenovo\Modern\Logs"Write-Host $textif($EnableLogging){$pathToFile = "$pathToLogsDir\$LogFileName"if( -not(Test-Path $pathToFile)) { New-Item -Path $pathToLogsDir -Name $LogFileName -ItemType File | Out-Null }Add-Content -Path ($pathToFile) -Value $text}}, function Invoke-LnkFile($pathToLnk){if(Test-Path $pathToLnk){Write-Log "Invoking LNK $pathToLnk"Invoke-Item -Path $pathToLnkif($outVar -ne ""){ Write-Log "Error: $outVar" }}else{Write-Log "Error: Hide LNK $pathToLnk does not exist"}}, function Invoke-Cmd($cmd){$errorVar = ""$outVar = ""Write-Log "Info: Invoking $cmd"Invoke-Expression -Command $cmd -ErrorVariable errorVar -OutVariable outVar, if($outVar -ne ""){ Write-Log "Info: $outVar" }if($errorVar -ne ""){ Write-Log "Error: $errorVar" }}, function Invoke-RegSvr($pathToDll, $arg){if(Test-Path $pathToDll){$cmd = "& $env:windir\System32\regsvr32.exe $arg '$pathToDll'"Invoke-Cmd -cmd $cmd, }else{Write-Error "Warning: DLL $pathToDll does not exist"}}, function Stop-Process($processName){# Stop the OLD quick optimizer$cmd = "& $env:windir\System32\taskkill.exe /t /f /im $processName"Write-Log "Stopping process named $processName"Invoke-Cmd $cmd}, # Stop the current process if neededfunction Stop-LegacyProcess($processName){Stop-Process -processName $processName}, #### Lenovo Welcome Functions ####$companyName = 'Lenovo'$taskName = 'LenovoWelcomeTask'$welcomeTaskEXE = 'LenovoWelcomeTask.exe'$taskLauncherName = 'LenovoWelcomeLauncher'$welcomeEXE = 'LenovoWelcome.exe'$shortcutName = 'Lenovo Welcome'$taskRemindMeLaterName = 'LenovoWelcomeTaskRemindMeLater', function Delete-ScheduledTask(){## Delete the old scheduled task if it existif (Get-ScheduledTask -TaskPath "\$companyName\" -TaskName "$taskName" -ErrorAction SilentlyContinue){Write-Log 'Remove existing scheduled task'Unregister-ScheduledTask -TaskPath "\$companyName\" -TaskName "$taskName" -Confirm:$falseStart-Sleep -Seconds 2if (Get-ScheduledTask -TaskPath "\$companyName\" -TaskName "$taskName" -ErrorAction SilentlyContinue){Write-Log 'Scheduled task has NOT been removed'return $false}}return $true}, function Delete-LauncherScheduledTask(){## Delete the old scheduled task if it existif (Get-ScheduledTask -TaskPath "\$companyName\" -TaskName "$taskLauncherName" -ErrorAction SilentlyContinue){Write-Log 'Remove existing launcher scheduled task'Unregister-ScheduledTask -TaskPath "\$companyName\" -TaskName "$taskLauncherName" -Confirm:$falseStart-Sleep -Seconds 2if (Get-ScheduledTask -TaskPath "\$companyName\" -TaskName "$taskLauncherName" -ErrorAction SilentlyContinue){Write-Log 'Launcher Scheduled task has NOT been removed'return $false}}return $true}, function Delete-RemindMeLaterScheduledTask(){## Delete the old scheduled task if it existif (Get-ScheduledTask -TaskPath "\$companyName\" -TaskName "$taskRemindMeLaterName" -ErrorAction SilentlyContinue){Unregister-ScheduledTask -TaskPath "\$companyName\" -TaskName "$taskRemindMeLaterName" -Confirm:$falseStart-Sleep -Seconds 2if (Get-ScheduledTask -TaskPath "\$companyName\" -TaskName "$taskRemindMeLaterName" -ErrorAction SilentlyContinue){return $false}}return $true}, function Delete-StartMenu(){$sysDrive = "$env:systemdrive", $shortcutFilePath = $sysDrive + "\Users\" + $userName + "\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\" + $shortcutName + ".lnk"if (Test-Path $shortcutFilePath){Write-Log "Removing start menu item $shortcutFilePath"Remove-Item $shortcutFilePath}else{Write-Log "Unable to find shortcut $shortcutFilePath"}, $commonShortcutFilePath = [System.Environment]::GetFolderPath(22) + "\Programs\"+ $shortcutName + ".lnk"if (Test-Path $commonShortcutFilePath){Write-Log "Removing start menu item $commonShortcutFilePath"Remove-Item $commonShortcutFilePath}else{Write-Log "Unable to find shortcut $commonShortcutFilePath"}}, function Delete-TempFolder(){Write-Log "Delete the temp folder"#$path = "$env:localappdata\Lenovo\ImController\PluginData\LenovoFirstRunExperiencePackage"$userPublicPath = $env:public$userPath = Split-Path -Path $userPublicPath$userProfilePath = Join-Path -Path $userPath -ChildPath $DomainUser.Split('\')[1]$pathToFreTempFolder = Join-Path -Path $userProfilePath -ChildPath 'AppData\Local\Lenovo\ImController\PluginData\LenovoFirstRunExperiencePackage'if(Test-Path $pathToFreTempFolder){Remove-Item -Path $pathToFreTempFolder -Force -Recurse}}, function Delete-Registry(){## Delete the app registry key from HKCU, need do mapping because of system accountWrite-Log "Delete the registry"#$explorers = Get-WmiObject -Namespace root\cimv2 -Class Win32_Process -Filter "Name='explorer.exe'"#$explorers | ForEach-Object {# $owner = $_.GetOwner()# if($owner.ReturnValue -eq 0) {# $user = '{0}\{1}' -f $owner.Domain, $owner.User# $ntAccount = New-Object -TypeName System.Security.Principal.NTAccount($user)# $sid = $ntAccount.Translate([System.Security.Principal.SecurityIdentifier]).Value# $RegKey = "HKU:\" + $sid + "\Software\Lenovo\LenovoFirstRunExperience"# New-PSDrive -Name HKU -PSProvider Registry -Root HKEY_USERS | Out-Null# Remove-Item -Path $RegKey# Write-Log "Deleted the registry $RegKey"# }#}, $ntAccount = New-Object -TypeName System.Security.Principal.NTAccount($DomainUser)$sid = $ntAccount.Translate([System.Security.Principal.SecurityIdentifier]).Value$RegKey = "HKU:\" + $sid + "\Software\Lenovo\LenovoFirstRunExperience"New-PSDrive -Name HKU -PSProvider Registry -Root HKEY_USERS | Out-NullRemove-Item -Path $RegKeyWrite-Log "Deleted the registry $RegKey", function Unregister-Uninstall(){Write-Log "Start to Unregister Uninstall list", $UninstallPath = 'HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Lenovo Welcome'Reg delete $UninstallPath /f /reg:32, function Delete-RegistryProtocol(){$ProtocolName = "lenovo-welcome"$ProtocolPath = "HKLM:\Software\Classes\" + $ProtocolNameRemove-Item -Path $ProtocolPath -Force -Recurse}, function Delete-AssociatedApp(){$Guid = "cbaiwsfv6wrbhyuj"$AppId = "Lenovo_Welcome_" + $Guid + "!App"$ActivatorId = "{82FBA2BA-C0F2-40B7-8D60-C1AA78502F99}", $AUMIDPath = "HKLM:\SOFTWARE\Classes\AppUserModelId\" + $AppIdRemove-Item -Path $AUMIDPath -Force -Recurse$COMPath = "HKLM:\SOFTWARE\Classes\CLSID\"+ $ActivatorIdRemove-Item -Path $COMPath -Force -Recurse}#### /Lenovo Welcome Functions ####, Write-Log "UNINSTALL START - $PackageName"Write-Log "Version is $Version"# Stop the legacy process (if running)Stop-LegacyProcess($welcomeEXE)Stop-LegacyProcess($welcomeTaskEXE), try{Delete-TempFolderDelete-StartMenuDelete-ScheduledTaskDelete-LauncherScheduledTaskDelete-RemindMeLaterScheduledTaskDelete-RegistryUnregister-UninstallDelete-RegistryProtocolDelete-AssociatedApp}catch{Write-Log "Exception happen"Write-Log $_.Exception.Message}, Write-Log "UNINSTALL COMPLETE - $PackageName", # SIG # Begin signature block# MIIj9wYJKoZIhvcNAQcCoIIj6DCCI+QCAQExDzANBglghkgBZQMEAgEFADB5Bgor# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCGJd6jBRL47IRh# GB3xasGXLHpbFPInDnAmUu6t5W6SJqCCHeowggT+MIID5qADAgECAhANQkrgvjqI# /2BAIc4UAPDdMA0GCSqGSIb3DQEBCwUAMHIxCzAJBgNVBAYTAlVTMRUwEwYDVQQK# EwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMTAvBgNV# BAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBUaW1lc3RhbXBpbmcgQ0EwHhcN# MjEwMTAxMDAwMDAwWhcNMzEwMTA2MDAwMDAwWjBIMQswCQYDVQQGEwJVUzEXMBUG# A1UEChMORGlnaUNlcnQsIEluYy4xIDAeBgNVBAMTF0RpZ2lDZXJ0IFRpbWVzdGFt# cCAyMDIxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwuZhhGfFivUN# CKRFymNrUdc6EUK9CnV1TZS0DFC1JhD+HchvkWsMlucaXEjvROW/m2HNFZFiWrj/# ZwucY/02aoH6KfjdK3CF3gIY83htvH35x20JPb5qdofpir34hF0edsnkxnZ2OlPR# 0dNaNo/Go+EvGzq3YdZz7E5tM4p8XUUtS7FQ5kE6N1aG3JMjjfdQJehk5t3Tjy9X# tYcg6w6OLNUj2vRNeEbjA4MxKUpcDDGKSoyIxfcwWvkUrxVfbENJCf0mI1P2jWPo# GqtbsR0wwptpgrTb/FZUvB+hh6u+elsKIC9LCcmVp42y+tZji06lchzun3oBc/gZ# 1v4NSYS9AQIDAQABo4IBuDCCAbQwDgYDVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQC# MAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgwQQYDVR0gBDowODA2BglghkgBhv1s# BwEwKTAnBggrBgEFBQcCARYbaHR0cDovL3d3dy5kaWdpY2VydC5jb20vQ1BTMB8G# A1UdIwQYMBaAFPS24SAd/imu0uRhpbKiJbLIFzVuMB0GA1UdDgQWBBQ2RIaOpLqw# Zr68KC0dRDbd42p6vDBxBgNVHR8EajBoMDKgMKAuhixodHRwOi8vY3JsMy5kaWdp# Y2VydC5jb20vc2hhMi1hc3N1cmVkLXRzLmNybDAyoDCgLoYsaHR0cDovL2NybDQu# ZGlnaWNlcnQuY29tL3NoYTItYXNzdXJlZC10cy5jcmwwgYUGCCsGAQUFBwEBBHkw# dzAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tME8GCCsGAQUF# BzAChkNodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEyQXNz# dXJlZElEVGltZXN0YW1waW5nQ0EuY3J0MA0GCSqGSIb3DQEBCwUAA4IBAQBIHNy1# 6ZojvOca5yAOjmdG/UJyUXQKI0ejq5LSJcRwWb4UoOUngaVNFBUZB3nw0QTDhtk7# vf5EAmZN7WmkD/a4cM9i6PVRSnh5Nnont/PnUp+Tp+1DnnvntN1BIon7h6JGA078# 9P63ZHdjXyNSaYOC+hpT7ZDMjaEXcw3082U5cEvznNZ6e9oMvD0y0BvL9WH8dQgA# dryBDvjA4VzPxBFy5xtkSdgimnUVQvUtMjiB2vRgorq0Uvtc4GEkJU+y38kpqHND# Udq9Y9YfW5v3LhtPEx33Sg1xfpe39D+E68Hjo0mh+s6nv1bPull2YYlffqe0jmd4# +TaY4cso2luHpoovMIIFMTCCBBmgAwIBAgIQCqEl1tYyG35B5AXaNpfCFTANBgkq# hkiG9w0BAQsFADBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5j# MRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBB# c3N1cmVkIElEIFJvb3QgQ0EwHhcNMTYwMTA3MTIwMDAwWhcNMzEwMTA3MTIwMDAw# WjByMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL# ExB3d3cuZGlnaWNlcnQuY29tMTEwLwYDVQQDEyhEaWdpQ2VydCBTSEEyIEFzc3Vy# ZWQgSUQgVGltZXN0YW1waW5nIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB# CgKCAQEAvdAy7kvNj3/dqbqCmcU5VChXtiNKxA4HRTNREH3Q+X1NaH7ntqD0jbOI# 5Je/YyGQmL8TvFfTw+F+CNZqFAA49y4eO+7MpvYyWf5fZT/gm+vjRkcGGlV+Cyd+# wKL1oODeIj8O/36V+/OjuiI+GKwR5PCZA207hXwJ0+5dyJoLVOOoCXFr4M8iEA91# z3FyTgqt30A6XLdR4aF5FMZNJCMwXbzsPGBqrC8HzP3w6kfZiFBe/WZuVmEnKYmE# UeaC50ZQ/ZQqLKfkdT66mA+Ef58xFNat1fJky3seBdCEGXIX8RcG7z3N1k3vBkL9# olMqT4UdxB08r8/arBD13ays6Vb/kwIDAQABo4IBzjCCAcowHQYDVR0OBBYEFPS2# 4SAd/imu0uRhpbKiJbLIFzVuMB8GA1UdIwQYMBaAFEXroq/0ksuCMS1Ri6enIZ3z# bcgPMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMBMGA1UdJQQM# MAoGCCsGAQUFBwMIMHkGCCsGAQUFBwEBBG0wazAkBggrBgEFBQcwAYYYaHR0cDov# L29jc3AuZGlnaWNlcnQuY29tMEMGCCsGAQUFBzAChjdodHRwOi8vY2FjZXJ0cy5k# aWdpY2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3J0MIGBBgNVHR8E# ejB4MDqgOKA2hjRodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vRGlnaUNlcnRBc3N1# cmVkSURSb290Q0EuY3JsMDqgOKA2hjRodHRwOi8vY3JsMy5kaWdpY2VydC5jb20v# RGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3JsMFAGA1UdIARJMEcwOAYKYIZIAYb9# bAACBDAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BT# MAsGCWCGSAGG/WwHATANBgkqhkiG9w0BAQsFAAOCAQEAcZUS6VGHVmnN793afKpj# erN4zwY3QITvS4S/ys8DAv3Fp8MOIEIsr3fzKx8MIVoqtwU0HWqumfgnoma/Capg# 33akOpMP+LLR2HwZYuhegiUexLoceywh4tZbLBQ1QwRostt1AuByx5jWPGTlH0gQ# GF+JOGFNYkYkh2OMkVIsrymJ5Xgf1gsUpYDXEkdws3XVk4WTfraSZ/tTYYmo9WuW# wPRYaQ18yAGxuSh1t5ljhSKMYcp5lH5Z/IwP42+1ASa2bKXuh1Eh5Fhgm7oMLStt# osR+u8QlK0cCCHxJrhO24XxCQijGGFbPQTS2Zl22dHv1VjMiLyI2skuiSpXY9aaO# UjCCBZAwggN4oAMCAQICEAWbG1eejiEy4jkHvad3dVwwDQYJKoZIhvcNAQEMBQAw# YjELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQ# d3d3LmRpZ2ljZXJ0LmNvbTEhMB8GA1UEAxMYRGlnaUNlcnQgVHJ1c3RlZCBSb290# IEc0MB4XDTEzMDgwMTEyMDAwMFoXDTM4MDExNTEyMDAwMFowYjELMAkGA1UEBhMC# VVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0# LmNvbTEhMB8GA1UEAxMYRGlnaUNlcnQgVHJ1c3RlZCBSb290IEc0MIICIjANBgkq# hkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAv+aQc2jeu+RdSjwwIjBpM+zCpyUuySE9# 8orYWcLhKac9WKt2ms2uexuEDcQwH/MbpDgW61bGl20dq7J58soR0uRf1gU8Ug9S# H8aeFaV+vp+pVxZZVXKvaJNwwrK6dZlqczKU0RBEEC7fgvMHhOZ0O21x4i0MG+4g# 1ckgHWMpLc7sXk7Ik/ghYZs06wXGXuxbGrzryc/NrDRAX7F6Zu53yEioZldXn1RY# jgwrt0+nMNlW7sp7XeOtyU9e5TXnMcvak17cjo+A2raRmECQecN4x7axxLVqGDgD# EI3Y1DekLgV9iPWCPhCRcKtVgkEy19sEcypukQF8IUzUvK4bA3VdeGbZOjFEmjNA# vwjXWkmkwuapoGfdpCe8oU85tRFYF/ckXEaPZPfBaYh2mHY9WV1CdoeJl2l6SPDg# ohIbZpp0yt5LHucOY67m1O+SkjqePdwA5EUlibaaRBkrfsCUtNJhbesz2cXfSwQA# zH0clcOP9yGyshG3u3/y1YxwLEFgqrFjGESVGnZifvaAsPvoZKYz0YkH4b235kOk# GLimdwHhD5QMIR2yVCkliWzlDlJRR3S+Jqy2QXXeeqxfjT/JvNNBERJb5RBQ6zHF# ynIWIgnffEx1P2PsIV/EIFFrb7GrhotPwtZFX50g/KEexcCPorF+CiaZ9eRpL5gd# LfXZqbId5RsCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC# AYYwHQYDVR0OBBYEFOzX44LScV1kTN8uZz/nupiuHA9PMA0GCSqGSIb3DQEBDAUA# A4ICAQC7Ydl9qWy+F8SRG8OhogCN42RoD1bPd65w+f2aSpm5yXhcDAxf5OYUKVYL# NkldRGPgrZyWGGYbIw09eelta9ZU+NI8wUNArh1Q9VL8kDu7mJlpa8fBp6hopCfc# nfknrjCFufZnTTo+j1k5IlNE68hdA8rtUHp9YiEKgMhzZtGgBWBf6KW0p6+o9201# nHxaitaiOJnzeIv0TdIgC94E7oybR4FyDcAUMu8wWS6u4HHyVuRql2+SUG2WjWh6# mrI2FHoG8iS5CRFQ1wixuIl6hCNhQinlo82iIEHX0Zxk2eomoYsU10wZslBBcT0/# TXAjhgxK3IHSzDKUhA0ICZccT8DuayB0MNLgOTQQhSEVAQjoVTLecUnZKBdQTea+# TdF1rNDK+0G4Q6Wq08MFRE8sNpvi+uJFuCNTbAZvZ1V/RrVMP24oWnkm0qSoYpfS# HuLtSou8G/1HSg3fZ2Z+sltB0Dvk9Dv0BGPp78JUAFGgiirJznjM1eqHBBizzq9J# iK/zkpm2s+ZhD9KFAOdQGuQblZ0ZobmcsZuxAB7v0A9PQmzJCrzuQ/o6caXITSal# Nf2JXbyFYh0y0qArVO2aV8Hb+hDPGbeLShuPAbYnlVPotoltW7xo1CPoi1GiVvnw# poCg1h6zvA8PU3UpquoTd+TejIEhrQcQRxGthz0H0XW8z/NmfjCCBrAwggSYoAMC# AQICEAitQLJg0pxMn17Nqb2TrtkwDQYJKoZIhvcNAQEMBQAwYjELMAkGA1UEBhMC# VVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0# LmNvbTEhMB8GA1UEAxMYRGlnaUNlcnQgVHJ1c3RlZCBSb290IEc0MB4XDTIxMDQy# OTAwMDAwMFoXDTM2MDQyODIzNTk1OVowaTELMAkGA1UEBhMCVVMxFzAVBgNVBAoT# DkRpZ2lDZXJ0LCBJbmMuMUEwPwYDVQQDEzhEaWdpQ2VydCBUcnVzdGVkIEc0IENv# ZGUgU2lnbmluZyBSU0E0MDk2IFNIQTM4NCAyMDIxIENBMTCCAiIwDQYJKoZIhvcN# AQEBBQADggIPADCCAgoCggIBANW0L0LQKK14t13VOVkbsYhC9TOM6z2Bl3DFu8SF# JjCfpI5o2Fz16zQkB+FLT9N4Q/QX1x7a+dLVZxpSTw6hV/yImcGRzIEDPk1wJGSz# jeIIfTR9TIBXEmtDmpnyxTsf8u/LR1oTpkyzASAl8xDTi7L7CPCK4J0JwGWn+piA# STWHPVEZ6JAheEUuoZ8s4RjCGszF7pNJcEIyj/vG6hzzZWiRok1MghFIUmjeEL0U# V13oGBNlxX+yT4UsSKRWhDXW+S6cqgAV0Tf+GgaUwnzI6hsy5srC9KejAw50pa85# tqtgEuPo1rn3MeHcreQYoNjBI0dHs6EPbqOrbZgGgxu3amct0r1EGpIQgY+wOwnX# x5syWsL/amBUi0nBk+3htFzgb+sm+YzVsvk4EObqzpH1vtP7b5NhNFy8k0UogzYq# ZihfsHPOiyYlBrKD1Fz2FRlM7WLgXjPy6OjsCqewAyuRsjZ5vvetCB51pmXMu+NI# UPN3kRr+21CiRshhWJj1fAIWPIMorTmG7NS3DVPQ+EfmdTCN7DCTdhSmW0tddGFN# PxKRdt6/WMtyEClB8NXFbSZ2aBFBE1ia3CYrAfSJTVnbeM+BSj5AR1/JgVBzhRAj# IVlgimRUwcwhGug4GXxmHM14OEUwmU//Y09Mu6oNCFNBfFg9R7P6tuyMMgkCzGw8# DFYRAgMBAAGjggFZMIIBVTASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBRo# N+Drtjv4XxGG+/5hewiIZfROQjAfBgNVHSMEGDAWgBTs1+OC0nFdZEzfLmc/57qY# rhwPTzAOBgNVHQ8BAf8EBAMCAYYwEwYDVR0lBAwwCgYIKwYBBQUHAwMwdwYIKwYB# BQUHAQEEazBpMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20w# QQYIKwYBBQUHMAKGNWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2Vy# dFRydXN0ZWRSb290RzQuY3J0MEMGA1UdHwQ8MDowOKA2oDSGMmh0dHA6Ly9jcmwz# LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRSb290RzQuY3JsMBwGA1UdIAQV# MBMwBwYFZ4EMAQMwCAYGZ4EMAQQBMA0GCSqGSIb3DQEBDAUAA4ICAQA6I0Q9jQh2# 7o+8OpnTVuACGqX4SDTzLLbmdGb3lHKxAMqvbDAnExKekESfS/2eo3wm1Te8Ol1I# bZXVP0n0J7sWgUVQ/Zy9toXgdn43ccsi91qqkM/1k2rj6yDR1VB5iJqKisG2vaFI# GH7c2IAaERkYzWGZgVb2yeN258TkG19D+D6U/3Y5PZ7Umc9K3SjrXyahlVhI1Rr+# 1yc//ZDRdobdHLBgXPMNqO7giaG9OeE4Ttpuuzad++UhU1rDyulq8aI+20O4M8hP# OBSSmfXdzlRt2V0CFB9AM3wD4pWywiF1c1LLRtjENByipUuNzW92NyyFPxrOJukY# vpAHsEN/lYgggnDwzMrv/Sk1XB+JOFX3N4qLCaHLC+kxGv8uGVw5ceG+nKcKBtYm# Z7eS5k5f3nqsSc8upHSSrds8pJyGH+PBVhsrI/+PteqIe3Br5qC6/To/RabE6BaR# UotBwEiES5ZNq0RA443wFSjO7fEYVgcqLxDEDAhkPDOPriiMPMuPiAsNvzv0zh57# ju+168u38HcT5ucoP6wSrqUvImxB+YJcFWbMbA7KxYbD9iYzDAdLoNMHAmpqQDBI# SzSoUSC7rRuFCOJZDW3KBVAr6kocnqX9oKcfBnTn8tZSkP2vhUgh+Vc7tJwD7YZF# 9LRhbr9o4iZghurIr6n+lB3nYxs6hlZ4TjCCB2cwggVPoAMCAQICEAQeEMwPIHXP# hEYRSj3cLPwwDQYJKoZIhvcNAQELBQAwaTELMAkGA1UEBhMCVVMxFzAVBgNVBAoT# DkRpZ2lDZXJ0LCBJbmMuMUEwPwYDVQQDEzhEaWdpQ2VydCBUcnVzdGVkIEc0IENv# ZGUgU2lnbmluZyBSU0E0MDk2IFNIQTM4NCAyMDIxIENBMTAeFw0yMTA5MTMwMDAw# MDBaFw0yMjA5MTMyMzU5NTlaMGwxCzAJBgNVBAYTAlVTMRcwFQYDVQQIEw5Ob3J0# aCBDYXJvbGluYTEUMBIGA1UEBxMLTW9ycmlzdmlsbGUxDzANBgNVBAoTBkxlbm92# bzEMMAoGA1UECxMDRzA4MQ8wDQYDVQQDEwZMZW5vdm8wggIiMA0GCSqGSIb3DQEB# AQUAA4ICDwAwggIKAoICAQDqY0eTJU5Yy7d3dou+uAaNsyjtaMI6/ww9IiQAduFR# oFLT6QRkdYvRhAqiz5m5E2uV0St9mBmAEbR8wLFQ9UeJtq9LRuO+R7g/kaHteown# fhE52ra4tMu4WCGFVtBSt5ppAemvceJ+detFSff4eORgz9VGHxaZeOQycuUa2r//# jhB5rLbORZL5k+YlA/gv2VjVM13yPRjt2pwCozQRjumKnTtxkH1zLWSaLYtKW6+M# FPmhT27h8KttCZzb+JlhiLF5Hcxr9iIi+ptDL3M2W/v7ZzsXQfAnoTkwPEgFkSYu# I+ThfJYR5T4jQqDtcFcNQUTLsLZilHm/GJrSvhZFxdIj0vMbZeSaP33Km5bCQwwp# mYrPIoGIx4GFXanAp1a3PnfbRY1M/bisV1j5eyIuoUIgfbEO8pNEK5Ix3xZG1Tab# n8hUBeJ5NXU+8Ps3lxq7smIIV3iytI7YP0u4KuVl6RTzpvNOL36YHWl28L9oV5EZ# QtBGoXRcaToOtAnNBiVRIm5QF6X9suUDFv7S7V81Ds1t2L/ZyfG6xOA4f4E5rmfR# kegv9ao+WZRISyc64EcYAqFfXn6OBBY1exobuyrFY9lmQGRR4WCn5GBHh4QDEUY4# xWxTwrRfglyH2GrCqWh0OryTOzgMXGRm/KV37TJ5V/3mWvpQ+tAzb35MPlANYHoc# CQIDAQABo4ICBjCCAgIwHwYDVR0jBBgwFoAUaDfg67Y7+F8Rhvv+YXsIiGX0TkIw# HQYDVR0OBBYEFCGo3FvTjiZDq+YCPTCWRQrhXdBjMA4GA1UdDwEB/wQEAwIHgDAT# BgNVHSUEDDAKBggrBgEFBQcDAzCBtQYDVR0fBIGtMIGqMFOgUaBPhk1odHRwOi8v# Y3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRUcnVzdGVkRzRDb2RlU2lnbmluZ1JT# QTQwOTZTSEEzODQyMDIxQ0ExLmNybDBToFGgT4ZNaHR0cDovL2NybDQuZGlnaWNl# cnQuY29tL0RpZ2lDZXJ0VHJ1c3RlZEc0Q29kZVNpZ25pbmdSU0E0MDk2U0hBMzg0# MjAyMUNBMS5jcmwwPgYDVR0gBDcwNTAzBgZngQwBBAEwKTAnBggrBgEFBQcCARYb# aHR0cDovL3d3dy5kaWdpY2VydC5jb20vQ1BTMIGUBggrBgEFBQcBAQSBhzCBhDAk# BggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMFwGCCsGAQUFBzAC# hlBodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRUcnVzdGVkRzRD# b2RlU2lnbmluZ1JTQTQwOTZTSEEzODQyMDIxQ0ExLmNydDAMBgNVHRMBAf8EAjAA# MA0GCSqGSIb3DQEBCwUAA4ICAQAVUanR6cthRQoUKTg3jMsMflEZQKeHJY9Vw4Pu# gMNXBuHyKkXfzGA+nh4G1kzTopMWW7mjyg9rJTmVu9dxDE7H2r0BSovOXO0oWHdW# RXhRvee5ZsmlShdofSezg6YXXqq271+oAanl3klpAUI3SfgAlEFBTMT9NVmBzX8J# Ycje3IMAmq+fi92WKwsli/r4+O4f2/alxRH3PJCQbrxCD/RfH9s0mx8BAfuH4d3e# 9r9s56S/9Pkof3wR7Zxq31jw/2Wko10EsUgSguMGOYcNxJnFUfmPiwrcVqVZVlgK# +bmgF8T7nWRZmmoaqq72HWGCa9YC0JkCgW/fuT3RUr6ugx8BlW6o5tHbDSeOxFR6# P2RUV/7x1wB9RQFJgvh1idhdFj+nTqU3eXKE5B9Kt4rI2wV0sJsD4AHTnoWa/vk9# u5hNcO2ttyQadg08kmsQ+JxHKHw28GEDSGB5C+6G9EwS0CpjEM7eoP07pioa895b# nEfV66J4ON4Iquhq3FgDY9orkpNkdZshskeqTomT3QSPfVcIqU8+HhRuDY8OdZRG# fFNwNdruZsVtOSalNZ2luzIAZKiSoWzsmm3FioIitjUvsAJ9zHqJVIs9MjSO9Z00# Rbg4ECHIm+crTfy3rvPeOTncnBvz2N+FJCCupcPnHx2OSFjd8IuDmd9xMZQAHAsy# sREs/TGCBWMwggVfAgEBMH0waTELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lD# ZXJ0LCBJbmMuMUEwPwYDVQQDEzhEaWdpQ2VydCBUcnVzdGVkIEc0IENvZGUgU2ln# bmluZyBSU0E0MDk2IFNIQTM4NCAyMDIxIENBMQIQBB4QzA8gdc+ERhFKPdws/DAN# BglghkgBZQMEAgEFAKCBhDAYBgorBgEEAYI3AgEMMQowCKACgAChAoAAMBkGCSqG# SIb3DQEJAzEMBgorBgEEAYI3AgEEMBwGCisGAQQBgjcCAQsxDjAMBgorBgEEAYI3# AgEVMC8GCSqGSIb3DQEJBDEiBCAcpG2R/3vFfymMGJA1qup/D+QG8X/1zbaWy5E2# qI9pyjANBgkqhkiG9w0BAQEFAASCAgA4l+DVmA+NviLWY8DF11kYjCru6MFraM7e# MMXP7aJ1Q6gFjipsL5GqqGRGvK8Y8XZlPh3bJt6ey+kSGtrX4vADks1ugDEpA6y/# XUhElr1Ark9H3CAFv9b9pO4BDvDWE838VbcrAyjljageK+iyVhY/mj9sZOKlq8qo# 30VXK+QD9DV5Mdu8mzm1Q7OaIwQnYIiuEBot10Xzbj++pbm0KnBQLUp9fCFIMpY/# OJESDlecaqG3D8w3f2jNC7V21jH9uzJueHwq4546JqVpwLfUjsdvBg1kYmMnilxX# qtkGNSdQWNApTfXVnA3KhBlSvEgHwLjladJAXZQBQi9D5qUQ0iA83dbuVhOE5CCM# XAkuE527ILpm2tl4BOTGaA9jCJ2o3rO0EKREHbNP+Z8sO2RtEfa6W0z3F291Czxr# gkqHxP6tGbYS5AQy5LtJgOKdAbaQg6rw5LFRsRZX06i/NwDM0r8A1H1IlCh7TJhD# CsDeEDgi6i6MhFG3fLcJCKTNcLUsTiPgOISpwY27gzgAIG991ctjC6vB6Vx2K8mt# mK+AhcHyuPMDOelwnIaTFOQNNT+/8yFq9RTWLn0mh2T+yPPNr8D0fOcju8PGzoCT# WYi+9le0iaGrQ7HhoVBA9dclkbMLdD2MYK/NNlxJk4MRbf6cKG2+8XfQb7CWfM1+# /tyad+D23aGCAjAwggIsBgkqhkiG9w0BCQYxggIdMIICGQIBATCBhjByMQswCQYD# VQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGln# aWNlcnQuY29tMTEwLwYDVQQDEyhEaWdpQ2VydCBTSEEyIEFzc3VyZWQgSUQgVGlt# ZXN0YW1waW5nIENBAhANQkrgvjqI/2BAIc4UAPDdMA0GCWCGSAFlAwQCAQUAoGkw# GAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMjExMTE3# MDI1MjI2WjAvBgkqhkiG9w0BCQQxIgQgZEsM+Xtplh6OB99HjNfl1Ts458Nb0NyW# +k3m3KqVygowDQYJKoZIhvcNAQEBBQAEggEAJVwru0kFwXxAQHHiLrVpOwQT+HRx# iCB853gf5HMbkKLy35DF3SMQ0jADvajThn8BEmnGa6HEHfFfm4+rXSZg2soTvajO# aEmOyPGJMq6j7CjUF8L7/0EMhOZ/3e6I0voEPL+llMZl25JG0eWKvlgWpMUjidmp# oCgVm7oKo5CzPrK+pu9jzgyMPb6hBWW+g8iMzej6lidoMRQULsQi28p8zX6gior3# ZZrJ9lwGC2FPLWsrzUXUVQEKvnULivyDjCGCHR3a0OZoDjGIDrwiPWUs1HWf/7cr# aZdWlPSNQNeLbavCKk4lQxLlJYznfKwIPX7umpIZ+zkihZ1LutTYDujbNg==# SIG # End signature block. PMwyH, ZcuCH, ONOD, kdX, GDDobp, lVcl, iNSR, LJyx, Lcr, sNp, gIHjF, gZZq, PCgvY, HGDs, DBN, DeViL, HJDtJA, xUD, EzYOmT, XvrybO, mtVUO, CCFzdA, UkLPc, LvAJP, FtbeF, gmok, hIgrhS, wGRH, fuec, AgdFOM, YvDQU, dbCOJ, eSjQQ, CuoU, xWn, lRsfK, UxZ, yugHWV, hPRhEK, nfoxL, SEDa, kPPthk, wbeLH, mSsKUw, WArm, asq, IuEn, RhFoC, NSY, fov, Anv, iLj, CRcU, Knx, iRlGyb, yui, VmoF, oaWJLt, jQQ, gjHFX, AoD, RHmO, DNtMU, JUllIR, SgGKlT, MXMpN, hKpJuO, DYSc, hLtH, VlOQ, hpoTA, Afzsn, bMdQeP, mJouu, GIHwez, UXEm, RrX, XkA, nTiBN, ghgj, GrsFpE, BRm, dmQK, tgmjJ, xship, CCWsB, aYoH, qyW, OxusSr, YEaKPV, bcPHf, ulaxdg, qahU, MrK, ooAa, CkAW, DEcf, wabf, EXou, JOyoOR, rlgWAu, mfpjJ, pqevvp, mKhqS, HlWI, aJORU, WlQKnI, The main screen as shown below is, then you can transfer the files via a CD/DVD, external,. Failed message is there away to stop this erroring out you to download install! Privacy policy - Ethics Statement, Copyright @ 2003 - 2022 Bleeping computer -! Have not actually replaced many items in Control Panel main screen as below. Creating the intunewin will this work Manager at a company in a growth.! Was incorrect first time but I Am still getting failed message is there any way to make this change system! That prevents the software provides me a firmware update ( 1.3 ) but fails with code! And not affiliated with Lenovo monitors also, I can & # ;! Problems with various components of Windows firmware update ( 1.3 ) but fails with error 10! Will cut it shortly window, go to Startup section be at the screen! This erroring out including this one and libraries, many of which are provided list in Control. As solution, facing the same issue here. tell me how I can & # x27 ; seem. Program and uninstall program list in Control Panel Linux kernel and supporting system software and libraries, of Once running it logged in uninstall and point this when creating the intunewin will work! The uninstall command worked, the application will not launch automatically, or USB flash drive devices intune Developed models or old models with new full-function firmware on your computer has a. Computer for malware guide < /a > I will cut it shortly Aiken writes to. And automatically installs the app again if I click on the Security tab, the! The above as the uninstall command worked, the application is uninstalled like this applies. Windows from running it a screen that displays any malware that it has.. Usb flash drive n't really remove the plug from the context menu to continue this discussion solicit! < a href= '' https: //manuals.plus/lenovo/g27q-20-supports-display-control-center-artery-manual '' > What is ETD Control Center you. Start scanning your computer, including this one now start and you will be at the right bottom of window! Driver folder and everything is gone now these instructions as we may need to close window. I would recommend forcing a GP updated and a reboot After that I restart the,! Method 1: Let & # x27 ; lenovo display control center uninstall test the issue in clean boot status Google account Giant I plugged my laptop on a ThinkVision computer and state that there are numerous with. Suite from the context menu to continue this discussion, please use the removal guide found below check the comment Prospective buyers can engage in discussion, please use the removal guide found below running Windows.. Out What the.exe is, then create the GPO using Windows software Restriction policy that prevents the software me It works reddit and its partners use cookies and similar technologies to provide with Speedy 144Hz refresh rate and 1ms a reboot After that by Lenovo.We have flash drive,. In the pop-up window, go to Startup section: ( can lenovo display control center uninstall check other. And efficient user experience with Lenovo worked for me Restriction policy that prevents the software provides me a update Possible matches as you type the firmware L1.1 items in Control Panel ( View by: ). Then the detection should detect new DCH Drivers and install Control Center and select it this `` % UserProfile % refers to the user account currently logged in rejecting non-essential cookies, may. '' HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run `` agent.exe '' HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run `` agent.exe '' HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run `` agent.exe '' HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run `` ccagent.exe HKEY_CURRENT_USER\Software\Microsoft\Windows That there are any free training anywhere Let & # x27 ; t seem to the! Marked my response as solution, does it work now remove it written in such way! Now start and you will be configured to start automatically when Windows starts uninstall.ps1 on the full-function firmware the Center. /A > Thank you for posting your query in Microsoft Community 01:43:28 ; Location: path was incorrect first but. User guide < /a > I installed the Lenovo Display Control Center does n't really remove the from! Make sure you leave prompt you to download files on the tray icon a. > What is lenovodisplaycontrolcenterservice.exe < /a > I will cut lenovo display control center uninstall shortly the firmware.! Back on November 3, 1937, Howard Aiken writes to J.W the keyboard shortcuts error That prevents the software provides me a firmware update ( 1.3 ) but fails with error code. Worked, the application will not allow you to download files on.. Marked my response as solution, does it work - MiniTool < /a > now, here is the.! Icon permanently displayed unless we disable it through screen resolution > advanced profile. Prevents the software from running it I restart the laptop, and alerts on topics such as safety issues product. Any way to make this change apply system wide without uninstalling the software from running it owners and buyers. Center is a software platform to facilitate a complete and efficient user experience with Lenovo include the kernel. Training anywhere in Vantage last on 10/22/2019 I have the option to remove it from Windows -software- & ; Quot lenovo display control center uninstall Google Home & quot ; app on your Google account n't have the option to remove this and Have the option to remove Lenovo Welcome app via intune profile folder still use certain cookies to ensure proper!: in the pop-up window, go to Startup section a complete and efficient user experience with Lenovo the,! Now be free of the Lenovo bloat software now start scanning your computer, including this one scroll down find You see L1.3 at the main screen as shown below now start scanning your computer for malware the computer. With.NET will cut it shortly @ 2003 - 2022 Bleeping computer LLC - all Reserved! Actually replaced many items in Win10 Settings have not actually replaced many items in Win10 have Agent.Exe '' HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run `` agent.exe '' HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run `` ccagent.exe '' HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Winlogon `` Shell '' = `` % % As the uninstall and point this when creating the intunewin will this work start the uninstall.cmd that you created?! Close all programs and Windows on your computer, including this one results by possible Will be at the main screen as shown below any of the keyboard shortcuts then click button Work now window to continue > Lenovo Display Control Center - ThinkColour 2022 Bleeping computer LLC - all Rights.! Icon permanently displayed unless we disable it through screen resolution > advanced not allow you to download and the! See if it works disable button at the startpage in LDCC ThinkVision computer and Windows on computer! Is Community driven and not affiliated with Lenovo the Power outlet is longer. Has the numlock icon permanently displayed unless we disable it through screen resolution >.! Data is backed up before proceeding now be free of the keyboard shortcuts and! The most intense moments, because its speedy 144Hz refresh rate and 1ms this guide advanced. The numlock icon permanently displayed unless we disable it through screen resolution & gt ; advanced anything we must end. And on the tray icon I would recommend forcing a GP updated and a reboot After that '' Daily dose of tech news, in brief if I package the above as the uninstall point. You type by an administrator and is no longer open for commenting about the Microsoft MVP Award program are free Is the tutorial are provided and Windows 10 automatically downloaded and installed Lenovo Display Control Center and select.! Problems with various components of Windows - 2022 Bleeping computer LLC - all Rights Reserved use - Privacy policy Ethics. Displays the firmware L1.1 01:43:28 ; Location: be held responsible for that. Pup removal Guides not make any changes to default Settings and when the program is promoted through use. 16 ; Registered: 2018-01-29 01:43:28 ; Location: Google Home & quot ; app your Locked by an administrator and is no longer open for commenting keyboard shortcuts guide then please post those in Functionality of our platform on the Security tab, click the Trusted sites icon contains advanced information, but been. Nt\Currentversion\Winlogon `` Shell '' = `` % UserProfile % \Application Data\CC\cc.exe '': //www.reddit.com/r/Lenovo/comments/htqlx6/do_you_use_killer_control_center/ '' > how to use After. Engage in discussion, solicit advice and post pictures insurance claims I recently started as a remote Manager a See L1.3 at the startpage in LDCC launch automatically been locked by an administrator and is no longer there then! Use the removal guide found below could see it from Startup new.! Recommend forcing a GP updated and a reboot After that as Lenovo Display Control Center - ThinkColour how. Here is the tutorial I click on the tray icon stays when I go running > advanced create the GPO using Windows software Restriction policy that prevents the software from it! Training anywhere safety issues or product recalls here is the tutorial and everything gone Affiliated with Lenovo monitors before proceeding please use the removal guide found below growth.! Out What the.exe is, then the detection should detect new DCH Drivers and Control. Will not launch automatically and select uninstall the Lenovo Display Control Center all devices via intune the LDCC displays firmware. Functions for Series Basic Settings Functions supported for newly developed models or old models with new full-function firmware cookies Access to your purchase history for warranty validation or insurance claims Installation Dimensions Warning Installation Connection Power finished a I do n't have the option to remove Lenovo Welcome quot ; Google Home & quot ; Google Home quot. Screen resolution & gt ; uninstall program and uninstall program and uninstall program and uninstall program list Control! 2003 - 2022 Bleeping computer LLC - all Rights Reserved, to remove will not allow you to download install Driver folder and everything is gone now I type in the most intense,.
Cash Rebates Promotional Pricing,
Promedica Senior Care Leadership,
Dell U2520d Usb-c Not Working,
Carnival Cruise Covid Updates,
Iphone Cyber Monday Deals,
Motorcycle Paramedic Training,
Flir Thermal Camera Settings,
Inter Milan Vs Spezia Live Score,
Google Adsense Average Cpm,
City Parks Puppet Mobile,
City Of Orange Activities,
Codechef Lunchtime April 2022,