
Kieran Anson
Kilo Patron
Options
- Post History
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
12-13-2021 06:27 PM - edited 07-20-2025 12:11 PM
< Previous Article | Next Article > | |
Mapping data with RTE/IRE | Closing Off |
Introduction
Now that we have a working retrieval and transformation process for our Intune data, we can schedule this data to auto-load at regular intervals
Scheduled Data Import (IntegrationHub Data Retrieval)
Continuing on with the low-code approach to data retrieval via ServiceNow, we can setup the data stream process of retrieving data via a single schedule record.
- Via the application navigator search for scheduled imports and create a new record
- Set a name such as Microsoft Intune Computing
- Select the data source you created as part of the data retrieval article
- Select how often you wish data to bring in data (I recommend daily)
- Save the record and ensure it is active
- You're done!
Scheduled Data Import (Scripted Data Retrieval)
- Via the application navigator search for scheduled jobs and use the option under system definitions
- Create a new record and from the interceptor select Automatically run a script of your choosing
- Set the name, run frequency and time you wish
- Use the script below, ensuring the import table name, data source name and method match that of what you created
var utils = new IntuneUtils("u_intune_computer_device_imp" ,
"Intune Computer Device Imp" ,
"GET Computing Devices" ,
"deviceType eq 'desktop' or deviceType eq 'macMDM' or deviceType eq 'winEmbedded' or deviceType eq 'surfaceHub' or deviceType eq 'windowsRT'");
utils.run();
- 1,452 Views
Comments
snowolper
Tera Expert
- Mark as Read
- Mark as New
- Bookmark
- Permalink
- Report Inappropriate Content
10-05-2023
04:34 PM
For some reason, I'm only getting 49 assets at a time. I don't think pagination is working for me yet...