Security

 View Only
  • 1.  Clearpass Intune "syncAllSchedule": "*/60 * * * *", command

    Posted Dec 06, 2023 05:50 AM

    hi Airheads,

    does anyone have info on the parameters in the  "syncAllSchedule": "*/60 * * * *", configuration of Intune extension ?

    i'm looking for a definitve explanation of the intervals . as far as i know the one i have entered is sync every 60 minutes ?

    cheers

    Pete



  • 2.  RE: Clearpass Intune "syncAllSchedule": "*/60 * * * *", command
    Best Answer

    Posted Dec 07, 2023 07:18 AM

    Documentation states that it is in CRON format, which is genericly used on most UNIX based systems.

    The fields stand for: minute | hour | day(month) | month | day(week)

    In : "*/60 * * * *":


    */60 means every 60 minutes

    * = at every hour

    * = on any day

    * = any month

    * = any day of week

    This could have been written as well as "0 * * * *".

    If you want to run twice an hour on minute 10 and 40, it would be: "10,40 * * * *"

    I found this interactive page where you can test crontab entries.



    ------------------------------
    Herman Robers
    ------------------------
    If you have urgent issues, always contact your Aruba partner, distributor, or Aruba TAC Support. Check https://www.arubanetworks.com/support-services/contact-support/ for how to contact Aruba TAC. Any opinions expressed here are solely my own and not necessarily that of Hewlett Packard Enterprise or Aruba Networks.

    In case your problem is solved, please invest the time to post a follow-up with the information on how you solved it. Others can benefit from that.
    ------------------------------



  • 3.  RE: Clearpass Intune "syncAllSchedule": "*/60 * * * *", command

    Posted Dec 07, 2023 09:10 AM

    thanks Herman for getting back