Skip to content

Instantly share code, notes, and snippets.

View omarv74's full-sized avatar

D. Omar Villarreal omarv74

  • Dallas/Fort Worth
View GitHub Profile
@akanieski
akanieski / Namespaces.cs
Created July 16, 2021 03:57
All Azure DevOps Security Namespaces and Permissions
// Auto-Generated - Do not edit
using System;
namespace ADO.ObjectModel.Permissions
{
public enum Analytics : int
{
Read = 1,
Administer = 2,
Stage = 4,
ExecuteUnrestrictedQuery = 8,
@pietergheysens
pietergheysens / CreateVSALMVMs.ps1
Created January 3, 2018 16:28
Create Visual Studio ALM Virtual Machines based on specialized vhd file in Microsoft Azure
Login-AzureRmAccount
Select-AzureRmSubscription -SubscriptionId "<yoursubscriptionid>"
$destinationResourceGroup = Read-Host -Prompt "What's the desired resource group name?"
$numberOfVMs = Read-Host -Prompt "How many VMs do you want to generate?"
$location = "West Europe"
$vmSize = "Standard_F4s_v2"
$accountType = "PremiumLRS"