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
# Takes the URL of a file on github. | |
param([string]$GitHubFileURL = "https://gist.githubusercontent.com/elliot-labs/d4b09e43db53b54612969ce1b45c5e36/raw/63197869f0f5765c3a762f45a96def4387a9d11e/Set-LabEnv.ps1") | |
# Download the script file. | |
Invoke-WebRequest -Uri $GitHubFileURL -OutFile $env:TEMP\Set-LabEnv.ps1 | |
# Set the location for script execution | |
Set-Location $env:TEMP | |
# Execute it! |
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
# Cordova Global | |
plugins/ | |
# iOS Platform | |
platforms/ios/build/ | |
platforms/ios/www/ | |
platforms/ios/cordova/console.log | |
*.xcuserdatad | |
# Android Platform |
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 | |
wget https://apt.puppetlabs.com/puppetlabs-release-pc1-$(lsb_release -cs).deb | |
sudo dpkg -i puppetlabs-release-pc1-$(lsb_release -cs).deb | |
rm puppetlabs-release-pc1-$(lsb_release -cs).deb | |
sudo apt-get update | |
sudo apt-get install --only-upgrade puppetlabs-release-pc1 | |
sudo apt-get update |
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
$Name = Import-Csv -Path '.\Master Folder List.csv' | |
Function New-Folders ($EntityType, $ParentFolderName, $TargetYear) { | |
New-Item -Path ".\output\$EntityType\$ParentFolderName\$TargetYear\Compliance" -ItemType "directory" -ErrorAction Stop -Force | |
New-Item -Path ".\output\$EntityType\$ParentFolderName\$TargetYear\Financial Statement" -ItemType "directory" -ErrorAction Stop -Force | |
New-Item -Path ".\output\$EntityType\$ParentFolderName\$TargetYear\Tax Return" -ItemType "directory" -ErrorAction Stop -Force | |
New-Item -Path ".\output\$EntityType\$ParentFolderName\$TargetYear\Unfiled" -ItemType "directory" -ErrorAction Stop -Force | |
} | |
foreach ($Line in $Name) { |