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

> jorgeasaurus

Endpoint Platform Engineer · Microsoft MVP — PowerShell

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

LinkedIn Blog


Profile Views

🚀 Featured Projects

Project Description Stack
agent-skills Reusable Copilot agent skills for PowerShell development workflows Pwsh
WinStoreRip Query and download Windows Store app packages from the command line Pwsh
WingetIntunePublisher PowerShell module for automating WinGet app packaging to Intune Pwsh
IntuneDocsAutomation Editorial-style dashboard that auto-tracks the latest Microsoft Intune updates HTML
MgGraphIndex Searchable reference for all 24,000+ Microsoft Graph PowerShell cmdlets HTML
NukeTune Web-based Intune bulk deletion — nuke it all in one shot Webapp
Intune Hydration Kit Bootstrap greenfield Intune tenants with boilerplate configs in a single command Pwsh
Intune-Snapshot-Recovery Automated backup & restore pipeline for Intune tenant configurations Pwsh
PsJamfBackupRestore DR solution for Jamf Pro — version-control macOS management objects Pwsh
MgConsoleGuiGraphSearch Terminal UI for querying Microsoft 365 & Entra ID via Graph API Pwsh

🛡️ 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 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 117 11

  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