Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to write a powershell script to execute all the files in a directory, by alphabetical order. Problem is, I also want to execute each file in the directory. How can I do this last bit?

Thanks

share|improve this question

3 Answers

Use get-childitem to find all the items in the directory you want. You can then convert this list into a list of strings where each string is the name of a file.

Then use the "&" operator to execute each file.

I.E.

gci | select name | foreach-object { & $_.tostring() } 

something like that.

See: http://technet.microsoft.com/en-us/library/ee176949.aspx

share|improve this answer
gci | ?{$_ -is [io.fileinfo]} | ii

You can use the path parameter of Get-ChildItem to chose the directory.

Update: Limited selection to only files. Was all items in a directory.

share|improve this answer

I would use:

Get-ChildItem -filter *.exe |
    Invoke-Item

You asked for only the programs in a directory. The IO.FileInfo answer will open word documents as well as run programs. So will the answer with &. You don't have to sort alphabetically, because that's how the files come back anyways, but you could put a Sort-Object in the middle if you'd like.

Hope this helps,

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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