Skip to content
View wesleydeal's full-sized avatar

Sponsoring

@marcelklehr

Block or report wesleydeal

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
wesleydeal/README.md

Hello

I'm Wesley Deal. I work at Fellowship Christian School as an IT Systems Engineer. We're a mostly Windows environment on the back end, so in between support requests I'm frequently working on PowerShell scripts to automate our procedures. I have a Bachelors of Science in Information Technology (concentration Cyber Operations Security; minor Computer Science) from Kennesaw State University as well as CompTIA Security+ and Cisco Certified Network Associate (CCNA) certs.

Pinned Loading

  1. deal.digital deal.digital Public

    HTML

  2. resume resume Public

    HTML

  3. linux_prepare_reference_deployment.sh linux_prepare_reference_deployment.sh
    1
    #!/bin/sh
    2
    # prepare CentOS and Ubuntu systems to match desired configuration on first boot
    3
    # place in /usr/sbin
    4
    
                  
    5
    [ -x "$(command -v apt)" ] && debianlike=true || debianlike=false
  4. PCOCalendarExport PCOCalendarExport Public

    PowerShell Cmdlets to assist in migration to another service (such as FMX) which insists on a CSV input format.

    PowerShell

  5. wd-voidscripts wd-voidscripts Public

    Shell

  6. Prune-Backups.ps1 Prune-Backups.ps1
    1
    param (
    2
    	[string]$Path = (Get-Location),
    3
    	[int]$Hours = 0,
    4
    	[int]$Days = 0,
    5
    	[int]$Weeks = 0,