PowerShell Q&A Series

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 […]
11/12/2020

Creating a WPF Template

The last button for my template is the maximize button. To do this we add yet another add.Click event. Inside the event, we do things a bit differently than we had with the other two buttons. That is inside this we use an if statement, so if it is not maxed it maximizes, but if it is maxed it goes back to the original size. How do we do that? Let us take a look.
10/28/2020

Create Directory, Get/Set-ACL, Open Properties

The object of this is to add it to a larger script in order to create a new user. Part of the new user script will […]