[REPO] Windows 10 TELEMETRY REPOSITORY

Discussion in 'Windows 10' started by Yen, Aug 4, 2015.

  1. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,601
    2,671
    60

    What is your host OS for disabling telemetry... Windows 10 or 11?
    Did you run disable_telemetry script as trusted installer?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. sevenlin007

    sevenlin007 MDL Novice

    Nov 22, 2017
    10
    8
    0
    run_as_trustedinstaller
    host OS:win11 26100
    run_as_trustedinstaller
     
  3. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,601
    2,671
    60
    #2503 freddie-o, Feb 28, 2025
    Last edited: Mar 1, 2025

    Use Windows 10 as host OS -- Windows 11 restricts you from disabling some features
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,601
    2,671
    60
    #2505 freddie-o, Mar 3, 2025
    Last edited: Mar 3, 2025
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. mdlnomad

    mdlnomad MDL Novice

    Nov 29, 2021
    3
    0
    0
    #2506 mdlnomad, Mar 3, 2025
    Last edited: Mar 3, 2025
    In the Microsoft Catalog, the Feb 11 CU for 21H2 only shows Windows 10 LTSB for the supported product, would this be an issue? The June 11 update shows support for Windows 10, version 1903 and later, Windows 10 LTSB, which is why I went with that, as I am trying to cover all my bases with getting this to work.
    There is a Feb 11 for 22H2, but would I then need to include the 22H2 enablement package under rem == add cumulative updates = in the disable_telemetry.cmd?

    I did not backup, rename and restore licenses. I did not see this step mentioned in the readme or the main post of the Reconstruction thread.
    I would like to try it, which cmd file would I include those lines in? And should those lines be pasted before a specific line?
    Edit: found a post where you mentioned this step. Scanning through the code you pasted, I assume I just have to throw the code that into its own .cmd and run it, and it will do the backup, renaming, run the EntG conversion process, and then restore. I will give it a go.

    Thank you
     
  6. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,601
    2,671
    60
    #2507 freddie-o, Mar 3, 2025
    Last edited: Mar 3, 2025

    KB5051974 (February 11, 2025) is to update to builds 19044.5487 and 19045.5487 so it's also for LTSC 2021
    You can use 21H2 or 22H2 enablement package (Personally I stick with 21H2) and yes, add it when adding CU




    Just add the code to your script
    Backup licenses folders before reconstructing to EnterpriseG then restore the renamed licenses folders after reconstruction (before disabling telemetry)

    Code:
    rem == backup and rename licenses folders ==
    xcopy /S /E /I /H /R /Y /J mount\Windows\System32\en-US\Licenses temp\Licenses
    ren temp\Licenses\_Default\Professional EnterpriseG
    ren temp\Licenses\OEM\Professional EnterpriseG
    ren temp\Licenses\Volume\Professional EnterpriseG
    
    rem == install enterpriseG and remove professional edition ==
    dism /scratchdir:temp /image:mount /apply-unattend:sxs\1.xml
    
    rem == add language pack ==
    dism /scratchdir:temp /image:mount /add-package:lp\update.mum
    
    rem == add enterpriseG licenses ==
    rd /s /q mount\Windows\System32\en-US\Licenses
    xcopy /E /C /H /R /Y /I temp\Licenses mount\Windows\System32\en-US\Licenses
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,601
    2,671
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. mdlnomad

    mdlnomad MDL Novice

    Nov 29, 2021
    3
    0
    0
    #2509 mdlnomad, Mar 3, 2025
    Last edited: Mar 4, 2025

    Edit:
    My head is spinning while I'm trying to do this with the flu.
    I finally figured it out and it worked as intended in VMs and bare metal.
    Thank you very much
     
  9. sevenlin007

    sevenlin007 MDL Novice

    Nov 22, 2017
    10
    8
    0
    E:\disable_telemetry_2025.02.27>rem == remove sechealthui and dependency appx packages ==

    E:\disable_telemetry_2025.02.27>for /F "tokens=2 delims=: " %i in ('dism /scratchdir:temp /image:mount /Get-ProvisionedAppxPackages | find /I "PackageName"') do (dism /scratchdir:temp /image:mount /Remove-ProvisionedAppxPackage /Packagename:%i )

    E:\disable_telemetry_2025.02.27>(dism /scratchdir:temp /image:mount /Remove-ProvisionedAppxPackage /Packagename:Microsoft.SecHealthUI_1000.26100.1.0_x64__8wekyb3d8bbwe )

    部署映像服务和管理工具
    版本: 10.0.26100.1150

    映像版本: 10.0.26100.3323


    错误: 126

    找不到指定的模块。

    可以在 X:\windows\Logs\DISM\dism.log 上找到 DISM 日志文件

    E:\disable_telemetry_2025.02.27>(dism /scratchdir:temp /image:mount /Remove-ProvisionedAppxPackage /Packagename:Microsoft.VP9VideoExtensions_1.2.2.0_x64__8wekyb3d8bbwe )

    部署映像服务和管理工具
    版本: 10.0.26100.1150

    映像版本: 10.0.26100.3323


    错误: 126

    找不到指定的模块。

    可以在 X:\windows\Logs\DISM\dism.log 上找到 DISM 日志文件
     
  10. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,601
    2,671
    60

    :good3: Just thought I'd mention... It's best to do reconstruction as trustedinstaller
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,601
    2,671
    60


    Using Windows 11 26100 as Host OS?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. sevenlin007

    sevenlin007 MDL Novice

    Nov 22, 2017
    10
    8
    0
    Windows 10 all ok,tks!
     
  13. wuliyen

    wuliyen MDL Novice

    Oct 6, 2009
    34
    55
    0
    SecHealthUI, 26100, some versions cannot be uninstalled and can only be forcibly deleted
     
  14. catosis

    catosis MDL Junior Member

    Apr 24, 2022
    94
    24
    0
    @freddie-o Is this the latest of your scripts? Do you still recommend it for Win10 LTSC 2021? Or something else?
    I'm looking for offline fix to disable Windows Defender and minimize unnecessary system activity, not total telemetry disabler.
     
  15. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,601
    2,671
    60


    You can just use the parts of the script that disable Defender.
    With regards to minimizing unecessary system activity, it depends on what you consider unecessary system activity. You'll have to refer to other threads on that topic.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. sergey130270

    sergey130270 MDL Senior Member

    May 15, 2014
    286
    345
    10
    Hi! Take a look, maybe this will suit you.
    @echo Off

    rem Disable Windows-Recall
    dism.exe /online /disable-feature /FeatureName:recall

    rem Disable WindowsAI
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsAI" /v "DisableAIDataAnalysis" /t reg_dword /d "1" /f
    reg add "HKCU\Software\Microsoft\Windows\Shell\Copilot" /v "IsCopilotAvailable" /t reg_dword /d "0" /f
    reg add "HKCU\Software\Microsoft\Windows\Shell\Copilot\BingChat" /v "IsUserEligible" /t reg_dword /d "0" /f
    reg add "HKCU\Software\Policies\Microsoft\Windows\WindowsCopilot" /v "TurnOffWindowsCopilot" /t reg_dword /d "1" /f
    reg add "HKCU\Software\Microsoft\Windows\Shell\Copilot" /v "CopilotDisabledReason" /t REG_SZ /d "FeatureIsDisabled" /f

    rem Disabling Advertising Identifier and Ads
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo" /v "Enabled" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Microsoft\PolicyManager\current\device\Bluetooth" /v "AllowAdvertising" /t REG_DWORD /d "0" /f

    rem Disabling all types of Windows telemetry
    reg add "HKLM\SYSTEM\CurrentControlSet\Services\DiagTrack" /v "Start" /t REG_DWORD /d "4" /f
    reg add "HKLM\SYSTEM\CurrentControlSet\Services\dmwappushservice" /v "Start" /t REG_DWORD /d "4" /f
    reg add "HKLM\SYSTEM\ControlSet001\Control\WMI\Autologger\Circular Kernel Context Logger" /v "Start" /t REG_DWORD /d "0" /f
    reg add "HKLM\SYSTEM\ControlSet001\Control\WMI\Autologger\AppModel" /v "Start" /t REG_DWORD /d "0" /f
    reg add "HKLM\SYSTEM\ControlSet001\Control\WMI\Autologger\SQMLogger" /v "Start" /t REG_DWORD /d "0" /f
    reg add "HKLM\SYSTEM\CurrentControlSet\Control\WMI\Autologger\Diagtrack-Listener" /v "Start" /t REG_DWORD /d "0" /f
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments" /v "SaveZoneInformation" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack" /v "DisableAutomaticTelemetryKeywordReporting" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack" /v "TelemetryServiceDisabled" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack\TestHooks" /v "DisableAsimovUpload" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\PerfTrack" /v "Disabled" /t REG_DWORD /d "1" /f

    rem Disabling data collection via scheduler events
    schtasks /change /tn "Microsoft\Windows\Maintenance\WinSAT" /disable
    schtasks /change /tn "Microsoft\Windows\Autochk\Proxy" /disable
    schtasks /change /tn "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" /disable
    schtasks /change /tn "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser Exp" /disable
    schtasks /change /tn "Microsoft\Windows\Application Experience\ProgramDataUpdater" /disable
    schtasks /change /tn "Microsoft\Windows\FileHistory\File History (maintenance mode)" /disable
    schtasks /change /tn "Microsoft\Windows\Application Experience\StartupAppTask" /disable
    schtasks /change /tn "Microsoft\Windows\PI\Sqm-Tasks" /disable
    schtasks /change /tn "Microsoft\Windows\NetTrace\GatherNetworkInfo" /disable
    schtasks /change /tn "Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /disable
    schtasks /change /tn "Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask" /disable
    schtasks /change /tn "Microsoft\Windows\Customer Experience Improvement Program\UsbCeip" /disable
    schtasks /change /tn "Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticResolver" /disable
    schtasks /change /tn "Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector" /disable
    schtasks /change /tn "Microsoft\Windows\MemoryDiagnostic\ProcessMemoryDiagnosticEvents" /disable
    schtasks /change /tn "Microsoft\Windows\MemoryDiagnostic\RunFullMemoryDiagnostic" /disable
    schtasks /change /tn "Microsoft\Windows\Windows Error Reporting\QueueReporting" /disable
    schtasks /change /tn "Microsoft\Windows\Speech\SpeechModelDownloadTask" /disable
    schtasks /change /tn "Microsoft\Office\Office ClickToRun Service Monitor" /disable

    rem Disabling the collection of application usage statistics
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" /v "AllowTelemetry" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry" /t REG_DWORD /d "0" /f
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "Start_TrackProgs" /t REG_DWORD /d "0" /f

    rem Disable hidden background speech synthesis update
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Speech" /v "AllowSpeechModelUpdate" /t REG_DWORD /d "0" /f

    rem Disabling hidden system monitoring
    reg add "HKLM\SYSTEM\CurrentControlSet\Services\CDPUserSvc" /v "Start" /t REG_DWORD /d "4" /f

    rem Отключение сбора и отправки данных рукописного ввода
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\TabletPC" /v "PreventHandwritingDataSharing" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\HandwritingErrorReports" /v "PreventHandwritingErrorReports" /t REG_DWORD /d "1" /f
    reg add "HKCU\Software\Microsoft\Input\TIPC" /v "Enabled" /t REG_DWORD /d "0" /f

    REM ;Отключить сбор данных InPrivate
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Internet Explorer\Safety\PrivacIE" /v "DisableLogging" /t REG_DWORD /d "1" /f

    REM ; Отключить советы и рекомендации от МС
    reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Privacy" /v "TailoredExperiencesWithDiagnosticDataEnabled" /t REG_DWORD /d "0" /f

    REM ; Отключить персонализацию рукописного ввода
    reg add "HKCU\SOFTWARE\Microsoft\Personalization\Settings" /v "AcceptedPrivacyPolicy" /t REG_DWORD /d "0" /f

    REM ; Отключить возможность участия в программе по улучшению справки
    reg add "HKCU\SOFTWARE\Policies\Microsoft\Assistance\Client\1.0" /v "NoExplicitFeedback" /t REG_DWORD /d "1" /f
    reg add "HKCU\SOFTWARE\Policies\Microsoft\Assistance\Client\1.0" /v "NoImplicitFeedback" /t REG_DWORD /d "1" /f

    rem Disable experimentation to study user preferences or device behavior
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\PreviewBuilds" /v "EnableConfigFlighting" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\PreviewBuilds" /v "EnableExperimentation" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\PreviewBuilds" /v "AllowBuildPreview" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Microsoft\PolicyManager\current\Device\System" /v "AllowExperimentation" /t REG_DWORD /d "0" /f

    rem Disable diagnostics & feedback
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "DisableEnterpriseAuthProxy" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "DoNotShowFeedbackNotifications" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "DisableOneSettingsDownloads" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowCommercialDataPipeline" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowDesktopAnalyticsProcessing" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowUpdateComplianceProcessing" /t REG_DWORD /d 0 /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowWUfBCloudProcessing" /t REG_DWORD /d 0 /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowDeviceNameInTelemetry" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" /v "AllowTelemetry" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" /v "MaxTelemetryAllowed" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" /v "MicrosoftEdgeDataOptIn" /t REG_DWORD /d "0" /f
    reg add "HKCU\Software\Software\Microsoft\Windows\CurrentVersion\SystemSettings\AccountNotifications" /v "DisableAccountNotifications" /t REG_DWORD /d "1" /f
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "Start_IrisRecommendations" /t REG_DWORD /d "0" /f
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "Start_AccountNotifications" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Microsoft\PolicyManager\default\System\AllowTelemetry" /v "value" /t REG_DWORD /d "0" /f
    reg add "HKCU\Software\Microsoft\Siuf\Rules" /v "NumberOfSIUFInPeriod" /t REG_DWORD /d "0" /f
    reg add "HKCU\Software\Microsoft\Siuf\Rules" /v "PeriodInNanoSeconds" /t REG_DWORD /d "0" /f

    rem Disable cloud content
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v "DisableConsumerAccountStateContent" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v "DisableSoftLanding" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d "1" /f

    rem Restrict internet communication
    reg add "HKLM\SOFTWARE\Policies\Microsoft\InternetManagement" /v "Customer Experience Improvement Program" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoPublishingWizard" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoInternetOpenWith" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform" /v "NoGenTicket" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Messenger\Client" /v "CEIP" /t REG_DWORD /d "2" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\SQMClient\Windows" /v "CEIPEnable" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\PCHealth\ErrorReporting" /v "DoReport" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting" /v "Disabled" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\EventViewer" /v "MicrosoftEventVwrDisableLinks" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Registration Wizard Control" /v "NoRegistration" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Internet Explorer\SQM" /v "DisableCustomerImprovementProgram" /t REG_DWORD /d 1 /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting" /v "DontSendAdditionalData" /t REG_DWORD /d 1 /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting" /v "LoggingDisabled" /t REG_DWORD /d 1 /f

    rem Disable advertising info and accessing my language list
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AdvertisingInfo" /v "DisabledByGroupPolicy" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableCdp" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo" /v "Enabled" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce" /v "HttpAcceptLanguageOptOut" /t REG_SZ /d "reg add \"HKCU\Control Panel\International\User Profile\" /v \"HttpAcceptLanguageOptOut\" /t REG_DWORD /d \"1\" /f" /f

    rem Disable Remote Assistance:
    reg add "HKLM\SYSTEM\CurrentControlSet\Control\Remote Assistance" /v "fAllowToGetHelp" /t REG_DWORD /d "0" /f

    rem Disable activity history
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableActivityFeed" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "PublishUserActivities" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "UploadUserActivities" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "AllowClipboardHistory" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "AllowCrossDeviceClipboard" /t REG_DWORD /d "0" /f

    rem Disabling Windows Event Logging
    reg add "HKLM\SYSTEM\CurrentControlSet\Services\diagnosticshub.standardcollector.service" /v "Start" /t REG_DWORD /d "4" /f

    REM ; Отключить автозапуск диктора
    reg add "HKCU\Control Panel\Accessibility\SlateLaunch" /v "LaunchAT" /t REG_DWORD /d "0" /f
    reg add "HKCU\Control Panel\Accessibility\SlateLaunch" /v "ATapp" /t REG_SZ /d "" /f

    exit