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

I would like to make the output of a command (imagex) to the input of a different command.

How do I use the output of imagex to be the input of a different command. Say I only want the image count or the name of the image. How would I do that?

What I want to do is make a menu that only shows certain portions based upon the images in a WIM file. The tool I am using is imagex because I am running from Windows 7 PE. DISM is only for image servicing at this point. Imagex can apply images and to keep overhead low I removed DISM.

share|improve this question
1  
Basic stuff. You want Windows pipes: command1 | command2. Try a web search for more info. – dbenham Sep 15 at 20:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.