Skip to content
View jbilinski's full-sized avatar

Organizations

@wsealug

Block or report jbilinski

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. fsrestruct fsrestruct Public

    A bash script to export the structure of a Linux filesystem, including directories, (empty)files, ownerships, permissions, and symbolic links, into a script that can recreate the same structure els…

    Shell

  2. copy-dns-from-pfsense-unbound-to-win... copy-dns-from-pfsense-unbound-to-windows
    1
    #requires -Version 4.0 -Modules DnsServer
    2
    
                  
    3
    <#
    4
        .Synopsis
    5
        Copy Unbound DNS records from pfSense to MS DNS server
  3. MacOS shell script to install a new ... MacOS shell script to install a new root CA and intermediate CAs
    1
    #!/bin/bash
    2
    
                  
    3
    # Ensure the script is run as root
    4
    ((EUID != 0)) && exec sudo -- "$0" "$@"
    5
    cd /tmp/ &>/dev/null
  4. bl-clean-up-ad-user-sip-addresses bl-clean-up-ad-user-sip-addresses
    1
    #requires -Version 3 -Modules ActiveDirectory
    2
    # using AD mail property as email address (not always same as primary SMTP proxyaddress)
    3
    
                  
    4
    [bool]$useEmailDomain = $false #use email domain as sip domain
    5
    [string]$sipDomain = 'riverlive.com' #always use this domain for sip addresses (if not using email domain)
  5. bl-start-jenkins-agent-as-windows-sc... bl-start-jenkins-agent-as-windows-scheduled-job
    1
    $buildnode='us-wa-bn-win-9'     # name of the node as created in Jenkins
    2
    $jenkinsprimaryurl='https://na-jenkins-ha0.meta.dev'    # (internal) URL of the Jenkins master
    3
    $javabin="$env:ProgramFiles\Java\jdk-21\bin\java.exe"   # Path to the Java binary on windows
    4
    $workpath='c:\jenkins'      # This is the path to the windows agent work directory
    5
    $agentpath="$($workpath)\agent" # I prefer to keep the agent in a subdirectory of the work directory
  6. bl-new-daily-password-and-a-cisco-gu... bl-new-daily-password-and-a-cisco-guest-wireless-portal
    1
    #requires -Version 3
    2
    
                  
    3
    function Check-GuestEnvironment
    4
    {
    5
        [CmdletBinding()]