Tobor79 avatar

Tobor79

Explore articles and content from this author

Tobor79 avatar

Tobor79

3 articles

16 min read

Writing Your Own PowerShell Functions / Cmdlets

This article is an attempt at describing some of my thought process when building functions. By functions I mean a command that you can execute after importing a module. I am not referring to running a script that accepts parameters and input. Having a task to complete for a function is of course …

4 min read

Not So Intutive PowerShell Behavior

The below link leads to the module I am writing about in this blog post. LINK TO POWERSHELL MODULE At my place of work a task needed to be completed that would allow us IT administrators to set the default lock screen image for our devices. Group Policy was my first thought however it was to broad …

11 min read

A Better Way To Search Events

I have put together a security script to use as an alerting system. Using a CSV file containing information on which users are assigned which computer, the event logs are searched to discover when a user signs into a device outside their normal assignments. The final result of that script can be …