Skip to content
View meoso's full-sized avatar
🪰
🪰

Block or report meoso

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. uptime-record uptime-record Public

    Linux BASH script to save uptime record.

    Shell 2

  2. Concise PowerShell AD Group Shadow s... Concise PowerShell AD Group Shadow script from http://ravingroo.com/458/active-directory-shadow-group-automatically-add-ou-users-membership/
    1
    $OU="OU=TheOUName,DC=yourdomain,DC=com"
    2
    $ShadowGroup="CN=ShadowGroupName,OU=TheOUName,DC=yourdomain,DC=com"
    3
    
                  
    4
    Import-Module ActiveDirectory
    5
    (Get-ADGroup -Identity $ShadowGroup -properties members).Members | Get-ADUser | Where-Object {$_.distinguishedName –NotMatch $OU} | ForEach-Object {Remove-ADPrincipalGroupMembership –Identity $_ –MemberOf $ShadowGroup –Confirm:$false}
  3. PowerShell Active Directory Password... PowerShell Active Directory Password Expiration Email Notification
    1
    #################################################################################################################
    2
    #
    3
    # Password-Expiration-Notifications v20220823
    4
    # Highly Modified fork. https://gist.github.com/meoso/3488ef8e9c77d2beccfd921f991faa64
    5
    #
  4. Shotcut launcher bash script Shotcut launcher bash script
    1
    #!/bin/bash
    2
    
                  
    3
    #assumes new downloads of shotcut is always in ~/Downloads
    4
    currpath=$(pwd)
    5
    
                  
  5. PowerCLI enable CBT on VM's where CB... PowerCLI enable CBT on VM's where CBT is disabled
    1
    $vcenter="vcenter.domain.tld"
    2
    
                  
    3
    Import-Module -Global  VMware.VimAutomation.Core 
    4
    Disconnect-VIServer * -Confirm:$false -Force | Out-Null #Disconnect all previously connected vcenter servers
    5
    
                  
  6. ffmpeg re-encoding scripts to reduce... ffmpeg re-encoding scripts to reduce filesize and remain "visually" lossless
    1
    I've accumulated too many quadcopter (drone) footage files (.mp4, .MOV, etc).
    2
    
                  
    3
    I researched how to `ffmpeg` re-encode with "_practical_" losslessness (i.e. not lessless, but human eye acceptable).
    4
    
                  
    5
    These are my resultant scripts. The filenames say "reduce" but should actually be "re-encode".