Hi folks!Great to see you again.This blog post is purely based on Azure Blob Storage: The PowerShell way!In this blog post, I will1. Create a New Azure ResourceGroup2. Create a Storage account3. Create a New Container inside the Blob Storage of Storage Account.4. Upload a text file from your current machine to Azure container using AzCopy. Please Follow the Steps Below: #Create a New Azure S...
Read More
We were hearing about Dynamics NAV 2017 since long time that it will be releasing by the end of 2016 which will be coming up with further integration of office 365 and few many more interesting features (called project Madeira).Yes, now Microsoft has released the beta version of NAV 2017. Here is the brief description about the road Map of NAV 2017 release Fig 1. Shows roadmap of Microsoft Dynamics NAV...
Read More
Hi Folks,In this Blog Post we will learn how to create an Azure ARM Virtual Machine using Azure PowerShell.For this, you will need an Azure Subscription and machine with Latest Azure PowerShell installed. 1. Run the following script in Azure Powershell: //Replace MyName with YourName everywhere. Login-AzureRmAccount $locName = "Central US" $rgName = "MyName-RG" $vnetName = "MyName-VNET" #Getting the Storage Acc...
Read More
Following the below steps you can build and deploy your ASP.NET app to Azure from either Visual Studio Team Services Upload your codeUpload your latest code to Visual Studio Team Services repository.Create the definition Login to your VSTS accounthttps://xxxxxxxx.visualstudio.com/ Open your team project in your web browser.https://xxxxxxxx.visualstudio.com/MyFirstProjectVerify that the VSTS version control is updated with the latest code Create a build definition.· &...
Read More
While testing a web application it is very important to test the application on different browsers. We can achieve this by using Selenium Web driver and TestNG. If there are more number of scripts to be executed and executing them on each and every browsers sequentially is time consuming. This can be avoided using a concept in Selenium called Parallel Execution. TestNG allows us to run the test cases/scripts, test methods or tests in parallel, With Parallel Execution concept we can re...
Read More
Azure AD is a service that provides identity and access management capabilities in the cloud. Azure AD can be integrated with existing on-premise AD for providing single sign-on functionality for their users to access the cloud applications. So it is essential for organizations to keep the credentials in both on-premise AD and Azure AD to be in sync. To solve the sync issues, we have Azure Active Directory connect tool, which provides one-way synchronization from on-premise AD to Azure AD....
Read More
Configure a Point-to-Site connectivity to a VNet using PowerShell (ARM Mode)Task 1: Create a Self-Signed certificate 1. Login to your Visual Studio Virtual Machine using your credentials. Create a folder C:\P2S Certificates. 2. Navigate to C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Microsoft Visual Studio 2012\Visual Studio Tools and Run VS2012 x64 Cross Tools Command Prompt as an administrator. 3. ...
Read More
Hello Folks!In this Blog post, we will try to learn how to create an Azure V-Net using an ARM template. I have divided the post into two tasks. Please follow the steps to complete the deployment.Task 1: Download the Template from GitHub 1. Open the internet explorer and type https://github.com/Azure/azure-quickstart-templates/tree/master/101-vnet-two-subnets 2. Click azuredeploy.json, and then click RAW. 3. ...
Read More
When you are working with certain projects which involves the Customer records, you might need to track of each and every addition/change made to system along with who create, modify and delete the records. Here I am going to show you how to implement the Audit Trail using Entity Framework in ASP.NET. Entity Framework keeps track of entity objects when we have modified them. Here I am going to use the ‘ObjectStateManager’ which is EF’s caching management object to access t...
Read More
Entity Framework Code First Approach Entity Framework is an enhancement to an existing ADO.Net technique and ORM framework we used for Microsoft technologies.The Entity framework is an object-relation mapper, means it takes the structure of the database and turns it into objects that the .Net framework can understand. Developers use those object to interact with the database instead of interacting with database directly. It’s possible to perform the full set of Create, Read, Upda...
Read More