Resources  
  • Create Service Connections in Azure DevOpsMar 28, 2024. Learn how to set up service connections in Azure DevOps for seamless integration with Power Platform. Follow step-by-step instructions to configure essential details like Server URL, Tenant ID, Application ID, and Client Secret. Grant access permissions and save your service connection for successful integration.
  • Provide Security Role Access for D365 OutlookMar 14, 2024. In this article, we will customize permissions, manage user access, and enforce Role-Based Access Control (RBAC). Optimize Microsoft 365 settings to tailor access rights, enhancing data protection and organizational compliance.
  • Securing Remote Access to SQL ServerMar 05, 2024. Securing remote access to SQL Server is paramount for data protection and compliance. Explore methods like VPNs, firewalls, encryption, and multi-factor authentication for enhanced security and protection against cyber threats.
  • What are Properties in C#? Mar 04, 2024. In this article, we will learn about properties in C#, different types of properties, how to define and use them, and some best practices when working with properties in C#, properties in C# are a way to encapsulate data and provide controlled access to it.
  • MSAL for Vanilla JS SPA: Get JWT Access & ID TokensMar 01, 2024. This document provides an overview of Microsoft Authentication Library (MSAL) and its role in implementing secure authentication in Vanilla JavaScript Single Page Applications (SPAs). It discusses the significance of MSAL in obtaining JWT (JSON Web Token) Access Tokens and ID Tokens from Microsoft identity services.
  • Understanding and Managing Access Control in SharePointFeb 29, 2024. Understanding and Managing Access Control in SharePoint in detail step by step , such as Grant Permissions, Create Group ,Grant/Edit User Permissions ,Remove User Permissions , Modify Permissions ,Check Permissions , Permission Levels , Access Request Settings , Site Collection Administrators.
  • Integration Guide: Effortless Microsoft Graph API Access SSOFeb 06, 2024. Discover the Power of Integration: Dive into our comprehensive guide on accessing Microsoft Graph API in C#! Uncover step-by-step instructions, best practices, and practical examples to seamlessly retrieve Events, User Data, and more. The rich functionality of Microsoft Graph API and elevate your development skills to new heights.
  • Integration Guide for Effortless Microsoft Graph API AccessFeb 05, 2024. Discover the Power of Integration: Dive into our comprehensive guide on accessing Microsoft Graph API in C#! Uncover step-by-step instructions, best practices, and practical examples to seamlessly retrieve Events, User Data, and more. Empower your applications with the rich functionality of Microsoft Graph API and elevate your development skills to new heights.
  • Creating Azure Resource Groups, Advantages and DisadvantagesJan 31, 2024. Microsoft Azure employs Azure Resource Groups (RGs) for streamlined deployment and management. This guide explores creating, advantages, challenges, and best practices for effective cloud resource management.Creating Azure Resource Groups, Advantages and Disadvantages.
  • Mastering Permissions and Access Control in SharePointJan 12, 2024. Unlock the full potential of SharePoint permissions with this comprehensive guide. Dive deep into principles, strategies, and best practices for effective access control, ensuring a secure and organized collaborative environment.
  • External Data - Attributes - Profiling Data AccessJan 06, 2024. The external data is recognized as the data we must pull or push from outside of a boundary of the process hosting the computer program. A very important kind of external data is streaming data. Usually, this data kind is managed using file and stream concepts. To save/read working data using streams, we need serialization/deserialization operations between streaming and object-oriented data.
  • Cloning Repository from Github portal using PATJan 04, 2024. The article explains the steps on how to configure PAT and use PAT to clone the repository. Clone a GitHub repository securely using a Personal Access Token (PAT). Learn to generate a PAT in GitHub settings, then use it to modify the repository URL for a safe clone.
  • Registry Configuration for Launching Programs by File ExtensionsJan 03, 2024. Associating a specific program with a particular file type through registry configurations involves defining entries in the Windows Registry.
  • Mastering PostgreSQL CRUD Operations in .NET 8 with ADO.NETJan 01, 2024. Mastering PostgreSQL CRUD Operations in .NET 8 with ADO.NET: Best Practices and Code Examples
  • Manage Azure Subscription Owners: Add and Remove User AccessDec 22, 2023. Giving and taking away elevated privileges inside the Azure environment is what it means to designate and remove a user as an Owner of an Azure subscription. An owner has complete control over the subscription, including the ability to regulate resources, configurations, and user access.
  • Automate Cross Tenant Resource Access With Azure AD Entitlement ManagementDec 19, 2023. With the Azure AD Identity Governance feature “Entitle Management” it is easier to automate the access requests, set expiry dates, justify why a user needs access and get the load out of the IT admins.
  • Scaling Azure Databricks Secure Network Access to Azure Data Lake StorageDec 13, 2023. Explore secure network access in Azure Databricks to Azure Data Lake Storage. Learn setup, RBAC, and secure coding with practical examples.
  • How to Configure Microsoft Entra Application Proxy?Dec 12, 2023. Learn how Azure Application Proxy facilitates secure remote access to on-premises applications without a VPN. From prerequisites to step-by-step guidance on setting up and configuring the App Proxy connector, this article ensures you understand the process. Discover the benefits, including secure access, single sign-on, and hybrid deployment support. Follow the steps to enable and test the application, emphasizing secure external access without VPN requirements, making it a cost-effective solution for various scenarios.
  • SharePoint User Membership Identification Script for Access ManagementNov 27, 2023. his script aims to identify SharePoint sites where specific users hold membership, enabling efficient access management and site administration.
  • What is Windows App?Nov 17, 2023. Windows App is a centralized hub that provides users with a unified experience across their Windows devices, cloud PCs, and remote applications
  • Identity API Endpoints based Authentication and Authorization in .NET 8Nov 15, 2023. The second step in adding token-based authentication to ASP.NET Core Identity is to introduce the Identity API endpoints. Basically, this is an API version of the actions that you can perform with ASP.NET Core Identity through the classic web UI. Once you enable the Identity API endpoints, you will get endpoints like /register, /login, /forgotPassword, confirmEmail, etc.
  • ASP.NET Core Web API Development with Template Method Pattern and 3-Tier ArchitectureNov 13, 2023. This design pattern allows for a structured, modular, and easily maintainable architecture by separating concerns into distinct layers and leveraging the Template Method Pattern to provide a common structure for CRUD operations while allowing flexibility for additional logic in concrete implementations.
  • Implementing State Design Pattern in ASP.NET Core Web API with 3-Tier ArchitectureNov 10, 2023. In this ASP.NET Core Web API project utilizing a 3-Tier Architecture with the State Design Pattern, we've created a News management system that encapsulates the state of news items, allowing for a clear and structured way to handle state transitions. The architecture consists of three distinct layers: Presentation, Business Logic, and Data Access. The Business Logic layer is where the State Design Pattern is applied, with different states such as Draft, Published, and Archived, each represented by concrete state classes. The NewsService class is responsible for managing these states and their transitions. Controllers in the Presentation layer handle HTTP requests and delegate the state-related operations to the NewsService, enabling CRUD functionality for news items. By setting the appropriate state and invoking state-specific methods, such as Publish and Archive, we control the state transitions. While this example focuses on the pattern's core implementation, in a real-world scenario, you would integrate a data access layer to persist and retrieve news items from a database, making it a robust and maintainable system.
  • Optimizing Database Access in .NETNov 10, 2023. Optimizing database access in .NET involves picking the best tools, improving queries, managing connections efficiently, using caching, and monitoring performance. By doing this, you ensure your .NET apps run smoothly and respond quickly, enhancing the user experience.
  • Get the Azure AD token by Using the PostmanNov 08, 2023. Learn how to obtain the AD token by postman using client Id and Client Secret.
  • What is Access Modifiers in C#?Nov 07, 2023. In this article, we have covered the topic about access modifiers in C# and how many types of access modifiers in C#.
  • OpenID Connect and OAuth 2.0 CognizanceNov 01, 2023. An overview of OpenConnect and OAuth and its usage in the digital world. It introduces a standardized method for verifying user identities, allowing users to authenticate across different sites or applications without the need to create new credentials for each portal.
  • ASP.NET Core Web API Development with Observer Design PatternNov 01, 2023. This project represents a robust ASP.NET Core Web API application that manages tickets using a 3-tier architecture. The system provides full CRUD (Create, Read, Update, Delete) functionality for tickets. What sets this system apart is its use of the Observer Design Pattern, which enables real-time notifications to subscribers whenever a ticket is created, updated, or deleted. The three primary architectural layers include the Presentation Layer (API), Business Logic Layer (Service), and Data Access Layer (Repository), providing a well-structured and maintainable solution for ticket management.
  • Built-in Roles in Azure Synapse Analytics WorkspaceOct 29, 2023. Azure Synapse Analytics provides a range of built-in roles to manage access to Synapse resources, allowing administrators to control user and application actions within a workspace.
  • How Caching Improves Data Access Performance?Oct 23, 2023. In this article, we explore caching's role in enhancing data access performance. Caching involves storing frequently accessed data, reducing latency and database load. Despite its advantages, challenges like cache invalidation, size management, and policy selection need consideration for effective implementation.
  • ASP.NET Core Web API with 3-Tier Architecture and Iterator PatternOct 19, 2023. The Iterator Pattern is a behavioral design pattern that provides a way to access elements of a collection sequentially without exposing its underlying representation. It defines an interface for accessing the elements of a collection and keeps track of the current position within that collection.
  • How To integrate An Azure Storage Account With Azure Active Directory Oct 17, 2023. To integrate an Azure Storage Account with Azure Active Directory, you can use Azure AD authentication for your storage resources. This allows you to control access, implement role-based access control (RBAC), and monitor activities for your storage account within the Azure portal. By doing so, you enhance the security posture of your storage resources and simplify user access management.
  • How To Activate Eligible Membership To A Privileged (PIM) Group?Oct 16, 2023. This article provides instructions on how to activate one’s eligible membership to a privileged (PIM) group.
  • Troubleshooting Microsoft.Extensions.Hosting Service Access Error Oct 16, 2023. This message signifies an issue encountered while attempting to access services within Microsoft.Extensions.Hosting in a .NET application. Specifically, there was a problem with the application service provider, resulting in the need to proceed without accessing the associated services. It's a notification that an expected service or functionality might not be available, prompting the application to continue its operation while excluding the affected service provider.
  • Get SharePoint Online Access Token In .Net CoreOct 11, 2023. Learn how to register SharePoint app and how we can get SharePoint Online Access Token using registered app with C# code
  • Get SharePoint Online Access Token Using PythonOct 05, 2023. Python Code to Get SharePoint Online Access Token to Perform Read/Write
  • Building a Robust ASP.NET Core Web API with Singleton Design Pattern and Three-Tier ArchitectureOct 04, 2023. This example provides a basic structure for a Three-Tier Architecture in an ASP.NET Core Web API, implementing a Singleton Design Pattern for the Data Access Layer. Remember to adjust the code based on your specific requirements and consider using dependency injection for better testability and maintainability.
  • Grant Admin Access on a Schema in Azure SQL DatabaseSep 22, 2023. Grant Admin Access on a Schema in Azure SQL Database. This guide explains how to grant admin access to an Azure AD group for a specific schema within the Azure SQL Database, including necessary SQL statements and security considerations.
  • Simplified Access Control with Azure Temporary Access PassesSep 21, 2023. In today's dynamic business landscape, Azure offers a solution to facilitate short-term resource access—Temporary Access Pass (TAP). This article explores TAP, guiding you through its activation and management, simplifying resource allocation within Azure.
  • KAFKA for Mere Mortals : Topics and PartitionsSep 19, 2023. This article describes what is topic and partition and how partitions are split across the brokers
  • How to Generate a Shared Access Signatures (SAS) to an Azure Storage Account?Sep 14, 2023. Discover how Azure Storage leverages Shared Access Signatures (SAS) to enhance data security and access control in the cloud. Learn to generate SAS tokens for your storage account securely.
  • Containerize ASP.NET Core API with Docker for Azure KubernetesSep 12, 2023. Containerizing an ASP.NET Core API with Docker and managing containers using Azure Kubernetes Service (AKS) involves several steps. Below, I'll provide a step-by-step guide to help you achieve this. Please note that this is a high-level guide, and you may need to adjust the specific details based on your project's requirements and the current state of Azure services.
  • Access Windows PC using SSHSep 04, 2023. In this article, Will try to understand the accessing remote PC using ssh.
  • Empowering Secure Collaboration with Azure Shared Access PoliciesSep 02, 2023. Empowering Secure Collaboration with Azure Shared Access Policies
  • Best Practices for Maintaining Security and Preventing Vulnerabilities in C#Sep 01, 2023. This article will discuss some of the best practices for writing secure code in C#. These practices include using secure password hashing algorithms to store passwords, validating user input to prevent injection attacks, using parameterized SQL queries, using cryptography to protect sensitive data, using HTTPS to protect data in transit, avoiding hardcoding secrets in code, and keeping code up to date with the latest security patches and updates.
  • Simplify Your Data Access with Dapper.NETAug 31, 2023. Discover the agility of Dapper.NET, a micro-ORM. Harness its speed and raw SQL support for streamlined, high-performance data retrieval, even for stored procedures.
  • Access .NET Projects via LANAug 30, 2023. How you can access .NET project through LAN. Unlock the potential of LAN access for your .NET project. Discover how to create a web application, configure endpoints, and seamlessly access it from any device on the same network.
  • Data Access with Dapper.NETAug 30, 2023. Streamline data access with Dapper.NET, a lightweight ORM for .NET apps. Learn its key features like speed, lightweight design, raw SQL support, and automatic object mapping. Delve into practical examples showcasing basic and parameterized queries, plus stored procedure usage. Embrace Dapper.NET's efficiency for optimal data access in your .NET development journey.
  • Enhancing Security and Access Management with Microsoft EntraAug 24, 2023. Unveiling Microsoft Entra: Elevating Secure Identity and Access Management" is a resource that likely introduces and explores Microsoft Entra, a solution focused on enhancing identity and access management practices within the realm of cybersecurity. The content would likely cover the features, benefits, and implementation considerations of Microsoft Entra to provide organizations with a comprehensive understanding of its capabilities.
  • Control access to private data using Azure storage shared access signaturesAug 17, 2023. Learn how an architecture shift using a middleware service and short-duration Azure Storage Shared Access Signatures (SAS) improves data protection and access control. Understand the significance of Azure Storage SAS, its time-limited access, and the role of a SAS generator in securing privileged access.
  • Deploy Python FastAPI using Azure Container registryAug 08, 2023. In this article, we are going to learn how to deploy our first FastAPI using the Azure Container registry.
  • Fix: GitHub Access Error - Failed to Connect to github.com port 443, Time OutAug 07, 2023. This article discusses a bug in access to GitHub.
  • Capturing Phishing Email Using Custom Middleware in ASP.Net Core Web API Aug 02, 2023. To capture and detect phishing emails using custom middleware in an ASP.NET Core Web API, you can follow these general steps:Create Custom Middleware: Create a custom middleware that will intercept incoming HTTP requests and inspect the email content for potential phishing indicators. Middleware in ASP.NET Core can be used to perform custom processing on incoming requests and outgoing responses.
  • Resolving CORS Origin Using Custom Middle ware in ASP.Net Web API Aug 01, 2023. In ASP.NET Core, middleware is a component or piece of software that sits in the request-response pipeline. Middleware is used to handle or modify incoming HTTP requests and outgoing HTTP responses. It provides a way to add custom logic and behaviors to the application's processing flow.
  • What is Non-Functional Requirements?Jul 31, 2023. A Non-Functional Requirement (NFR) is a type of requirement in software and system development that specifies criteria for the performance, behavior, and qualities of the system, rather than defining specific features or functionalities. Unlike Functional Requirements, which describe what the system should do, Non-Functional Requirements describe how the system should perform or behave.
  • Client Credentials Flow - Call Web API to API without user interactionJul 18, 2023. This article shows the way to call API to API with user interaction by using Client Credentials Flow.
  • Disabling Access Requests and Controlling Site Sharing with PowerShellJul 16, 2023. In SharePoint Online, managing access requests and controlling site sharing settings is crucial for maintaining security and governance. In this article we will see how to disable access requests and site sharing permission settings for a SharePoint site using PowerShell.
  • Access Modifiers in C#Jul 05, 2023. Access Modifiers in C#
  • How to Access AWS Systems Manager Parameter Store using Python?Jul 02, 2023. Learn how to access AWS Systems Manager Parameter Store using Python. Set up the project folder, install required packages, and retrieve parameter values using the boto3 library. Test the code to access parameter values from the Parameter Store.
  • How to Access Amazon RDS for PostgreSQL Database Using PythonJun 30, 2023. In this article, you will learn how to access Amazon RDS for PostgreSQL database using Python.
  • How we can Write Optimized Code in JavaScriptJun 13, 2023. In this article, we will see How we can write optimized code in JavaScript
  • Numpy for Data ScienceJun 08, 2023.
  • Entity Framework Core: A Guide to Database Access in .NET CoreMay 23, 2023. Entity Framework Core: A guide to database access in .NET Core
  • Adapting to AWS's New Default Security Settings: Ensuring Public Website Access Using S3 WebsitesMay 15, 2023. Solve the impact of recent AWS policy changes, understand the challenges of restricted access, and explore the solution to overcome Access Denied errors. Learn how to adapt your access control strategies to ensure your websites are publicly accessible and discover the key steps to configuring S3 bucket policies for seamless public access.
  • Get access to free Azure subscribtion from company emailMay 03, 2023. Once you join the company who use Azure you can use free subscription to build and run your POCs for work and personal use. In this article I am giving an instruction how to enable Free personal Enterprise or Professional Azure subscription.
  • Publish And Deploy .NET 6 Web Application on IIS and Access using NgrokMay 02, 2023. Publish & Deploy .NET 6 Web Application on IIS and Access it through Internet using Ngrok. Enabling Tunneling using Ngrok and access locally Deployed Web Application through Internet
  • SQL Server Security Best PracticesApr 25, 2023. SQL Server Security Best Practices
  • Access Blob Using SAS Token With .Net FrameworkApr 24, 2023. In this article, we will see how we can access blob using SAS token and most specifically downloading file using .net code.
  • Source Control (7), GitLab Access (Setup Connection And Clone To Local)Mar 27, 2023. This article will discuss GitLab access: setup connection and clone to local.
  • Multiple Views And Access To XML Files With .NET For iOSMar 21, 2023. You will learn how to build an iPhone app using multiple views, recording, and extract data of XML files, using .NET for iOS and the XCode Interface Builder.
  • Creating An Azure App Service Environment (ASE) And Access Via An Application GatewayMar 17, 2023. In this article, you will learn how to create an Azure App Service Environment (ASE) and access via an Application Gateway.
  • Require Multifactor Authentication For Administrative RolesMar 13, 2023. We learn how to setup multifactor authentication for administrative roles in this tutorial.
  • How To Create Docker Image Of .NET 6 Workloads And Push It To Google Container RegistryMar 06, 2023. In this article, we would try to understand Google container registry. We would also set up new .NET 6 application and build custom image using Docker. In the last step we would push this image to GCR.
  • Deploying .NET 6 Workload To Google App Engine Flexible Environment Mar 06, 2023. In this article, we would understand more about Google App Engine features compute service offered by Google cloud. We would also deploy fully functional .NET 6 workload to GAE.
  • Access Restriction In A Canvas App Using A SharePoint Group And Power AutomateFeb 17, 2023. In this article, you will learn how to access restriction in a canvas app using a sharepoint group and power automate.
  • AWS - Identity Access ManagementFeb 06, 2023. A guidewire for AWS IAM.
  • Deploy And Run .NET Core 7 Web API On Azure Container Registry And Container InstanceDec 26, 2022. In this article, you will learn how to deploy and Run .NET Core 7 Web API on Azure Container Registry and Container Instance
  • Outlook Login Failed And Repeatedly Requested A Password In Office 365Nov 23, 2022. Many people, I've noticed, are unable to sign into their Outlook apps. One, in particular, is experiencing difficulties with Outlook and Office 365. They are confronted by "Connecting to: [email protected]" and a password request from Windows Security when they run Outlook.
  • Implement An Azure Files SMB Access On-Premises With Private EndpointsNov 10, 2022. In this article, you will learn how to implement an Azure Files SMB Access On-Premises with Private Endpoints.
  • How To Update List Items With Elevated Access To Read-only Content Using Power AutomateOct 10, 2022. In this article, we will learn how to update SharePoint list items with elevated access when the logged-in user doesn’t have access to update the content.
  • How To Add Custom Add-Ins To MS WordOct 07, 2022. This article shows you how to add add-ins to word desktop.
  • CRUP Operation with Dapper Using ASP.NET CoreOct 06, 2022. Using Dapper for CRUD operations in ASP.NET Core is straightforward and efficient. Dapper is a micro ORM that provides simple methods to execute SQL queries and map results to objects. Here's a basic example of how you can perform CRUD operations with Dapper in ASP.NET Core.
  • JSON Web Token (JWT) In Layman TermsSep 26, 2022. This article describes general definition of JWT aka Access Token in general terms.
  • How To Add Add-Ins In PowerPoint Sep 20, 2022. In this article, you will learn how to add custom add-ins.
  • How To Deploy Excel Add-ins To Your OrganizationAug 12, 2022. This article show you how to deploy excel add-ins in your organization.
  • How To Check Access On Model Driven Apps For A User In Dynamics 365 CE OnlineJul 21, 2022. In this article, you will learn about Model Driven Apps - Access Checker related to User in Dynamics 365 Online.
  • How To Add Custom Add-Ins To ExcelJul 05, 2022. In this article, you will learn how to add Excel add-ins.
  • Object-Oriented Programming Simplified With C# And .Net 5Jun 28, 2022. This article is about the general concepts of Object-Oriented Programming with examples in c sharp programming language.
  • SETS In PythonJun 27, 2022. This article is dedicated to concepts of SETS in Python. Sets are one the built-in Data Structure of Python.
  • Accessing/Retrieving Values From AppSettings.json In ASP.NET CoreJun 21, 2022. Sometimes in the application we need to use some constant values throughout the application so we need to write everywhere. Instead of writing it everywhere we can put these values in appsettings.json and can access wherever required. And the benefit of it is that we have to change at one place if needed in the future and it will get reflect everywhere we used.
  • How To Deploy PowerPoint Add-ins To Your OrganizationJun 15, 2022. This article shows you, how to deploy PowerPoint add-ins.
  • Access S3 Bucket From Private Subnet EC2 InstanceJun 08, 2022. In this Article, you can see how we can access the S3 bucket into private subnet EC2 instance
  • How To Configure SMTP O365 Migration Using TLS 1.2 For SQL Database MailJun 07, 2022. This article will explain to you how exactly you need to configure TLS 1.2 as a default protocol and setup SMTP O365 migration using SQL 2012 Database mail and above versions for Windows Server 2012 and above Common SMTP exceptions we usually faced : The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 2. Exception Message: Cannot send mails to mail server. (Failure sending mail.). )Just follow the steps -
  • How To Deploy Word Add-Ins To Your OrganizationJun 03, 2022. This article show you how to deploy word add-ins to your organization.
  • F5 VPN Access Using PingIDMay 27, 2022. Discuss the process to setup and use the F5 VPN Access using PingID
  • How To Create Excel Add-InsMay 10, 2022. in this article i will show you how to create Excel Add-ins
  • Symmetrical Repository Pattern - Data Access Made Easy In .NETMay 09, 2022. In this article, I will describe an interesting pattern that can be implemented to make it trivial to perform CRUD/RESTful data access across a full-stack .net system, with this technique that abstracts away the boilerplate.
  • Push Pull Docker Image With Azure Container RegistryApr 30, 2022. The purpose of this article is to provide steps to create a Azure container registry and provide commands to push and pull images from newly created registry.
  • An Introduction To Access PackageApr 28, 2022. In this article, we will look into what Access Package is and how this can be used to manage access to SharePoint online site. This feature allows the user to request access from the office portal, and also lets users to chose time bound access.
  • How To Create PowerPoint Add-InsApr 04, 2022. in this article, I will show you how to create PowerPoint Add-ins

About accessing-the-registry-in-silverlight

NA

OUR TRAINING