404

You have reached 404.

The article which you have searched for is not available. However, you can have a look at following articles

WordPress website using Docker

Introduction In this article, we will see how to setup a WordPress website using Docker. Containerization has changed the face of how the applications are packaged and deployed. WordPress hosting using docker containers makes it easy to host and manage the hosting....

Self Host BookStack using Docker

For any industry, IT or non-IT, Information or data is the key. There are various ways by which the information can be stored. Financial or structured data usually takes a table form and resides in a database. In the case of the non-structured generic data such as...

Secure your website login using Cloudflare and VPN

In this article, we will see how to secure the WordPress website login by changing the login URL and by using VPN and Cloudflare firewall. Before we dig into securing the website login, let see some introduction of Cloudflare. What is Cloudflare? As we all know,...

Create PFX Certificate File from RSA Keys

In this article, we will see how to generate pfx certificate from Public and Private RSA keys. This is done with OpenSSL tool. OpenSSL is available at https://www.openssl.org/source/ Once installed, OpenSSL is accessed using command prompt. Generate PFX from Private...

Get Local Administrator Group Members From Remote Computers

In this article, we will discuss how to get a consolidated list of local administrators group members from remote computers. We use powersell command-let invoke-command to execute the command in the remote systems. Invoke-Command is the most used command-let to...

Windows Update Information On Remote Servers with Powershell

In this article we will see how to use powershell script to get update information of remote windows servers. Last Windows Update Information We use the com object Microsoft.Update.Session to get the update results. Below one liner will tell us the previous update...

Dynamic DNS with CloudFlare and PowerShell

CloudFlare does provide free plan where one can add one domain and proxy the traffic for FREE. Cloudflare also do give the provision to manage the domain using API's. We will see how to create a DNS record and update the record using PowerShell. To manage the DNS...

Get your Public IP using PowerShell

The devices behind a modem or an internet router will be assigned with private ip for communication within the internal network. When these devices needed to communicate to the outside world, the modem/router translate the private IP address to the public IP address...

Install drivers in Windows using PowerShell

Installing drivers for windows is very time consuming when the driver package contain multiple devices/models files with all possible platform architecture(x86, x64, etc.). We can leverage the pnputil.exe tool to perform the installation fast and easy. Consider a...

Execute PowerShell Remotely with PSEXEC

PowerShell commands can be executed on a remote systems by using PowerShell-Remoting. By default, PowerShell remoting is disabled on clients operating systems. We can either enable PowerShell remoting by executing the command "Enable-PSRemoting -Force" under...