Accessing UNC paths when using other PSProviders

In PowerShell, the default Provider is usually the filesystem: C: drive, D: drive, etc. This provider can also access UNC paths, i.e, file shares on your network: \\MyServer\MyShare\exampleFile.txt  When creating a script or working in the console you sometimes need to use different PSProviders to access other types of resources.  Examples of this are the … Continue reading Accessing UNC paths when using other PSProviders

Using PowerShell to query MECM Deployment status (No WMI Required)

I was recently asked by a teammate to assist them with creating a script to automatically reboot an application environment after monthly Windows patching.  The environment has multiple servers which need to be rebooted in a certain order with pre- and post-reboot validations. An automation script would save the team dozens of hours a month. … Continue reading Using PowerShell to query MECM Deployment status (No WMI Required)

My Journey Creating a PowerShell Module, part 1

In part 1 of this series, I will discuss the ideas, thought processes, and journey to create a PowerShell module that is unique and functional for a real-world application. I will touch on specific concepts and give code examples for how they were implemented as part of the module. In the future, I will also create a series of posts as tutorials for how to use this module in case you have this platform. Continue Reading