When managing an environment with multiple teams accessing and managing different services in the same subscription it is sometimes ideal to segregate the services by a resource group dedicated for each team. Segragation on top of subscription can be achieved by Resource Groups. When multiple teams and resource groups exists, it is important to apply … Continue reading Creating a Resource Group with a Service Principal for Deployments
Tag: powershell
HDInsight – Provision a Hadoop Cluster on Azure
Creating a Hadoop cluster on Azure is easy, yet requires some steps. In this blog entry we provide a skeleton PowerShell script to get you started. Requirements To run this script, you need to have Azure PowerShell SDK installed on your machine. To check if it is already installed on your machine run the command: … Continue reading HDInsight – Provision a Hadoop Cluster on Azure
Azure PowerShell SDK
Before running any Azure PowerShell command you need to install the Azure PowerShell SDK on your machine. To check if you already have this installed run the command: PS C:\> Get-Module -ListAvailable Azure Directory: C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\ServiceManagement ModuleType Version Name ExportedCommands ———- ——- —- —————- Manifest 1.0.1 Azure {Disable- AzureServiceProjectRemoteDesktop, Enable-AzureSer… … Continue reading Azure PowerShell SDK
Nuget Sitecore Habitat
Sitecore Habitat is an open source library that provides over 50 modules for Sitecore that can be used within any project. This article outlines one way of building Sitecore Habitat project into Nuget Packages using TeamCity. Note: It is assumed that: You already have configured TeamCity Server and at least one TeamCity Build Agent. You … Continue reading Nuget Sitecore Habitat
Nuget Package Create through Powershell
Nuget packages are a popular way to distribute .NET libraries both internally and externally. Creating a nuget package from a project source is easy. In the command window, navigate to the project directory nuget spec nuget pack <Project>.csproj or Nuget pack <Project>.vbproj That is quite straightforward and easy to script. However this process has two … Continue reading Nuget Package Create through Powershell