Skip to content
View jesseloudon's full-sized avatar
:shipit:
:shipit:

Organizations

@msmvps @globalbao
Block or Report

Block or report jesseloudon

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. globalbao/awesome-azure-policy globalbao/awesome-azure-policy Public

    A curated list of blogs, videos, tutorials, code, tools, scripts, and anything useful to help you learn Azure Policy - by @JesseLoudon

    474 108

  2. globalbao/azure-policy-as-code globalbao/azure-policy-as-code Public

    Bicep and Terraform code examples for policy-as-code workflows. Azure governance guardrails and automation - by @JesseLoudon

    HCL 170 81

  3. globalbao/azure-resource-graph globalbao/azure-resource-graph Public

    Collection of Azure Resource Graph queries for use in Portal and via PowerShell - by @JesseLoudon

    60 23

  4. BitLocker Activation Script BitLocker Activation Script
    1
    #Check BitLocker prerequisites
    2
    $TPMNotEnabled = Get-WmiObject win32_tpm -Namespace root\cimv2\security\microsofttpm | where {$_.IsEnabled_InitialValue -eq $false} -ErrorAction SilentlyContinue
    3
    $TPMEnabled = Get-WmiObject win32_tpm -Namespace root\cimv2\security\microsofttpm | where {$_.IsEnabled_InitialValue -eq $true} -ErrorAction SilentlyContinue
    4
    $WindowsVer = Get-WmiObject -Query 'select * from Win32_OperatingSystem where (Version like "6.2%" or Version like "6.3%" or Version like "10.0%") and ProductType = "1"' -ErrorAction SilentlyContinue
    5
    $BitLockerReadyDrive = Get-BitLockerVolume -MountPoint $env:SystemDrive -ErrorAction SilentlyContinue