Skip to content

Commit c2b9b6b

Browse files
Web rtc updater (#43)
* Update Get-AVDW365Gateways.ps1 Changed URL to GCCH JSON Download * Squashed commit of the following: commit 33f3d0b Author: Donna Ryan <100233767+DonnaRyanMicrosoft@users.noreply.github.com> Date: Wed Mar 26 15:17:12 2025 -0400 Initial Commit Includes both detection and remediation script, plus readme.md files * Bug Fix Fixed version detection bug, renamed file to remove version number * Removed unnecessary commented lines Removed unnecessary commented lines. Those should not have been included * Update WebRTC Auto Updater/Detect - WebRTC - Detection Script.ps1 Co-authored-by: kennywangms <101378737+kennywangms@users.noreply.github.com> Signed-off-by: Donna Ryan <100233767+DonnaRyanMicrosoft@users.noreply.github.com> * Update WebRTC Auto Updater/Detect - WebRTC - Detection Script.ps1 Co-authored-by: kennywangms <101378737+kennywangms@users.noreply.github.com> Signed-off-by: Donna Ryan <100233767+DonnaRyanMicrosoft@users.noreply.github.com> * Fix for bug in WebRTC 1.54.2408.19001 --------- Signed-off-by: Donna Ryan <100233767+DonnaRyanMicrosoft@users.noreply.github.com> Co-authored-by: kennywangms <101378737+kennywangms@users.noreply.github.com>
1 parent 659bc5a commit c2b9b6b

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

WebRTC Auto Updater/Detect - WebRTC - Detection Script.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ function get-installedRTCver {
2929
if ((test-path -Path 'Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\AddIns\WebRTC Redirector\') -eq $true) {
3030

3131
$version = (Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\AddIns\WebRTC Redirector\')
32+
if ($version.CurrentVersion -eq "1.53.2408.19001"){$version.CurrentVersion = "1.54.2408.19001"}
3233
$string = "The currently installed version of the WebRTC client is " + $version.currentversion
3334
update-log -Data $string -Class Information -output both
3435
return $version.currentversion

WebRTC Auto Updater/Remediate - WebRTC - Remediation Script.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ function get-CurrentRTCver {
213213
function get-installedRTCver {
214214
if ((test-path -Path 'Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\AddIns\WebRTC Redirector\') -eq $true) {
215215
$version = (Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\AddIns\WebRTC Redirector\')
216+
if ($version.CurrentVersion -eq "1.53.2408.19001"){$version.CurrentVersion = "1.54.2408.19001"}
216217
$string = "The currently installed version of the WebRTC client is " + $version.currentversion
217218
update-log -Data $string -Class Information -output both
218219
return $version.currentversion

0 commit comments

Comments
 (0)