Skip to content
This repository was archived by the owner on May 28, 2021. It is now read-only.

Commit ac7a141

Browse files
committed
Align DiagTrack and dmwappushservice service names with 1809 naming
1 parent 7017a38 commit ac7a141

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

Win10.psm1

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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)
412412
Function 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)
419419
Function 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
426426
Function 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
433433
Function 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

Comments
 (0)