0

Internet Service Provider

Hello,

Is there any plan to be able to obtain the Internet Service Provider for endpoints?  This would be helpful information for troubleshooting issues for employees working from home - along with the wifi info that is currently being captured with version 6.1.1.

Thanks

1 comment

  • 0
    Avatar
    Dominik Britz

    Hi Stephen,

    Thanks for the suggestion. I'll discuss it with my team and get back to you.

    In the meantime, you could leverage uberAgent's custom script engine and collect the information through a third-party service like ipinfo.io. Below is an example script written in PowerShell.

    $ISP = (Invoke-RestMethod http://ipinfo.io/json).org

    $Output = @{}

    $Output = @{
    'ISP' = "`"$ISP`""
    }
    Write-Output $($Output.Keys.ForEach({"$_=$($Output.$_)"}) -join ' ')

     

Please sign in to leave a comment.