Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 :)

share|improve this question

closed as too localized by ЯegDwight, DocMax, luser droog, hjpotter92, RobinHood Mar 2 at 8:19

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

up vote 4 down vote accepted

Remove the enter after the foreach-object:

$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   }

There's a typo in your code:

**    Get-ChildItem =path  **
share|improve this answer

It's probably because your script block for the ForEach-Object is on a new line. In PowerShell you need to use the backtick character (`) to tell PowerShell a command continues to the next line. Try this:

$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
    }
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.