Good afternoon, everyone!
I'm having a spot of bother with a PowerShell Script that I'm writing - I'm completely new to the language (I'm learning by doing, essentially, I'm rough-and-tumble and crazy like that) and interpreting the cmdlets and their switches is certainly not the easiest thing I've ever done. Basically what I'm trying to do is get it to recurse through a directory, include only .pdf files, and return the 3 most recently modified .pdfs, and stick each of their (full) filenames into their respective variables.
So far, I'm learning to walk before I try to run, so I'm only going to see if I can write the results to the console - That way I know I'm 'walking' in the right direction, if you will.
Here's my code so far -
$Directory="C:\PDFs"
Get-ChildItem =path $Directory -recurse -include *.pdf | sort-object -Property LastWriteTime -Descending | select-object -First 3 | ForEach-Object
{
Write-Host -FilePath $_.fullname
}
However, when I run the script, it asks me to provide parameters for the ForEach portion of the script - Which leaves me to conclude that either the command isn't piping the way it should, or I'm just an idiot and not using the command properly (more than likely).
Anyway, any help would be appreciated, and I would appreciate properly explained answers even more - I'm not looking for a block of code, a correction of my code, including explanations regarding your own input would be ideal. It's not learning otherwise, it's copy and pasting! I'm working on the code as I'm posting this, so if I fix it before someone answers I shall provide the answer myself.
Thanks in advance guys :)
