Skip to content

Instantly share code, notes, and snippets.

View jamesallen-cm's full-sized avatar

jamesallen-cm

View GitHub Profile
@jamesallen-cm
jamesallen-cm / DSCPullServerBootstrap-February
Last active August 29, 2015 14:23
February Preview DSCPullServer bootstrap
$Boxstarter.RebootOk=$true
# enable psremoting
Write-Output "Enabling PSRemoting"
Enable-PSRemoting -Force
# for write-zip file
cinst pscx -y
# manage updates from powershell
cinst pswindowsupdate -y
@jamesallen-cm
jamesallen-cm / DSCNodeBootstrap-February
Last active August 29, 2015 14:23
February Preview DSCNodeBootstrap
$Boxstarter.RebootOk=$true
# enable psremoting
Write-Output "Enabling PSRemoting"
Enable-PSRemoting -Force
# manage updates from powershell
cinst pswindowsupdate -y
if($PSVersionTable.PSVersion -lt (New-Object 'Version' 5,0,10018,0))
{
#Boxstarter options
$Boxstarter.RebootOk = $true # Allow reboots?
$Boxstarter.AutoLogin = $true # Save my password securely and auto-login after a reboot
Install-WindowsUpdate -AcceptEula
http://boxstarter.org/package/nr/url?https://gist.githubusercontent.com/jamesallen-cm/1ba1f92cdfc6df47ef94/raw/74b7e7e2bcf68e3c20141aa57738ab24d8e09b52/boxstarter-winupdate.ps1