Monday, October 22, 2018

Azure Blob Storage Tiers

Azure Blob Storage Tiers There are few points which you should remember while developing or managing Azure Storage pertinent to Tier for data access. Azure Hot Storage  Tier ----> It uses for fast retrieval of data or lowest data retrieval cost and lowest data access cost though higher data storage cost involve. Azure Cool Storage ...

Saturday, October 13, 2018

WINDOWS POWERSHELL COMMANDS

WINDOWS POWERSHELL COMMANDSOpen your power shell from command prompt as a administrator.Point to remember : Declare any variable with $y in PowerShell C:\WINDOWS\system32>$array ="India","Japan","Aus","US","UK"C:\WINDOWS\system32> $arrayIt will list an array PS C:\WINDOWS\system32> $array[2]It gives value on index 2 , which is AUS in our...

Wednesday, October 10, 2018

Conducted and Executed Azure session in Noida today Some Glimpse Conversation following topics AzureARM Portal (Azure Resource Manager)Azure Service ModelARM Portal Deep Dive Platform As A Service(PaaS)Hosting .Net WEBAPI ApplicationApplication Insights Application Insights Telemetry Live Streaming of execution Logic Apps as WebHookLogic apps integration...

Sunday, October 7, 2018

POWER SHELL COMMANDS

POwer SHELL COMMANDS get-help workerrole get-help webrole get-help *content* get-help storage get-command *event get-eventlog system get-eventlog system -newest 10 // to get latest 10 log  get-eventlog system -newest 10 | where {$_.instanceid -eq 129} // To get the specific event  get-eventlog system -newest 10 | where {$_.instanceid -lt 1219} // to get all events less than event id...