Welcome.

If you post code, please use the ‘Insert Code’ button. Please and thank you!

I had to do both things to get it to work

  1. install the plugin
  2. Set connect to true
  3. set reg key to 3

Make sure to run it as admin

$xl=New-Object -ComObject excel.application
$COMAddIns = $xl.Application.COMAddIns | where {$_.Description -eq 'Azure DevOps Add-in'}
$COMAddIns | foreach{$_.Connect=$true}
Set-ItemProperty HKCU:\Software\Microsoft\Office\Excel\Addins\$($COMAddIns.ProgId) -Name "LoadBehavior" -Value 3 -Verbose
$xl.Quit()