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

Sponsors

@b00walk

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
Microsoft MVP - PowerShell

> jorgeasaurus

Endpoint Platform Engineer Β· Microsoft MVP β€” PowerShell

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

LinkedIn Blog


Profile Views

> Get-Help About-Jorge -Full

NAME
    Jorge Suarez

SYNOPSIS
    Endpoint Platform Engineer @ SpaceX | Microsoft MVP - PowerShell

SYNTAX
    Jorge [-NativeLanguage <English | Spanish>] [-Focus <Automation | Security | EndpointMgmt>]

DESCRIPTION
    Builds tooling and automation for enterprise-scale endpoint management across
    Intune, Jamf, SCCM, and Entra ID. Focused on infrastructure-as-code, disaster
    recovery, and fleet operations at velocity.

LINKS
    Blog        https://www.jorgeasaur.us
    GitHub      https://github.com/jorgeasaurus
    LinkedIn    https://linkedin.com/in/jorgeasaurus

πŸš€ Featured Projects

Project Description Stack
☒️ NukeTune Web-based Intune bulk deletion β€” wipe devices, apps, policies & configs in one shot Graph API
πŸ’§ Intune Hydration Kit Bootstrap greenfield Intune tenants with boilerplate configs in a single command PowerShell
πŸ“Έ Intune-Snapshot-Recovery Automated backup & restore pipeline for Intune tenant configurations GitHub Actions
🍎 PsJamfBackupRestore PowerShell DR solution for Jamf Pro β€” version-control macOS management objects PowerShell
πŸ’» MgConsoleGuiGraphSearch Interactive console GUI for querying Microsoft 365 & Entra ID via Graph API PowerShell

πŸ›‘οΈ Certifications

Microsoft 365 Endpoint Administrator Microsoft 365 Administrator Expert Jamf 200 Certified


🧰 Tech Stack

Languages
Endpoint & Identity
DevOps
Security & Telemetry
Fleet OS Coverage

✍️ Recent Publications


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 48 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 111 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