This file contains hidden or 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
RoomId | RoomName | BuildingName | |
---|---|---|---|
1 | A101 - Lobby | Main Building | |
2 | A102 - Storage Room | Main Building | |
3 | A103 - Cafeteria | Main Building | |
4 | A201 - Cafeteria | Main Building | |
5 | A202 - Office | Main Building | |
6 | A203 - Office | Main Building | |
7 | A301 - Cafeteria | Main Building | |
8 | A302 - Conference room | Main Building | |
9 | B101 - Lobby | Grace Hopper Building |
This file contains hidden or 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
printf "\n*** AZURE IOT & SYNAPSE Workshop Creation on Subscription #$SUBSCRIPTION_ID ***\n" | |
SUBSCRIPTION_ID=`az account show --query id --output tsv` | |
MAIN_REGION=westeurope | |
printf "\n*** Working on on Subscription #$SUBSCRIPTION_ID and region $MAIN_REGION***\n" | |
read -p 'New resource group name: ' RESOURCE_GROUP_NAME | |
read -p 'Unique prefix (applied to all resources): ' RESOURCE_PREFIX | |
STORAGE_ACCOUNT_NAME="$RESOURCE_PREFIX"rawstor |
This file contains hidden or 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/2015-01-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": { | |
"resourceNameSuffix": { | |
"defaultValue": "deployment", | |
"type": "String" | |
} | |
}, | |
"variables": { |
This file contains hidden or 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-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
Update-ExecutionPolicy RemoteSigned | |
choco install -y Microsoft-Hyper-V-All -source windowsFeatures | |
choco install -y Microsoft-Windows-Subsystem-Linux -source windowsFeatures | |
# CommandLine | |
choco install -y cmder | |
choco install -y hyper |
This file contains hidden or 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
choco install googlechrome | |
choco install adobereader | |
choco install firefox | |
choco install winrar | |
choco install vlc | |
choco install visualstudiocode | |
choco install office365business |