This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
checkroot() { | |
if [ $UID -ne 0 ] ; then | |
echo "User has insufficient privilege." | |
exit 4 | |
fi | |
} | |
install_deps () { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import subprocess | |
import os | |
import sys | |
path = (os.environ['bamboo_build_working_directory']) | |
sfdx = 'sfdx' | |
alias= "cheeseburger" | |
auth_key= (os.environ['AUTH_KEY']) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import subprocess | |
import os | |
import sys | |
path = %teamcity.build.checkoutDir% | |
sfdx = 'sfdx' | |
alias = "cheeseburger" | |
auth = %env.auth_key% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python2.7 | |
import boto3 | |
import datetime | |
import pytz | |
import os | |
ec2 = boto3.resource('ec2') | |
def lambda_handler(event, context): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* globals $driver $browser */ | |
var request = require('request') | |
function elementIsPresent (ele) { | |
$browser.findElements(ele).then(function (found) { | |
return found.length > 0 | |
}) | |
} | |
function performBrowserClickTest (path) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$msbuild = "C:\Program Files\Google Apps Directory Sync\sync-cmd.exe" | |
$arguments = "-a -o -c config.xml" | |
while ($true) { | |
start-Process -FilePath $msbuild $arguments | |
Start-Sleep -Seconds 600 | |
} | |
<# | |
-a,--apply |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
from requests.auth import HTTPBasicAuth | |
import csv | |
import getpass | |
username = input('enter username:') | |
key = getpass.getpass("Enter your password: ") | |
user_emails = [] | |
"""authorize via zendesk""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import boto3 | |
def default_handler( event, context ): | |
print(boto3.client('sts').get_caller_identity()) | |
''' replace share-id with actual Id(s)''' | |
client = boto3.client('storagegateway') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$sysprep = 'C:\Windows\System32\Sysprep\Sysprep.exe' | |
$args = '/generalize','/oobe','/reboot','quiet' | |
& $sysprep $args |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
put the windows machine name in the hostname variable. | |
replace %APPPLICATION GOES HERE% with app you wish to uninstall. | |
uninstalls can cause a reboot be sure to only run this outside of a production state. | |
''' | |
$hostname = 'Computer names here', 'Computer names here' | |
$APP = Get-WmiObject -Class win32_product -ComputerName $hostname -Filter "Name like '%APPPLICATION GOES HERE%'" | |
echo $APP | |
$APP.Uninstall() |