Skip to content
View JeremyTBradshaw's full-sized avatar
🤠
Yeehaw
🤠
Yeehaw
Block or Report

Block or report JeremyTBradshaw

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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

Pinned

  1. MSGraphPSEssentials MSGraphPSEssentials Public

    A collection of functions enabling easier consumption of Microsoft Graph using just PowerShell (Desktop/Core).

    PowerShell 7

  2. PowerShell PowerShell Public

    The resting place for my PowerShell scripting work.

    PowerShell 9 1

  3. Quick fake certificate thumbprints (... Quick fake certificate thumbprints (and Guid's)
    1
    # For documentation purposes, sometimes I need fake thumbprints (and Guid's).
    2
    function New-FakeThumbprint ([ValidateRange(1, 10)][int]$Count = 1) {
    3
    
                  
    4
        1..$Count | ForEach-Object {
    5
            (
  4. LeanChoicePrompt.ps1 LeanChoicePrompt.ps1
    1
    #Requires -Version 5.1
    2
    using namespace System.Management.Automation.Host
    3
    
                  
    4
    switch (
    5
        $host.UI.PromptForChoice(
  5. Convert between Guid and ImmutableId... Convert between Guid and ImmutableId (for Azure AD / Office 365 customers)
    1
    #Requires -Version 3
    2
    
                  
    3
    function ConvertFrom-GuidToImmutableId ([Guid]$Guid){
    4
    
                  
    5
        [System.Convert]::ToBase64String([Guid]::Parse($Guid).ToByteArray())