-
NOTE: no x64 package is available (unless you want to install from source), so I installed the x86 version
-
Install mono MDK from:
http://www.mono-project.com/download/
I used 3.10.0, which corresponds to .NET 4.5
NOTE: no x64 package is available (unless you want to install from source), so I installed the x86 version
Install mono MDK from:
http://www.mono-project.com/download/
I used 3.10.0, which corresponds to .NET 4.5
| {"lastUpload":"2017-08-29T14:31:56.888Z","extensionVersion":"v2.8.3"} |
| # Boxstarter options | |
| $Boxstarter.RebootOk=$true # Allow reboots? | |
| $Boxstarter.NoPassword=$false # Is this a machine with no login password? | |
| $Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot | |
| Update-ExecutionPolicy Unrestricted | |
| Set-ExplorerOptions -showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
| Enable-RemoteDesktop | |
| Disable-InternetExplorerESC |
| # Boxstarter options | |
| $Boxstarter.RebootOk=$true # Allow reboots? | |
| $Boxstarter.NoPassword=$false # Is this a machine with no login password? | |
| $Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot | |
| Update-ExecutionPolicy Unrestricted | |
| Set-ExplorerOptions -showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
| Enable-RemoteDesktop | |
| Disable-InternetExplorerESC |
| ; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a | |
| ; semicolon, such as this one, are comments. They are not executed. | |
| ; This script has a special filename and path because it is automatically | |
| ; launched when you run the program directly. Also, any text file whose | |
| ; name ends in .ahk is associated with the program, which means that it | |
| ; can be launched simply by double-clicking it. You can have as many .ahk | |
| ; files as you want, located in any folder. You can also run more than | |
| ; one .ahk file simultaneously and each will get its own tray icon. |
| [W0] | |
| keywords=addremove | |
| command=control.exe | |
| comment=Add/remove programs | |
| param=appwiz.cpl | |
| [W1] | |
| keywords=admin | |
| command=control.exe | |
| comment=Administrative tools |
| [user] | |
| name = Laban Eilers | |
| email = leilers@vistaprint.com | |
| [alias] | |
| rt = log --pretty=format:'%C(bold yellow)%h %C(cyan)%an%C(auto)%d %Creset%<(130,trunc)%s %C(cyan)(%cr)' --date=short --graph --all --decorate --author eilers --max-count 10 | |
| lgs = log --pretty=format:'%C(bold yellow)%h %C(cyan)%an%C(auto)%d %Creset%<(130,trunc)%s %C(cyan)(%cr)' --date=short --graph --all --decorate --max-count 30 | |
| rb = rebase origin/svn | |
| fa = fetch --all | |
| rbi = rebase --interactive |
| using System; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| namespace exception_test | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { |
| $Boxstarter.RebootOk=$true # Allow reboots? | |
| $Boxstarter.NoPassword=$false # Is this a machine with no login password? | |
| $Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot | |
| & C:\Windows\system32\tzutil /s "Eastern Standard Time" | |
| Update-ExecutionPolicy Unrestricted | |
| Disable-UAC | |
| Set-WindowsExplorerOptions -EnableShowProtectedOSFiles -EnableShowFileExtension -EnableShowHiddenFilesFoldersDrives | |
| Enable-RemoteDesktop |
| (function(win) { | |
| 'use strict'; | |
| var listeners = []; | |
| var doc = win.document; | |
| var MutationObserver = win.MutationObserver || win.WebKitMutationObserver; | |
| var observer; | |
| // Returns true if the specified node matches the selector |