Endpoint Security Complete

 View Only
  • 1.  Mobile Device Managment - Automation Policy

    Posted Oct 31, 2012 02:53 PM

    Hi All,

    I need to setup some kind of "automation" policy that moves enrolled eevices in the last day or so to specific Organizational Group.  I would like to use the device name as it contains the user's Active Directory Domain account and if I can match that to the OU the user account exist then I like to move the device to the OG I have already created for them.  Your help is greately appreciated.

    thanks.



  • 2.  RE: Mobile Device Managment - Automation Policy

    Posted Nov 02, 2012 09:17 AM

    To clarify..

    You want to move newly-enrolled mobile devices that have not yet been moved to an organizational group to the organizational group that corresponds to the enrolled user's Active Directory group?  How are you associating an organizational group to the user's Active Directory group -- are these exactly the same?



  • 3.  RE: Mobile Device Managment - Automation Policy

    Posted Nov 02, 2012 06:57 PM

    Hi mclemson,

    Yes.  Move newly-enrolled mobile devices to a Organizational Group (already created), not Active Directory Group.

    What I came up with is doing the following for each of the Departments:

    1. Created a Task, to move newly-enrolled devices to a Department Organizational Group

    2. Created new Automation Policy, using shared schedule (daily), which also uses the following SQL query and runs the Task I created before:

    SELECT c.[Guid], c.[Name], c.[CreatedDate]
    FROM RM_ResourceMobile c
    WHERE DateDiff( dd, c.[CreatedDate], GetDate() ) <= %days%
     

    This way, I can have an Administrator enroll devices on a certain day, then he or I can run the Automation Policy, which takes all newly-enrolled and moves them to the desired OG.

    would that work?

     



  • 4.  RE: Mobile Device Managment - Automation Policy

    Posted Nov 04, 2012 07:51 PM

    Yes, that's exactly what I was going to suggest after I confirmed what you were looking to do.