View Install Azure AD Preview
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install-Module AzureADPreview | |
-- connect to Azure Active Directory | |
-- puts up a log in dialog for your Azure subscription | |
Connect-AzureAD |
View Log in to Azure Resource Manager
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Login-AzureRmAccount |
View Install Azure Active Directroy v2 PowerShell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
View Install Azure Active Directory v1 Powershell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install-Module MSOnline | |
-- connect to Azure Active Directory | |
-- puts up a log in dialog for your Azure subscription | |
Connect-AzureAD |
View Check Azure Powershell install
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-Module AzureRM | |
Get-Command -Module AzureRM |
View install-azure-rm.ps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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 |
View jquery-test-exist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ($(“div”).length) { | |
//do something. | |
} |
View jquery-lots-of-selectors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
</head> | |
<body> | |
<div> | |
<div id="div1">My div with id attribute of div1</div> |
View jquery-selector-by-class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
View jquery-jquery-hello-by-id
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
NewerOlder