Endpoint Protection Small Business Edition

 View Only
  • 1.  Find all clients in usermode

    Posted Dec 11, 2009 05:39 AM
    Hi Guys

    Is there any way I can find all clients there are in usermode, and easly convert these to Computer mode ?

    Thanks


  • 2.  RE: Find all clients in usermode
    Best Answer

    Posted Dec 11, 2009 05:54 AM
    You can use this tool to convert computer mode to usermode
    Changing Clients from Usermode to Computer Mode Batch file 


  • 3.  RE: Find all clients in usermode

    Posted Dec 11, 2009 06:18 AM
    You can run below command also


    UPDATE [sem5].[dbo].[SEM_CLIENT]
    SET [POLICY_MODE] = 1 WHERE [POLICY_MODE] = 0


    THIS WILL CHANGE THE POLICY_TYPE FORM USER_MODE TO COMPUTER_MODE
     


  • 4.  RE: Find all clients in usermode

    Posted Dec 11, 2009 06:28 AM
    For finding the computer in usermode in the database you can use following SQL command
    SELECT [POLICY_MODE] FROM [sem5].[dbo].[SEM_CLIENT] WHERE [POLICY_MODE] = 0 


  • 5.  RE: Find all clients in usermode

    Posted Dec 11, 2009 07:18 AM
    Awsome! Worked like a charm! Thanks !


  • 6.  RE: Find all clients in usermode

    Posted Dec 11, 2009 08:26 AM
    Happy to hear that your problem got solved.