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 is supported. This note will only be visible to you.
Report abuse

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

Report abuse
jorgeasaurus/README.md
Microsoft MVP - PowerShell

> jorgeasaurus

Endpoint Platform Engineer · Microsoft MVP - PowerShell

Building practical automation for Intune, Microsoft Graph, Jamf, and fleet operations.

LinkedIn Blog


Profile Views

Featured Work

Project Why it matters Focus
Intune Hydration Kit Module PowerShell module that hydrates fresh Intune tenants with repeatable baseline configuration. PowerShell · Intune
Intune Hydration Kit Webapp Web-based version of the Intune Hydration Kit experience. TypeScript · Intune
InTUI Terminal UI for managing Microsoft Intune resources through Microsoft Graph. PowerShell · Graph
MgConsoleGuiGraphSearch Interactive console search for Microsoft 365, Entra ID, and Graph objects. PowerShell · M365
graphexplorerplus Power-user alternative to Microsoft Graph Explorer for API discovery. TypeScript · Graph
WingetIntunePublisher Automates WinGet app packaging and deployment to Intune. PowerShell · WinGet
Intune-Snapshot-Recovery Backup and restore pipeline for Intune tenant configuration. PowerShell · GitHub Actions
XpMdmExplorer Cross-platform TUI for exploring Intune and Jamf Pro objects. PowerShell · Jamf
FleetDM-PowerShell Native PowerShell interface for FleetDM inventory, policy, and host automation. PowerShell · FleetDM

Core Stack

  • Automation: PowerShell, Bash, GitHub Actions, Jenkins
  • Endpoint: Microsoft Intune, SCCM/MECM, Jamf Pro, FleetDM
  • Cloud and identity: Microsoft Graph, Entra ID, Microsoft 365
  • Operations: Splunk, Power BI, Git, Docker
  • Platforms: Windows, macOS, Linux, iOS, Android

Credentials

Recent Writing

PS C:\> Write-Host "Eat. Sleep. Code. Repeat."

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 50 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 141 10

  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