Showing archive results for 2014

Nov 18, 2014
Post comments count0
Post likes count0

PowerTip: Get Azure Subscription Names with PowerShell

Doctor Scripto

Summary: Use Windows PowerShell to get the name of cmdlets referring to your Azure subscription.  Is there an easy way to obtain the Azure cmdlets referring to my subscription name?  Use the Get-AzureSubscription cmdlet and access the SubscriptionName property: (Get-AzureSubscription).subscriptionname If you have multi...

Windows PowerShellPowerTipguest blogger
Nov 18, 2014
Post comments count0
Post likes count0

Manage Azure IaaS with Windows PowerShell: Part 2

Doctor Scripto

Summary: Attend to prep work to get  virtual machine cmdlets working. Honorary Scripting Guy, Sean Kearney is here with some scribbly notes to help you out with Azure scripts for your virtual machines. Note  This is the second post in a series. You might also enjoy reading Manage Azure IaaS with Windows PowerShell: Part 1. Befor...

Windows PowerShellguest bloggerSean Kearney
Nov 17, 2014
Post comments count0
Post likes count0

PowerTip: Connect to Azure to Leverage PowerShell Cmdlets

Doctor Scripto

Summary: Learn how to use the Microsoft Azure cmdlets to connect to an Azure subscription. I downloaded the Azure PowerShell cmdlets, and I when I run them, they produce an            error. How do I authenticate to Microsoft Azure from the cmdlets? Use a combination of two cmdlets (Get-AzurePublishSettingsFi...

Windows PowerShellPowerTipguest blogger
Nov 17, 2014
Post comments count0
Post likes count0

Manage Azure IaaS with Windows PowerShell: Part 1

Doctor Scripto

Summary: Establish a connection to Azure through Windows PowerShell. Honorary Scripting Guy, Sean Kearney, is here. I'm back from the MVP Summit with my head in the clouds! More specifically, the Azure sky! Yes, my head is truly in the clouds. About a month ago, I got some training in Microsoft Azure and I got to meet the fellow who created th...

Windows PowerShellguest bloggerSean Kearney
Nov 16, 2014
Post comments count0
Post likes count0

PowerTip: Continue a Windows PowerShell Script After Restart

Doctor Scripto

Summary: Learn how to continue a script after a remote system restart by using Windows PowerShell. I am configuring MPIO to automatically claim the iSCSI Bus Type, which requires a restart. However, I want to continue           automating afterward, so how do I continue my script from that point? Introduced i...

Scripting Guy!Windows PowerShellPowerTip