In my last post, I started working on a very simple script to explore files in a directory using PowerShell: Get-ChildItem allows me to find the files and folders in the user directory, but what if I wanted to start with a different directory? That’s where the -Path switch comes in.
Get-ChildItem -Path C:\
gives em a listing of all of the files and folders at the root of my C drive. Lots more to come; this is just the beginning of my journey.