Skip to content

Additional telemetry blocking #291

Open
@jddcef

Description

Hi,

Should the script not disable some of these telemetry items?:

V-220826

The Application Compatibility Program Inventory must be prevented from collecting data and sending the information to Microsoft
https://stigviewer.com/stig/windows_10/2021-03-10/finding/V-220826
echo | set /p=Disable Windows Customer Experience Improvement Program 
reg add "HKLM\SOFTWARE\Policies\Microsoft\SQMClient\Windows" /v "CEIPEnable" /t REG_DWORD /d 0 /f > nul
reg add "HKLM\SOFTWARE\Policies\Microsoft\SQMClient" /v "CorporateSQMURL" /t REG_SZ /d "0.0.0.0" /f > nul
echo [OK]

echo | set /p=Disable Application Telemetry 
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v "AITEnable" /t REG_DWORD /d 0 /f > nul
echo [OK]

echo | set /p=Disable Inventory Collector 
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v "DisableInventory" /t REG_DWORD /d 1 /f > nul
echo [OK]

echo | set /p=Disable Steps Recorder 
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v "DisableUAR" /t REG_DWORD /d 1 /f > nul
echo [OK]

Or the one's from this issue that seems to be acknowledged but never implemented?

Originally posted by @tumpio in #4 (comment)

Some projects that do similar:

https://github.com/madbomb122/Win10Script/blob/84a604db3e2d8e1b80a1fa19eed80755e54e7ce5/Win10-Menu.ps1#L1663

https://github.com/undergroundwires/privacy.sexy

Thanks for the awesome script by the way.

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions