This file contains hidden or 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
#create admin | |
net user /add [*username] [password] | |
net localgroup administrators [username] /add | |
#set the password to never expire | |
wmic UserAccount where "Name=[username]" set PasswordExpires=False | |
#set timezone | |
tzutil /s "Eastern Standard Time" |
This file contains hidden or 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
#1. Set-ExecutionPolicy Unrestricted | |
#2. Install boxstarter: | |
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
#3. START https://boxstarter.org/package/url?(Add Gist URL HERE) | |
#---- TEMPORARY --- | |
Disable-UAC -y | |
This file contains hidden or 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
Disable-BingSearch; | |
Disable-GameBarTips; | |
Get-AppxPackage Microsoft.WindowsAlarms | Remove-AppxPackage | |
Get-AppxPackage Microsoft.BingFinance | Remove-AppxPackage | |
Get-AppxPackage Microsoft.BingNews | Remove-AppxPackage | |
Get-AppxPackage Microsoft.BingSports | Remove-AppxPackage | |
Get-AppxPackage Microsoft.BingWeather | Remove-AppxPackage |
This file contains hidden or 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
$credentials = Get-Credential | |
$filename = C:\txts\creds | |
$credentials | Export-CliXml -Path $Filecred | |
$Credpath = 'C:\txts\creds' | |
$Filecred = Import-Clixml -Path $Credpath | |
# |
This file contains hidden or 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
#Machine Policies | |
Set-ExplorerOptions $Boxstarter.RebootOk=$true # Allow reboots | |
$Boxstarter.NoPassword=$false # machine has login password | |
$Boxstarter.AutoLogin=$true # Encrypt and temp store password for auto-logins after reboot | |
#Program installs | |
cinst googlechrome | |
cinst googledrive | |
cinst google-hangouts-chrome | |
cinst firefox | |
cinst notepadplusplus |
This file contains hidden or 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
#Machine Policies | |
Set-ExplorerOptions $Boxstarter.RebootOk=$true # Allow reboots | |
$Boxstarter.NoPassword=$false # machine has login password | |
$Boxstarter.AutoLogin=$true # Encrypt and temp store password for auto-logins after reboot | |
#Program installs(Office Removed for Test Version) | |
cinst googlechrome | |
cinst googledrive | |
cinst google-hangouts-chrome | |
cinst slack | |
#Pinned items |
This file contains hidden or 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 | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
brew cask install google-chrome | |
brew cask install google-drive | |
brew cask install slack | |
brew cask install google-hangouts | |
#enter password change admin name if needed |
This file contains hidden or 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
#Machine Policies | |
Set-ExplorerOptions $Boxstarter.RebootOk=$true # Allow reboots | |
$Boxstarter.NoPassword=$false # machine has login password | |
$Boxstarter.AutoLogin=$true # Encrypt and temp store password for auto-logins after reboot | |
#Program installs | |
cinst googlechrome | |
cinst googledrive | |
cinst google-hangouts-chrome | |
cinst office365business | |
cinst slack |
This file contains hidden or 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
Set-ExecutionPolicy Bypass | |
#add admin account **MUST CHANGE PASSWORD and Admin name** | |
net user admin P@ssw0rd /add | |
net localgroup administrators gadmin /add | |
#install chocolatey | |
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex | |
#install software |