Skip to content

Instantly share code, notes, and snippets.

View jlucktay's full-sized avatar
🎯
Focusing

James Lucktaylor jlucktay

🎯
Focusing
View GitHub Profile
0xE6767A13d991081D4f1e7150D8992B8913f31656
import System;
import System.Windows.Forms;
import Fiddler;
// INTRODUCTION
// This is the FiddlerScript Rules file, which creates some of the menu commands and
// other features of Fiddler. You can edit this file to modify or add new commands.
//
// The original version of this file is named SampleRules.js and it is in the
// \Program Files\Fiddler\ folder. When Fiddler first starts, it creates a copy named
@jlucktay
jlucktay / boxstarter-core
Created February 18, 2015 00:28
Boxstarter - Core setup
Set-CornerNavigationOptions -EnableUsePowerShellOnWinX
Set-StartScreenOptions -EnableBootToDesktop -EnableDesktopBackgroundOnStart -EnableShowAppsViewOnStartScreen -EnableSearchEverywhereInAppsView
Set-WindowsExplorerOptions -EnableShowFileExtensions -EnableShowHiddenFilesFoldersDrives
Enable-PSRemoting -Force
Enable-RemoteDesktop
Update-ExecutionPolicy RemoteSigned
@jlucktay
jlucktay / boxstarter-windowsupdate
Last active August 29, 2015 14:02
Boxstarter - Windows Update only
Install-WindowsUpdate -AcceptEula
@jlucktay
jlucktay / boxstarter
Last active April 22, 2019 22:26
Boxstarter script for new machine
#
# Function definition, needed for a few installers that don't create their own desktop shortcuts.
# Puts the shortcut on the Public Desktop for everyone to use.
function Create-DesktopShortcut {
[CmdletBinding()] Param(
[Parameter(Mandatory=$True)] [string]$shortcutName,
[Parameter(Mandatory=$True)] [string]$targetPath
)