Skip to content
View noahpeltier's full-sized avatar

Block or report noahpeltier

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 Loading

  1. DMARCParse DMARCParse Public

    Powershell scripts to parse DMARC reports

    PowerShell

  2. InstallAdobePro InstallAdobePro Public

    Downloads the latest version of the Adobe Acrobat Pro DC msi installer

    Go

  3. PingScan.ps1 PingScan.ps1
    1
    function Get-IPRangeFromCIDR {
    2
        param(
    3
            $Range
    4
        )
    5
        # Set up empty list to contain the calculated range
  4. Winforms GUI that displays Exchange ... Winforms GUI that displays Exchange Online public folders in a tree view with options for adding and/or modifying existing permissions.
    1
    # Optionally, connect to Exchange Online if not already connected:
    2
    # Import-Module ExchangeOnlineManagement
    3
    
                  
    4
    if (-not (get-command get-mailbox -ErrorAction SilentlyContinue) ) {
    5
        Connect-ExchangeOnline
  5. Admin tool box I created for work Admin tool box I created for work
    1
    #===================================================================
    2
    # Admin ToolBox
    3
    # Created by: Noah Peltier
    4
    # Version 4.0
    5
    # Email: noah.peltier@gmail.com
  6. Running a script from apaste URL Running a script from apaste URL
    1
    $data = (Invoke-WebRequest -Uri "https://apaste.info/LgTm").Content
    2
    $data2 = $data -replace '<[^>]+>','' -replace "Apache Paste Bucket" -replace "Showing paste" -replace "&quot;" , '"'  -replace "Make a new paste"
    3
    iex $data2