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
|
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 |
|||
|
|
|
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.
something like that. See: http://technet.microsoft.com/en-us/library/ee176949.aspx |
|||
|
|
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. |
||||
|
|
|
I would use:
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, |
|||
|
|