Skip to content

Instantly share code, notes, and snippets.

View noahpeltier's full-sized avatar

Noah Peltier noahpeltier

View GitHub Profile
/* Change button primary color to green */
.btn-primary {
background-color: #4CAF50;
border-color: #4CAF50;
}
.btn-primary:hover,
.btn-primary:focus {
background-color: #45a049;
border-color: #45a049;
@noahpeltier
noahpeltier / CAWhatif.ps1
Last active November 2, 2023 22:02
Perform a Conditional Access Policy "What if " on Users
# Pulls out all the relevent data we need from the policy
function Format-CAPDetails {
param(
[Parameter(ValueFromPipeline)]
$ConditionalAccessPolicy
)
PROCESS {
$UserPolicies = $ConditionalAccessPolicy.Conditions.users
[PScustomObject]@{
DisplayName = $ConditionalAccessPolicy.DisplayName
@noahpeltier
noahpeltier / zombocom.ps1
Last active October 19, 2022 23:05
welcome to Zombo.com
$MediaPlayer = [Windows.Media.Playback.MediaPlayer, Windows.Media, ContentType = WindowsRuntime]::New()
$MediaPlayer.Source = [Windows.Media.Core.MediaSource]::CreateFromUri('https://zombo.com/zombo_words.mp3')
$MediaPlayer.Play()
while (1) {write-host @"
`r
███████ ██████ ███ ███ ██████ ██████ ██████ ██████ ███ ███
███ ██ ██ ████ ████ ██ ██ ██ ██ ██ ██ ██ ████ ████
███ ██ ██ ██ ████ ██ ██████ ██ ██ ██ ██ ██ ██ ████ ██
███ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
@noahpeltier
noahpeltier / software_manifest.json
Last active September 12, 2021 19:04
List of software sources
[
{
"pkgName": "obs-studio",
"displayName": "OBS Studio",
"publisher": "Open Broadcaster Software",
"publisherSite": "https://obsproject.com/",
"pkgVersion": "27.0.1",
"pkgSource": "https://cdn-fastly.obsproject.com/downloads/OBS-Studio-27.0.1-Full-Installer-x64.exe",
"hash": "844F54C4ACF1ABBD51612CC9D4470E2E3A937106E5BE69BC94BBA7859FB748CD",
@noahpeltier
noahpeltier / declutter.ps1
Created June 28, 2021 15:48
Organize files into folders by file type
(Get-ChildItem -file) | foreach {
if (!$(Test-Path $_.Extension)) {
mkdir "$($_.Extension)"
}
move-item $_.Name -Destination "$($_.Extension)" -Verbose
}
@noahpeltier
noahpeltier / PSEnv.ps1
Created October 28, 2019 14:19
A module I am working on to allow for installing modules to a project folder to be packaged for distribution.
function PSEnv {
[CmdletBinding()]
param (
[Parameter(ValueFromPipelineByPropertyName)]
[ValidateSet('Install', 'Init', 'Remove')]
[String]$Operation,
[parameter(ValueFromPipelineByPropertyName)]
[string]$module_name
)
@noahpeltier
noahpeltier / ADSISearch.ps1
Created August 15, 2019 19:59
Class and functions for searching and settin guser info in ADSI withou tthe need for RSAT
using namespace System
using namespace System.DirectoryServices
class ADSearch
{
[Searchresult]$object
[DirectoryEntry]$DirectoryEntry
[PSCustomObject]$properties
$UserAccountControl
#!/usr/bin/python3.7
"""
This will determin your OS version
and download the appropriate copy to a directory
"""
import os
import sys
import platform
import urllib.request
@noahpeltier
noahpeltier / ScriptblockBuilder.ps1
Created April 30, 2019 04:42
Functino for building command strings dynamicaly to save to an array
$command = New-Object -TypeName System.Text.StringBuilder
$Array = New-Object -TypeName System.Collections.ArrayList
function set-arg {
[CmdletBinding()]
param (
[Parameter(ValueFromRemainingArguments)]
[String[]]$param,
[switch]$invoke = $false
@noahpeltier
noahpeltier / update time
Created April 28, 2019 20:01
updates the time in linux
sudo ntpdate 0.us.pool.ntp.org