Skip to content

Instantly share code, notes, and snippets.

View johlju's full-sized avatar
👋
Reviewing, coding and reviewing again

Johan Ljunggren johlju

👋
Reviewing, coding and reviewing again
View GitHub Profile
@johlju
johlju / New-AzureServicePrincipal.ps1
Last active August 13, 2017 08:34
New-AzureServicePrincipal
<#
.SYNOPSIS
New-AzureServicePrincipal
.DESCRIPTION
This task creates an Azure Service Principal in Azure AD that will be used for all installation automation.
This can only be run interactively as the Login-AzureRmAccount will pop up an interactive window for
the user to log in with.
The output of this task can be used to deploy the application in future and should be stored in each contributors AppVeyor account.
#>
@johlju
johlju / Get-SQLScript.sql
Last active January 5, 2018 15:15
Example using SqlScript
SELECT name FROM sys.databases WHERE name = 'MyScriptDatabase1'