Skip to main content

Microsoft Learn - Reinvents the way of learning

The learning journey for Microsoft technologies was consolidated in one story - Microsoft Learn. The consolidation of all learning resources, certification paths, events and community in one place provides a central location from where we can learn and develop our skills. 

Four main pillars are provided by Microsoft Learn:

  • Discover new ways to use technology - See how to apply Microsoft technology to achieve your goals and reach your potential. 
  • Learn by doing Learn by doing through interactive learning experiences and technical resources that help you build skills and solve problems. 
  • Showcase your skills Advance in your field by earning certifications and completing challenges that demonstrate your expertise. 
  • Connect with the community - Engage with other learners for inspiration, resources, and networking.
  • Remember that all resources are provided for free and cover not only fundamental knowledge but also the specialization and advanced level.  

    When should you use Microsoft Learn?

    It is the perfect starting place if you want to learn new Microsoft technologies or you want to improve your current expertise. The full learning path for certification is provided by the platform, including interactive free labs (hands-on) and online training. The ability to connect with the community and learn from their experience is priceless. 

    What kind of materials are available?

    The short answer is: the full spectrum of materials. Going into more detail, you can find 6 main types of resources:

    1. Certification: The learning path and materials for each certification type provided by Microsoft.

    2. Training: Instructor-led and virtual or in-person courses provided by MCT (Microsoft Certified Trainers and Microsoft partners covering all technologies, including Microsoft Azure.

    3. Documentation: Technical documentation related to all Microsoft technologies, frameworks and tools. 

    4. Q&A: The Q&A platform where the community and Microsoft teams provide support. 

    5. Events and Shows: Video content provided by Microsoft and the community. We should consider that Shows are the video content available on the platform, and Events are live or on-demand events. 

    The value of Microsoft Learn

    Let's take a look at an example. Let's assume I would like to improve my security skills related to Microsoft Azure. By searching for "Azure Security" in Microsoft Learn, you can get all the resources available, and filter them per area and products. To improve my skills, I would start to cover 2-3 security training, join security events and cover a certification path. All of this is available in one location - Microsoft Learn

     

    Microsoft Learn should be one of the learning resources used by all IT specialists using Azure and Microsoft technologies.  






    Comments

    Popular posts from this blog

    Windows Docker Containers can make WIN32 API calls, use COM and ASP.NET WebForms

    After the last post , I received two interesting questions related to Docker and Windows. People were interested if we do Win32 API calls from a Docker container and if there is support for COM. WIN32 Support To test calls to WIN32 API, let’s try to populate SYSTEM_INFO class. [StructLayout(LayoutKind.Sequential)] public struct SYSTEM_INFO { public uint dwOemId; public uint dwPageSize; public uint lpMinimumApplicationAddress; public uint lpMaximumApplicationAddress; public uint dwActiveProcessorMask; public uint dwNumberOfProcessors; public uint dwProcessorType; public uint dwAllocationGranularity; public uint dwProcessorLevel; public uint dwProcessorRevision; } ... [DllImport("kernel32")] static extern void GetSystemInfo(ref SYSTEM_INFO pSI); ... SYSTEM_INFO pSI = new SYSTEM_INFO(

    Azure AD and AWS Cognito side-by-side

    In the last few weeks, I was involved in multiple opportunities on Microsoft Azure and Amazon, where we had to analyse AWS Cognito, Azure AD and other solutions that are available on the market. I decided to consolidate in one post all features and differences that I identified for both of them that we should need to take into account. Take into account that Azure AD is an identity and access management services well integrated with Microsoft stack. In comparison, AWS Cognito is just a user sign-up, sign-in and access control and nothing more. The focus is not on the main features, is more on small things that can make a difference when you want to decide where we want to store and manage our users.  This information might be useful in the future when we need to decide where we want to keep and manage our users.  Feature Azure AD (B2C, B2C) AWS Cognito Access token lifetime Default 1h – the value is configurable 1h – cannot be modified

    ADO.NET provider with invariant name 'System.Data.SqlClient' could not be loaded

    Today blog post will be started with the following error when running DB tests on the CI machine: threw exception: System.InvalidOperationException: The Entity Framework provider type 'System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer' registered in the application config file for the ADO.NET provider with invariant name 'System.Data.SqlClient' could not be loaded. Make sure that the assembly-qualified name is used and that the assembly is available to the running application. See http://go.microsoft.com/fwlink/?LinkId=260882 for more information. at System.Data.Entity.Infrastructure.DependencyResolution.ProviderServicesFactory.GetInstance(String providerTypeName, String providerInvariantName) This error happened only on the Continuous Integration machine. On the devs machines, everything has fine. The classic problem – on my machine it’s working. The CI has the following configuration: TeamCity .NET 4.51 EF 6.0.2 VS2013 It see