Sohail_Tariq
You seems to know the MSI file. Could you clarify the changes from versions 4.4.41.0 (RecoveryTool.ps1):
Function IsNonUserSelectableOption
{
Param(
[Nullable[RepairAction]]$Selection
)
if ($Selection -eq [RepairAction]::SilentUpdate) { return $true }
return $false
}and in a newer packages 4.6.xx (RecoveryTool.ps1):
Function IsNonUserSelectableOption
{
Param(
[Nullable[RepairAction]]$Selection
)
if ($Selection -eq [RepairAction]::SilentUpdate) { return $true }
if ($Selection -eq [RepairAction]::Repair) { return $true }
return $false
}The line the team has added is now causing a problem that option #1 is not anymore available:
Transcript started, output file is C:\Users\Skype\AppData\Local\Packages\Microsoft.SkypeRoomSystem_8wekyb3d8bbwe\LocalState\Tracing\RecoveryTool\RecoveryTool-2020.10.29-17.45.53.log
[2] Reset
Please choose an option:
Or this is how it looks to me. If I remove that line, I get option [1] back to list. And this is how it looks without that line:
Transcript started, output file is C:\Users\Skype\AppData\Local\Packages\Microsoft.SkypeRoomSystem_8wekyb3d8bbwe\LocalState\Tracing\RecoveryTool\RecoveryTool-2020.10.29-18.43.22.log
[1] Repair
[2] Reset