A new Flexera Community experience is coming on November 25th. Click here for more information.
I created a Service Account but meant to create an Interactive Account. How do I change this?
Changing a Service Account into an Interactive Account (and vice versa) is currently not possible without running an SQL query.
According to the online help available via the ? icon in the top-right of the Web UI, the difference between a Service and Interactive Account is the Web Service role is assigned automatically to a Service Account. You can read this by navigating down to System Menu -> Accounts -> Creating an Account.
Creating a Service Account, it can be seen that this is assigned the Web Service role and that the Interactive column of dbo.ComplianceOperator is set to 0.
Follow these steps to change the account into an Interactive Account (and vice versa by changing the SET Interactive statement to 0):DECLARE @OperatorLogin varchar(255) SET @OperatorLogin = 'DOMAIN\username' UPDATE dbo.ComplianceOperator SET Interactive = 1 WHERE OperatorLogin = @OperatorLogin
Sep 10, 2018 08:10 PM