This file contains 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
This is test content |
This file contains 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 | |
# --------------------------------------------------------------------- | |
# TeamCity build agent bootstrap script | |
# --------------------------------------------------------------------- | |
# Parameters: | |
# | |
# $1 required: TeamCity Server URL | |
# $2 required: TeamCity Agent installation path | |
# $3 required: Authorization token. Must be "-1" if no auto registration required | |
# $4 optional: Agent account |
This file contains 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
# 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 | |
# Basic setup | |
Update-ExecutionPolicy Unrestricted | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
# Enable-RemoteDesktop | |
# Disable-InternetExplorerESC |
This file contains 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-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
Enable-RemoteDesktop | |
cinst console2 | |
cinst fiddler4 | |
cinst git.install | |
cinst notepadplusplus.install | |
cinst 7zip.install | |
cinst GoogleChrome | |
cinst javaruntime |
This file contains 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
public class TcpPortLimitedTaskScheduler : TaskScheduler | |
{ | |
[ThreadStatic] | |
private static bool _CurrentThreadIsProcessingItems; | |
private readonly LinkedList<Task> _Tasks = new LinkedList<Task>(); | |
private int _DelegatesQueuedOrRunning = 0; | |
public const int TcpConnectionLimit = 4000; |