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
# run windows update for critical updates | |
Install-WindowsUpdate -AcceptEula -SupressReboots | |
# Windows config settings | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
# Boxstarter Installer | |
cinst Boxstarter -y | |
# For HyperV Guests | |
cinst boxstarter.common -y --force |
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
############################################################ | |
# Dockerfile for Networing Dev | |
# Based on Ubuntu | |
############################################################ | |
# Set the base image to Ubuntu Baseimage | |
FROM phusion/baseimage | |
# File Author / Maintainer | |
MAINTAINER [email protected] |
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
# run windows update for critical updates | |
Install-WindowsUpdate -AcceptEula -SupressReboots | |
# Windows config settings | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
# Boxstarter Installer | |
cinst Boxstarter -y | |
# For HyperV Guests | |
# cinst boxstarter.common -y --force |
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
############################################################################### | |
# SECTION:Initial Settings | |
############################################################################### | |
# Testing flag - enables a CRON job that clears iptables incase of | |
# configuration problems when you start csf. This should be enabled until you | |
# are sure that the firewall works - i.e. incase you get locked out of your | |
# server! Then do remember to set it to 0 and restart csf when you're sure | |
# everything is OK. Stopping csf will remove the line from /etc/crontab | |
# | |
# lfd will not start while this is enabled |
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
############################################################ | |
# Dockerfile for C++ and Python Dev | |
# Based on Ubuntu | |
############################################################ | |
# Set the base image to Ubuntu Baseimage | |
FROM phusion/baseimage | |
# File Author / Maintainer | |
MAINTAINER [email protected] |
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
#Enable Remote Desktop | |
Enable-RemoteDesktop | |
#Dev | |
cinst notepadplusplus -y | |
cinst putty -y | |
choco install git -y | |
cinst python2 -y | |
cinst python3 -y |
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
//Opens 15 Rick Roll tabs in the foreground in the users default browser. First experiment with C++ in windows. | |
#include <windows.h> | |
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
int resp; |
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 | |
# Simple shell script to install Vagrant with Virtualbox development environment on Fedora 26 | |
set -e | |
# Any subsequent(*) commands which fail will cause the shell script to exit immediately | |
# Initial update | |
sudo dnf update -y | |
### Begin optional packages ### |
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 | |
# Simple shell script to install Vagrant with Virtualbox development environment on Fedora 26 | |
# Minimal version - no optional packages | |
set -e | |
# Any subsequent(*) commands which fail will cause the shell script to exit immediately | |
# Initial update | |
sudo dnf update -y |
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
############################################################ | |
# Powershell script to download installers for DevOps Vagrant Environment | |
# Downloads Virtualbox 5.2, Vagrant 2.0.1 64 bit, and github desktop OR git 64 bit | |
# Author: Joshua Haupt [email protected] Date: 7.11.2017 | |
############################################################ | |
Write-Host 'Making "DevEnv" folder in Downloads' | |
cd ~\Downloads\ | |
mkdir DevEnv |
OlderNewer