But maybe that's not the case and it's just an app problem. See error 0x80190001 Does anyone else have any advice? I used the Classic Teams Installer MSI. It gives the same error code!!!
Hi @freddie-o, I recently made a new image based on win10 22H2 with the latest April 22 feature update from UUP. Building EntG + your scripts is smooth sailing thanks to your guidance from before. I'm just wondering, how often is your OS making DNS queries to the following (if at all) - I've already tweaked the group policies from the main post in the telemetry repo thread: cxcs . microsoft . net www . bing . com ctldl . windowsupdate . com displaycatalog . mp . microsoft . com Can I limit / eliminate these calls on an OS level? I install all the cab files from the CU. By including all of them, am I increasing the surface area for the OS to make calls to those domains? Thank you
I use Symantec Endpoint Protection to handle all my incoming and outgoing traffic https://forums.mydigitallife.net/threads/discussion-symantec-endpoint-protection.51100/ I configure Symantec to "Allow only application traffic" and "Prompt before allowing outbound traffic" https://forums.mydigitallife.net/th...lemetry-repository.63874/page-73#post-1724179 Anything beyond that, I don't bother with anymore
Can you please send me a link where I can find the relevant scripts or programs to install Store and Microsoft Teams?
I always get an error message saying that it cannot be found!!! I started the program with administrator rights.
I did give this a go a while back to get familiar with the process, but will revisit it again as an option, thanks. On another note, I've been experiencing cloud flare errors related to an unsynced clock and one of the known ways to resolve this is to get windows to perform the auto sync. If I wanted to keep that feature, would I only have to remove the lines shown below in the disable_telemetry.cmd? Or are there other lines I have to remove, as well? rem == prevent windows from setting the time automatically == reg add "HKLM\SOFTHIVE\Policies\Microsoft\W32time\TimeProviders\NtpClient" /v "Enabled" /t REG_DWORD /d "0" /f rem == prevent Windows from setting the time automatically == reg add "HKLM\SYSHIVE\ControlSet001\Services\W32Time\Parameters" /v "Type" /t REG_SZ /d "NoSync" /f Thank you
@freddie-o : I saw your telemetry scripts. Hard work Will you suggest that with minor changes they can be run from a windows 10 PE on to an offline windows 10 Iot Enterprise LTSC 2021 installation directory as well ? Well in that case, will changes be applied to the already created user too OR reg load NTUSER from the already created user too ? What do you suggest ? Thanks.
I don't know if the script will disable telemetry as thoroughly as intended on an already installed OS Another thing is, it's best to do it offline before installing Windows because once you connect to the internet, Windows sends telemetry
Updated WINDOWS 11 disable_telemetry scripts https://forums.mydigitallife.net/th...lemetry-repository.63874/page-66#post-1686849 Disabled more AI Telemetry in Windows 11 Code: rem == disable AI data analysis and Copilot == reg add "HKLM\SOFTHIVE\Policies\Microsoft\Windows\WindowsAI" /v "AllowRecallEnablement" /t REG_DWORD /d "0" /f reg add "HKLM\SOFTHIVE\Policies\Microsoft\Windows\WindowsAI" /v "DisableClickToDo" /t REG_DWORD /d "1" /f rem == prevent SystemApps with telemetry from getting deployed == Client.CoreAI rem == keep disabled apps from returning == reg add "HKLM\SOFTHIVE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Deprovisioned\MicrosoftWindows.Client.CoreAI_cw5n1h2txyewy" /f rem == disable AI data analysis and Copilot == reg add "HKLM\NTUSER\SOFTWARE\Policies\Microsoft\Windows\WindowsAI" /v "AllowRecallEnablement" /t REG_DWORD /d "0" /f reg add "HKLM\NTUSER\SOFTWARE\Policies\Microsoft\Windows\WindowsAI" /v "DisableClickToDo" /t REG_DWORD /d "1" /f