I'm trying to create a registry script that users can double click and it adds a 32-bit DWORD value to the registry.
The objective is to add EnableARIATelemetryFeature with a value of 0 to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\16.0\Lync
So far, I am able to do it in the Command Line which is REG ADD HKLM\Software\Microsoft\Office\16.0\Lync /v EnableARIATelemetryFeature /t REG_DWORD /d 0 /f
Can anyone translate it into a .Reg Script so Users can just double click?
Thanks! Krauser