windows powershell and microsoft azure : “global windows azure bootcamp 2014 slides

36
“Global Windows Azure BootCamp 2014”

Upload: aman-dhally

Post on 26-Dec-2014

594 views

Category:

Education


2 download

DESCRIPTION

I have presented this Presentation on "Global Windows Azure Bootcamp 2014". In these slides i have mentioned on how to connec to Microsoft Azure using PowerShell. I hope you will find it useful. Regards Aman

TRANSCRIPT

Page 1: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

“Global Windows Azure BootCamp 2014”

Page 2: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

“How to connect to Windows Azure using PowerShell”

Page 3: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

http://bit.ly/1g6fBCC

Please note !

Page 4: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

“Intro : Windows Azure”

Page 5: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

Windows Azure

Windows Azure is an open and flexible cloud platform that enables you to quickly build, deploy and manage applications across a global network of Microsoft-managed datacentres. You can build applications using any language, tool or framework. And you can integrate your public cloud applications with your existing IT environment.

Page 6: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

Benefits

1. Eco friendly2. Improved TCO3. Increased Stability4. As Service

1. Software as Service2. Platform as Service

5. Datacentre in the Cloud

Page 7: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

Single Place for.

1. Hosting Websites2. Virtual Machines3. Mobile Services4. Media5. SQL Database6. BIG Data7. Visual Studio Online8. Biz Talk Server

Page 8: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

“Intro : Windows PowerShell”

Page 9: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

1. Designed by “Jeffrey Snover, Bruce Payette and James Truher 2. Started as project “Monad” in 2002 , in April 2005 Microsoft renamed it as

“Windows PowerShell”. 3. For windows XP, Server 2003 available as optional feature.4. Now Integrated in Windows 7 and later OS.5. Current version is 4.06. Task based Command Line Shell and Scripting Language.7. Based on .NET framework.8. Syntax: verb-noun9. It is a scripting language but we can design GUI Applications too.

Windows PowerShell

Page 10: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

PowerShell GUI Applications

Page 11: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

# Multiple Sites$mySitesNames = "SalesGlobalLogic", "ITGlobalLogic", "InfoGlobalLogic"foreach ( $siteName in $mySitesNames ) { Write-Host "Crating website $siteName" -ForegroundColor Green New-AzureWebsite -Location "East Asia" -Name $siteName

}

Scripts…

Page 12: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

Let’s Get Started ..

Page 13: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

“Download Windows Azure PowerShell Module”

Page 14: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

Windows Azure PowerShell Module

• Microsoft Web Platform Installer

http://bit.ly/1i14PAe• WindowsAzurePowerShell.3f.3f.3fnew

Page 15: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

“Installing Windows Azure PowerShell Module”

Page 16: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

Installing…

Page 17: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

I Accept..

Page 18: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

Installing…

Page 19: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides
Page 20: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

Finish..

Page 21: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

Yayyy!!!

Page 22: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

“Connect to Windows Azure”

Page 23: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

1. Active Directory Authentication1. Expire after 12 Hours

2. Certificate Authentication1. They are valid until the subscription in available and certificates are valid.

Two types of Methods to connect

Page 24: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

1. Using “Add-AzureAccount” cmdlet.

Azure Active Directory Authentication

Page 25: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

“Demo”

Page 26: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

“http://newdelhipowershellusergroup.blogspot.in/2014/02/part-2-azure-and-powershell-

connect-to.html”

Page 27: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

1. Get-AzurePublishSettingsFile 2. Import-AzurePublishSettingsFile

Using Certificates

Page 28: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

“Demo again…”

Page 29: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

“http://newdelhipowershellusergroup.blogspot.in/2014/02/part-2-azure-and-powershell-

connect-to.html”

Page 30: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

“More Demo . . . .”

Page 31: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

$mySitesNames = "SalesGlobalLogic", "ITGlobalLogic", "InfoGlobalLogic" foreach ( $siteName in $mySitesNames ) { Write-Output "Creting website $siteName" New-AzureWebsite -Location "East Asia" -Name $siteName }

Creating multiple Sites

Page 32: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

“More Demo . ………. . .”

Page 33: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

Get-AzureWebsite | Select Name,State | ConvertTo-Html -Body "<h1> Azure Website reports </h1>" | Out-File E:\Temp\AzureReport.html

Exporting website State

Page 34: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

About me.

• PowerShell MVP• Founder of “New Delhi PowerShell

User Group”• Technical Reviewer of “Instant

Windows PowerShell Guide” book.• Blogger• Scripter• Book Reviewer• Event Speaker on PowerShell

www.amandhally.net

@amandhally

https://www.facebook.com/aman.dhally

http://NewDelhiPowershellUserGroup.blogspot.in

Page 35: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

In the last….always remember

Page 36: Windows Powershell and Microsoft Azure : “Global Windows Azure BootCamp 2014 Slides

And…………