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
$User = Read-Host -Prompt "Input your username" | |
# Install Chocolatey | |
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).Downloa | |
dString('https://chocolatey.org/install.ps1')) | |
# | |
# Install Programs | |
# | |
choco install jre8 -y |
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 | |
# Ref | |
# https://docs.microsoft.com/en-us/cli/azure/cosmosdb?view=azure-cli-latest#create | |
# Set variables for the new account, database, and collection | |
resourceGroupName='myResourceGroup' | |
location='southcentralus' | |
name='docdb-test' | |
databaseName='docdb-test-database' | |
collectionName='docdb-test-collection' |
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
{ | |
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#", | |
"handler": "Microsoft.Compute.MultiVm", | |
"version": "0.1.2-preview", | |
"parameters": { | |
"basics": [ | |
{ | |
"name": "vmName", | |
"type": "Microsoft.Common.TextBox", | |
"label": "Virtual Machine name", |