PowerShell Q&A Series

11/24/2020

Get Certificate Expiration Remotely Off Servers

We are continuing our new series that answers common questions, or questions that have been asked about PowerShell. Today, certificate expiration remotely off servers. What we […]
11/24/2020

Video – Writing a GUI for PowerShell

Normally I write about scripting. This time I tried my hand at recording the screen while I worked. Let me know what you think and if you have any questions or suggestions.
11/24/2020

Output To Console Services

We continuing our new series that answers common questions, or questions that have been asked about PowerShell. Today is all about Output To Console all services. […]
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.