Skip to content
View AndrewWCarson's full-sized avatar
🐦
🐦

Organizations

@sudo-helpdesk
Block or Report

Block or report AndrewWCarson

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

  1. Iteration through all macOS users & ... Iteration through all macOS users & home directories
    1
    #!/bin/bash
    2
    
                  
    3
    # (C) Andrew Worth Carson
    4
    # MIT License: https://andrewworthcarson.com/mit_license.html
    5
    
                  
  2. Toggle between Light & Dark mode. Toggle between Light & Dark mode.
    1
    #!/usr/bin/python
    2
    #
    3
    # This toggles the macOS appearance from Light mode to Dark mode and vice
    4
    # versa.
    5
    #
  3. Enable Focused Inbox for an organiza... Enable Focused Inbox for an organization in Office 365 E1.
    1
    # This opens a GUI password prompt to store the O365 admin password.
    2
    $UserCredential = Get-Credential
    3
    
                  
    4
    # Initiate a remote Powershell session with O365.
    5
    $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
  4. Install workflow for Addigy that pro... Install workflow for Addigy that prompts the end-user to close the application.
    1
    #!/bin/bash
    2
    
                  
    3
    # (C) Andrew Worth Carson
    4
    # MIT License: https://andrewworthcarson.com/mit_license.html
    5