Skip to content

Instantly share code, notes, and snippets.

View ThaddParker's full-sized avatar

Thaddaeus Parker ThaddParker

  • Chicago, IL, USA
View GitHub Profile
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
Enable-RemoteDesktop
cinst fiddler4
cinst console-devel
cinst dotpeek
cinst sysinternals
cinst IIS-WebServerRole -source windowsfeatures
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
Enable-RemoteDesktop
# dev tools
cinst console-devel
cinst dotpeek
cinst sysinternals
cinst fiddler4
cinst GoogleChrome
cinst Firefox
cinst notepadplusplus.install
# there will have to be a separate PS script to run specific nuget packages
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
Enable-RemoteDesktop
Disable-InternetExplorerESC
# dev tools
cinst console-devel
cinst dotpeek
cinst sysinternals
cinst fiddler4
cinst Batte.LoadOuts.Dev
@ThaddParker
ThaddParker / SQLServerConfiguration.ini
Last active August 29, 2015 14:08
Generic Sql server silent install ini file
;SQL Server 2012 Configuration File
[OPTIONS]
; Specifies a Setup work flow, like INSTALL, UNINSTALL, or UPGRADE. This is a required parameter.
ACTION="Install"
IACCEPTSQLSERVERLICENSETERMS="True"
; Detailed help for command line argument ENU has not been defined yet.
#Development Machine v1.0b
cmd START http://boxstarter.org/package/nr/url?https://gist.githubusercontent.com/ThaddParker/543228b70fdafcee8183/raw/640f03295ce3274f870ee6f1754e9c13c070f0a6/webdev1
#create the Temp directory
$checkDir = Test-Path -PathType Container Temp
if($checkDir -eq $false){
New-Item 'Temp' -type Directory
}
# create the projects directory
@ThaddParker
ThaddParker / BoxStarterMLDev.txt
Last active June 12, 2019 16:40
Machine Learning Development Box baseline
Set-ExplorerOptions -showProtectedOSFiles -showFileExtensions -showHiddenFilesFolderDrives
Enable-RemoteDesktop
#$Boxstarter.RebootOK=$true
Update-ExecutionPolicy Unrestricted
Disable-InternetExplorerESC
Install-WindowsUpdate -AcceptEula
#if(Test-PendingReboot){Invoke-Reboot}
#generate a new profile for refreshing
new-item -path $profile -itemtype file
Set-ExplorerOptions -showProtectedOSFiles -showFileExtensions -showHiddenFilesFolderDrives
Enable-RemoteDesktop
$Boxstarter.RebootOK=$true
Update-ExecutionPolicy Unrestricted
Disable-InternetExplorerESC
# Show hidden files, Show protected OS files, Show file extensions
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensionsEnable-RemoteDesktop
$Boxstarter.RebootOK=$true
Update-ExecutionPolicy Unrestricted
Disable-InternetExplorerESC
Install-WindowsUpdate -AcceptEula
#if(Test-PendingReboot){Invoke-Reboot}
#generate a new profile for refreshing
new-item -path $profile -itemtype file