mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2026-06-14 19:36:31 +10:00
3404f185f1
Co-authored-by: ChrisTitusTech <7896101+ChrisTitusTech@users.noreply.github.com>
694 B
694 B
title, description
| title | description |
|---|---|
| Disable Powershell 7 Telemetry |
"WPFTweaksPowershell7Tele": {
"Content": "Disable Powershell 7 Telemetry",
"Description": "This will create an Environment Variable called 'POWERSHELL_TELEMETRY_OPTOUT' with a value of '1' which will tell Powershell 7 to not send Telemetry Data.",
"category": "Essential Tweaks",
"panel": "1",
"InvokeScript": [
"[Environment]::SetEnvironmentVariable('POWERSHELL_TELEMETRY_OPTOUT', '1', 'Machine')"
],
"UndoScript": [
"[Environment]::SetEnvironmentVariable('POWERSHELL_TELEMETRY_OPTOUT', '', 'Machine')"
],