@@ -408,30 +408,30 @@ Function SetP2PUpdateDisable {
408408 }
409409}
410410
411- # Stop and disable Diagnostics Tracking Service
411+ # Stop and disable Connected User Experiences and Telemetry (previously named Diagnostics Tracking Service)
412412Function DisableDiagTrack {
413- Write-Output " Stopping and disabling Diagnostics Tracking Service..."
413+ Write-Output " Stopping and disabling Connected User Experiences and Telemetry Service..."
414414 Stop-Service " DiagTrack" - WarningAction SilentlyContinue
415415 Set-Service " DiagTrack" - StartupType Disabled
416416}
417417
418- # Enable and start Diagnostics Tracking Service
418+ # Enable and start Connected User Experiences and Telemetry (previously named Diagnostics Tracking Service)
419419Function EnableDiagTrack {
420- Write-Output " Enabling and starting Diagnostics Tracking Service..."
420+ Write-Output " Enabling and starting Connected User Experiences and Telemetry Service ..."
421421 Set-Service " DiagTrack" - StartupType Automatic
422422 Start-Service " DiagTrack" - WarningAction SilentlyContinue
423423}
424424
425- # Stop and disable WAP Push Service
425+ # Stop and disable Device Management Wireless Application Protocol ( WAP) Push Service
426426Function DisableWAPPush {
427- Write-Output " Stopping and disabling WAP Push Service..."
427+ Write-Output " Stopping and disabling Device Management WAP Push Service..."
428428 Stop-Service " dmwappushservice" - WarningAction SilentlyContinue
429429 Set-Service " dmwappushservice" - StartupType Disabled
430430}
431431
432- # Enable and start WAP Push Service
432+ # Enable and start Device Management Wireless Application Protocol ( WAP) Push Service
433433Function EnableWAPPush {
434- Write-Output " Enabling and starting WAP Push Service..."
434+ Write-Output " Enabling and starting Device Management WAP Push Service..."
435435 Set-Service " dmwappushservice" - StartupType Automatic
436436 Start-Service " dmwappushservice" - WarningAction SilentlyContinue
437437 Set-ItemProperty - Path " HKLM:\SYSTEM\CurrentControlSet\Services\dmwappushservice" - Name " DelayedAutoStart" - Type DWord - Value 1
0 commit comments