Skip to content

Instantly share code, notes, and snippets.

View nextechu's full-sized avatar

Bruce Kyle nextechu

View GitHub Profile
Install-Module AzureADPreview
-- connect to Azure Active Directory
-- puts up a log in dialog for your Azure subscription
Connect-AzureAD
Login-AzureRmAccount
Install-Module AzureAD
-- for preview version
-- Install-Module AzureADPreview
-- connect to Azure Active Directory
-- puts up a log in dialog for your Azure subscription
Connect-AzureAD
Install-Module MSOnline
-- connect to Azure Active Directory
-- puts up a log in dialog for your Azure subscription
Connect-AzureAD
Get-Module AzureRM
Get-Command -Module AzureRM
@nextechu
nextechu / install-azure-rm.ps
Last active May 15, 2017 20:27
Install Azure Resource Manager Powershell
-- check to see if you have PowerShellGet
Get-Module PowerShellGet -list | Select-Object Name,Version,Path
Install-Module AzureRM -AllowClobber
-- once everything is installed, you need to load the module into your PowerShell session
Import-Module AzureRM
if ($(“div”).length) {
//do something.
}
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<div>
<div id="div1">My div with id attribute of div1</div>
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<p id="hellothere" class="hello">Hello</p>
<p class="hello">World</p>
<script src="Scripts/jquery-2.1.0.js"></script>
<script>
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<p id="hellothere" class="hello">Hello</p>
<p class="hello">World</p>
<script src="Scripts/jquery-2.1.0.js"></script>
<script>