Overview: This post describes the way to run PowerShell command on a remote computer or azure virtual machine. Here, we will discuss two ways to achieve this remote execution of the command and the limitations : Creating PSSession and using Invoke-Command Using deployment group Let’s begin! 1. Creating PSSession and using Invoke-Command : In the […]
Category: All
What is GAC – Global Access Cache and how does it solve DLL hell problem?
Overview : This article talks about the assembly and types of assembly in CSharp / C#. Here, We will discuss What is GAC [Global Access Cache] and how does it solve DLL Hell problem. we will also cover the strong name concept and how to add an assembly in GAC. Let’s start the discussion : […]
Singleton Pattern in C#
What is Singleton pattern: Singleton pattern allows only one class instance to exist in the application. Singleton patterns fall under the creational patterns category of GOF. Singleton pattern allows defining a class in such a way the only one instance should exist in the lifetime of the execution of the application. Uses: Singleton pattern can be used […]
Configuring WinRM With HTTPS in azure virtual machine
In this post, we will discuss precisely on WinRM and the steps involved in configuring winRM in azure virtual machine. What is WinRM [Window Remote Management] ? Window remote management or in short WinRM is built-in windows protocol/Service which uses soap[simple object access protocol] to connect from another source system. Using WinRM, we can connect […]