Skip to content
View jorgeasaurus's full-sized avatar
πŸš€
πŸš€

Highlights

  • Pro

Block or report jorgeasaurus

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
jorgeasaurus/README.md

> jorgeasaurus

Endpoint Platform Engineer | Mobile Device Management | Automation Architecture

Enterprise-scale endpoint management through intelligent automation and strategic innovation.

Profile Views

Featured Projects

PowerShell module that bootstraps Microsoft Intune tenants with boilerplate configurations. .

Automated backup and restore toolkit for Microsoft Intune tenant configurations using GitHub Actions.

PowerShell-based solution for backing up and restoring Jamf Pro configurations, ensuring business continuity for macOS management.

Interactive Microsoft Graph search tool using console GUI for various Microsoft 365 and Azure AD object types.

Professional Certifications

Microsoft 365 Endpoint Administrator Microsoft 365 Administrator Expert Jamf 200 Certified Jamf 100 Associate

πŸ› οΈ Tech Stack

Languages & Scripting

PowerShell Bash

Platform & Device Management

Microsoft Intune Jamf SCCM Azure

DevOps & Automation

GitHub Actions Docker Jenkins Git

Security & Monitoring

Microsoft Defender Splunk

Operating Systems

Windows macOS Linux iOS Android

Recent Publications

Connect

LinkedIn Blog Portfolio


"Automating the enterprise, one endpoint at a time."

πŸ“Š GitHub Stats

πŸ”₯ Most Popular Repositories

πŸ“ˆ Activity Trends

πŸ† Top Cloned Repositories (Last 14 days)

Repository Total Clones
IntuneDocsAutomation 658
jorgeasaurus 313
IntuneHydrationKit 253

πŸ“… Recent Activity

πŸš€ Recently Updated Repositories

Repository Last Updated Language Stars
jorgeasaurus Today ⭐ 1
FleetDM-PowerShell Today ⭐ 7
IntuneDocsAutomation Today ⭐ 6
DevReadme Today ⭐ 4
IntuneHydrationKit 2 days ago ⭐ 85

πŸ“Š Auto-updated with PowerShell & GitHub Actions

Pinned Loading

  1. PsJamfBackupRestore PsJamfBackupRestore Public

    A PowerShell-based utility for backing up and restoring JAMF Pro configurations through the JAMF API.

    PowerShell 6

  2. MgConsoleGuiGraphSearch MgConsoleGuiGraphSearch Public

    Interactive Microsoft Graph search tool using console GUI for various Microsoft 365 and Azure AD object types.

    PowerShell 49 8

  3. JamfAssignmentChecker JamfAssignmentChecker Public

    Checks JAMF Pro assignments for computers, users, and groups.

    PowerShell 6 2

  4. IntuneHydrationKit IntuneHydrationKit Public

    Quick way to import starter configs into Intune

    PowerShell 85 8

  5. This PowerShell code retrieves the c... This PowerShell code retrieves the current user's Microsoft Graph API access token by making a GET request to the /me endpoint and extracting the Bearer token from the Authorization header of the request.
    1
    function Get-MgToken {
    2
      $Parameters = @{
    3
        Method     = "GET"
    4
        URI        = "/v1.0/users?$top=1"
    5
        OutputType = "HttpResponseMessage"
  6. Retrieves upcoming rocket launches f... Retrieves upcoming rocket launches from the RocketLaunch.Live API.
    1
    function Get-NextRocketLaunch {
    2
        <#
    3
        .SYNOPSIS
    4
            Retrieves upcoming rocket launches from the RocketLaunch.Live API.
    5