Command:
curl https://git.io/ -i -F "url=https://github.com/YOUR_GITHUB_URL" -F "code=YOUR_CUSTOM_NAME"URLs that can be created is from:
https://github.com/*https://*.github.comhttps://*.github.com/*https://*.github.io
Command:
curl https://git.io/ -i -F "url=https://github.com/YOUR_GITHUB_URL" -F "code=YOUR_CUSTOM_NAME"URLs that can be created is from:
https://github.com/*https://*.github.comhttps://*.github.com/*https://*.github.ioSave this XML somewhere like $HOME/Downloads alongside the Anka .pkg file.
Install/reinstall using this xml to enabled nested virtualization with the Anka command line installation instructions:
sudo installer -applyChoiceChangesXML nanka.xml -pkg AnkaBuild-1.4.3.104.pkg -target /
If your hardware supports things properly, you should be able to install Docker for Mac inside the VM and use it.| $ sudo apt-get install dex | |
| $ /usr/bin/dex -c /usr/bin/dex -t ~/.local/share/applications/ | |
| #Based on <http://gallery.technet.microsoft.com/scriptcenter/Get-PendingReboot-Query-bdb79542> | |
| function Test-RebootRequired | |
| { | |
| $result = @{ | |
| CBSRebootPending =$false | |
| WindowsUpdateRebootRequired = $false | |
| FileRenamePending = $false | |
| SCCMRebootPending = $false | |
| } |
| Set-StrictMode -Version Latest | |
| # Constants | |
| if (!(Test-Path variable:\NET_FW_DISABLED)) { Set-Variable NET_FW_DISABLED $False } | |
| if (!(Test-Path variable:\NET_FW_ENABLED)) { Set-Variable NET_FW_ENABLED $True } | |
| if (!(Test-Path variable:\NET_FW_IP_PROTOCOL_TCP)) { Set-Variable NET_FW_IP_PROTOCOL_TCP 6 } | |
| if (!(Test-Path variable:\NET_FW_IP_PROTOCOL_UDP)) { Set-Variable NET_FW_IP_PROTOCOL_UDP 17 } | |
| if (!(Test-Path variable:\NET_FW_PROFILE_DOMAIN)) { Set-Variable NET_FW_PROFILE_DOMAIN 0x1 } | |
| if (!(Test-Path variable:\NET_FW_PROFILE_PRIVATE)) { Set-Variable NET_FW_PROFILE_PRIVATE 0x2 } | |
| if (!(Test-Path variable:\NET_FW_PROFILE_PUBLIC)) { Set-Variable NET_FW_PROFILE_PUBLIC 0x2 } |
| $commandArgs = "/i Octopus-Server.msi /quiet INSTALLLOCATION=C:\OctopusServer /lv Octopus-Server-Install-Log.txt" | |
| Start-Process "msiexec" $commandArgs -Wait -Verb RunAs |
| var server = "http://yourserveraddress:8065/"; //Your server and IP address | |
| var apiKey = "API-XXXXXXXXXXXXXXXXXXXXXXXXX"; // Get this from your 'profile' page in the Octopus web portal | |
| var endpoint = new OctopusServerEndpoint(server, apiKey); | |
| var repository = new OctopusRepository(endpoint); | |
| var task = new Octopus.Client.Model.TaskResource(); | |
| task.Name = "AdHocScript"; | |
| task.Description = "Script invoked via API"; |
| function Out-Diff { | |
| <# | |
| .Synopsis | |
| Redirects a Universal DIFF encoded text from the pipeline to the host using colors to highlight the differences. | |
| .Description | |
| Helper function to highlight the differences in a Universal DIFF text using color coding. | |
| .Parameter InputObject | |
| The text to display as Universal DIFF. | |
| #> | |
| [CmdletBinding()] |
http://confluence.jetbrains.com/display/TCD8/Installing+and+Configuring+the+TeamCity+Server
net user tcservice * /add /expires:never /passwordchg:no
| $vsixPath = "$($env:USERPROFILE)\sqlite-wp81-winrt-3081002.vsix" | |
| (New-Object Net.WebClient).DownloadFile('https://visualstudiogallery.msdn.microsoft.com/5d97faf6-39e3-4048-a0bc-adde2af75d1b/file/132406/15/sqlite-wp81-winrt-3081002.vsix', $vsixPath) | |
| "`"C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\VSIXInstaller.exe`" /q /a $vsixPath" | out-file ".\install-vsix.cmd" -Encoding ASCII | |
| & .\install-vsix.cmd |