Looking for a bigfix script to uninstall MS team Classic for All user

Hello,

I am looking for a BigFix script to uninstall MS team classic for all user on the system. i am still novice and would appreciate any suggestion.

Thanks!

You can explore below methods:

https://bigfix.me/fixlet/details/26840

i found this PowerShell script to uninstall MS Team classic

Uninstall app

    $proc = Start-Process $TeamsUpdateExePath "-uninstall -s" -PassThru
    $proc.WaitForExit()

the issue now is how to I run it with BigFix console as a regular user with no admin right ?