Skip to content

Instantly share code, notes, and snippets.

View psmith6's full-sized avatar

Phil Smith psmith6

View GitHub Profile
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
Install-WindowsUpdate -Full
Disable-GameBarTips
cinst googlechrome
cinst visualstudiocode
cinst mssqlserver2014express
cinst mssqlservermanagementstudio2014express
cinst visualstudio2017professional
cinst openinvscode
@psmith6
psmith6 / conemu.xml
Created November 20, 2017 19:11
conemu
<?xml version="1.0" encoding="utf-8"?>
<key name="Software">
<key name="ConEmu">
<key name=".Vanilla" modified="2017-11-20 14:10:18" build="170709">
<value name="StartType" type="hex" data="02"/>
<value name="CmdLine" type="string" data=""/>
<value name="StartTasksFile" type="string" data=""/>
<value name="StartTasksName" type="string" data="{vantage-dev}"/>
<value name="StartFarFolders" type="hex" data="00"/>
<value name="StartFarEditors" type="hex" data="00"/>

Keybase proof

I hereby claim:

  • I am psmith6 on github.
  • I am philsmith (https://keybase.io/philsmith) on keybase.
  • I have a public key ASDAsx_7DX5nULk5eobq0Sc-5B0fqO744ajbWjQB6zUVMwo

To claim this, I am signing this object:

@psmith6
psmith6 / boxstarter.ps1
Last active February 15, 2017 01:11
Boxstarter
Set-ExecutionPolicy RemoteSigned
# PowerShell v3+
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
. $profile
cinst boxstarter -y
# restart powershell
var moq = new Mock<PromptCode>();
moq.Setup(x => x.Id).Returns(Guid.NewGuid());
moq.SetupSequence(x => x.Id)
.Returns(It.IsAny<Guid>())
.Returns(It.IsAny<Guid>())
.Returns(It.IsAny<Guid>())
.Returns(It.IsAny<Guid>());