Azure
-
PowerToys
Microsoft PowerToys gives users flexibility to search apps and run commands straight from your desktop for better productivity. How to…
Read More » -
Manage Azure WVD Hostpools – Cmdlets PS
If you have deployed Azure WIndows Virtual Desktop to your azure environment and not using any managment tools to manage…
Read More » -
Remove Azure Runbooks – PS Script
Remove all runbooks with specific names from specific Automation Acct from Azure I was recently being tasked to create a…
Read More » -
Part 9 – Arm Template – Parameter File
Add parameter files You can use a separate JSON file to store the value for parameters being declared on base…
Read More » -
Part 7 – Arm Template – Use Export Template
IN our last Part 6 we used output for our template as this below JSON: { "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0",…
Read More » -
Part 6 – Arm Template – Use OutPuts
Create OutPuts As you saw on Part 5, we had this tempalate below: { "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {…
Read More » -
Part 5 – Arm Template – Use Functions
Create Functions: { "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageName": { "type": "string", "minLength": 3, "maxLength": 24 }, "storageSKU": {…
Read More » -
Part 4 – Arm Template – Use Variable
Create Variable: We can use variable similar to parameters to add values to each resource properties. The difference between them…
Read More » -
Part 3 – Arm Template – Use Parameters
Create Parameters: In order to change your template as reusable, we can use parameter to place it in storage account…
Read More »