11/23/2020

Disable RDP/Remote Server Clipboard Redirection

We start by using the preexisting foreach command we then create an IF statement to test the connection. The trick with IF statements is the condition directly after the statement is always $True. So you have to write it accordingly.
11/20/2020

Initialize an SSH connection and auto-login.

Connect through SSH, then run commands! The question as it was posed: “I have the challenge to automate a ssh login to a Linux box which […]
11/20/2020

Combine Multiple Text Files Into One XLSX

We are continuing our new series that answers common questions, or questions that have been asked about PowerShell. In this post we talk about how to combine multiple text files into one xlsx file. What we intend to provide is one of the many, many ways you can accomplish these tasks within PowerShell.
11/20/2020

Get UNC Path of Mapped Drive

The question: How to get UNC path of network mapped drive? If you are looking for the UNC path of a network drive use Get-PSDrive. It will […]
11/20/2020

Registry Key Data & Modification of Subkeys

Find a subkey in the registry key data and subkeys then change the subkey’s value. Registry Key Data & Subkeys This is how it was presented […]
11/20/2020

List Locally Installed Applications

Today we discuss how to list all locally installed applications. This is to say that we need to list all programs installed on the computer. This […]