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. 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
  4. 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
  5. Convert a pscustomobject to a hastht... Convert a pscustomobject to a hasthtable
    1
    function Convert-ToHashtable {
    2
        param (
    3
            [Parameter(Mandatory=$true, ValueFromPipeline=$true)]
    4
            [PSCustomObject]$InputObject
    5
        )
  6. A module I am working on to allow fo... A module I am working on to allow for installing modules to a project folder to be packaged for distribution.
    1
    function PSEnv {
    2
        [CmdletBinding()]
    3
        param (
    4
            [Parameter(ValueFromPipelineByPropertyName)]
    5
            [ValidateSet('Install', 'Init', 'Remove')]