Sunday, 29 August 2021

Why You should Write Blog and Create YouTube video

For your personality development, personal growth on your own field. And for getting some financial benefits you must write blogs and create your video. You contribute to the society and make better world. In this video I will talk to you why you should write blogs and create youtube videos?| https://youtu.be/zINCN5hyZeQ| Full Stack Master

Sunday, 22 August 2021

Replace Tag in Azure Resource Using Update-AzTag

Replace Tag in Azure Resource using Update-AzTag ```powershell $tags = @{"Dept"="Sales"; "Status"="High"} # Replace tags Update-AzTag -ResourceId $resource.id -Tag $tags -Operation Replace ```| https://youtu.be/0GJ27K3CWXA| Full Stack Master

Sunday, 15 August 2021

Merge Tag in Azure Resource using Update-AzTag

Learn how you can Merge new Tag in Azure Resource ```powershell $tags = @{"Location"="Canada"} # Merge Tag Update-AzTag -ResourceId $resource.id -Tag $tags -Operation Merge ```| https://youtu.be/8vtnn1ZacNg| Full Stack Master

Sunday, 8 August 2021

Creating Azure Storage Account

Azure Storage account is a resource in Azure. You can select create resource and search for Storage Account and then create new storage account for you. https://rupeshtiwari.com/creating-azure-storage-account/#turn-on-soft-delete-for-containers.| https://youtu.be/Q8VH9CigNho| Full Stack Master

Delete Tag in Azure Resource

Delete Tag in Azure Resource using Update-AzTag -Operation Delete To remove all tags from your Azure subscription, use the [Remove-AzTag](https://ift.tt/2VzLWEg) command. ```powershell # Get subscription by it's name $subscription = (Get-AzSubscription -SubscriptionName "Example Subscription").Id # Remove the tags Remove-AzTag -ResourceId "/subscriptions/$subscription" ```| https://youtu.be/2211KACFlmw| Full Stack Master

Friday, 6 August 2021

Uploaded Blob properties in Azure Blob Storage

After uploading blob you can see the properties of your blob in the azure storage account.| https://youtu.be/TtXZyfdRDU8| Full Stack Master

Sunday, 1 August 2021

Create Tag in Azure Resource using New-AzTag

For Creating Tag in Azure Resource using New-AzTag use `New-AzTag` to apply tag on resource in **Azure**. ```powershell # Create Tag variable $tags = @{"Dept"="Finance"; "Status"="Normal"} # Get the resource that you want to appply tag on. $resource = Get-AzResource -Name "Application Insights Smart Detection" -ResourceGroup AdmissionApplication # Apply Tag New-AzTag -ResourceId $resource.id -Tag $tags ```| https://youtu.be/QTDDL8_0N3c| Full Stack Master