Skip to content

Instantly share code, notes, and snippets.

View mikenelson-io's full-sized avatar

Mike Nelson mikenelson-io

View GitHub Profile
#Go to https://www.microsoft.com/en-us/evalcenter/evaluate-windows-server-technical-preview and download Windows Server TP 5 - Nano ISO
#Link that might work ? http://care.dlservice.microsoft.com/dl/download/B/3/3/B33F3810-EE82-4C20-B864-394A2C4B6661/Nano-WindowsServerTechnicalPreview5.vhd
#Windows Server TP5 Licnese Key MFY9F-XBN2F-TYFMP-CCV49-RMYVH
#Download image if link works: wget http://care.dlservice.microsoft.com/dl/download/B/3/3/B33F3810-EE82-4C20-B864-394A2C4B6661/Nano-WindowsServerTechnicalPreview5.vhd -OutFile C:\temp\Windows-Nano-Server-TP5.VHD
#http://care.dlservice.microsoft.com/dl/download/8/9/2/89284B3B-BA51-49C8-90F8-59C0A58D0E70/14300.1000.160324-1723.RS1_RELEASE_SVC_SERVER_OEMRET_X64FRE_EN-US.ISO
#Variables that can be chnaged
$VMWorkStation = 'C:\Program Files (x86)\VMware\VMware Workstation\'
#$vdisk = $VMWorkStation + "vmware-vdiskmanager.exe"
$StarWind = "c:\Program Files (x86)\StarWind Software\StarWind V2V Image Converter\StarV2Vc.exe"
@mikenelson-io
mikenelson-io / Install-DockerOnWS2016ByDSC.ps1
Created November 9, 2016 21:21 — forked from PlagueHO/Install-DockerOnWS2016ByDSC.ps1
Install Docker on Windows Server 2016 RTM using DSC
Configuration ContainerHostDsc
{
# Set up general parameters used to determine paths where Docker will
# be installed to and downloaded from.
$ProgramFiles = $ENV:ProgramFiles
$DockerPath = Join-Path -Path $ProgramFiles -ChildPath 'Docker'
$DockerZipFileName = 'docker.zip'
$DockerZipPath = Join-Path -Path $ProgramFiles -ChildPath $DockerZipFilename
$DockerUri = 'https://download.docker.com/components/engine/windows-server/cs-1.12/docker.zip'
@mikenelson-io
mikenelson-io / win10_slipstream.md
Created November 9, 2016 21:24 — forked from PatrickLang/win10_slipstream.md
Building an up to date Windows 10 VHDX
### Pure Storage Individual Contributor License Agreement ("Agreement") via GitHub CLA Assistant
Thank you for your interest in Pure Storage Inc. (the "Company"). In order to clarify the intellectual property license granted with Contributions from any person or entity, the Company must have a Contributor License Agreement ("CLA") on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of the Company and its users; it does not change your rights to use your own Contributions for any other purpose.
Please read this document carefully before accepting and keep a copy for your records. This agreement can be completed and accepted via GitHub CLA Assistant, OR by printing, signing, and mailing to:
Pure Storage, Attn: Legal OpenSource, 650 Castro St #200, Mountain View, CA 94041, U.S.A.
Full name: ______________________________________________________
(optional) Public name: ______________
@mikenelson-io
mikenelson-io / windows_hardening.cmd
Created November 22, 2022 17:04 — forked from mackwage/windows_hardening.cmd
Script to perform some hardening of Windows OS
:: Windows 10 Hardening Script
:: This is based mostly on my own personal research and testing. My objective is to secure/harden Windows 10 as much as possible while not impacting usability at all. (Think being able to run on this computer's of family members so secure them but not increase the chances of them having to call you to troubleshoot something related to it later on). References for virtually all settings can be found at the bottom. Just before the references section, you will always find several security settings commented out as they could lead to compatibility issues in common consumer setups but they're worth considering.
:: Obligatory 'views are my own'. :)
:: Thank you @jaredhaight for the Win Firewall config recommendations!
:: Thank you @ricardojba for the DLL Safe Order Search reg key!
:: Thank you @jessicaknotts for the help on testing Exploit Guard configs and checking privacy settings!
:: Best script I've found for Debloating Windows 10: https://github.com/Sycnex/Windows10Debloater
: