I would like to export all the user accounts and permissions we have to a csv or such. I do not see anyway in the web interface to do this. Anyone have any direction on this? Thanks
you can query the sw sql db directly, in the dbo.accounts table and save those to csv if you want. The passwords are encrypted but it should give you everything else you need.
Here is the query I used to get logins and permissions -
select [AccountID], [AllowAdmin], [AllowNodeManagement], [AllowCustomize],[AllowReportManagement],[AllowAlertManagement],[AllowUnmanage],
[AllowDisableAction],[AllowDisableAlert],[AllowDisableAllActions],[AlertCategory],[AllowViewCopCheck]from Netperfmon.dbo.Accounts;