doestergaard Posted October 26, 2013 Posted October 26, 2013 (edited) Hello againWant to thank everybody in here who have helped me coming a long way with my little development project of a deployment GUI for WinPE. It works good as of now but I still want to do more with it.Until now i have turned on the command prompt window during imaging:oShell.Run("%WINDIR%\imagex /apply Z\images\windows7\professional\x64\sources\install.wim 1 C:"), 1, TrueI have read some places online that you can redirect the output from the command prompt to txt file, but could it be done so that i can display the percentage in my hat window with the innerhtml syntax?For instancestrProgress.InnerHTML = "Applying image 0% > 100%"Again thank you to all who have helped me so far! Edited October 26, 2013 by doestergaard
Yzöwl Posted October 27, 2013 Posted October 27, 2013 It is my understanding that imagex does not produce in process stdout for redirection, it only flushes it at the end. You may need to look at using an alternative such as RTconsole.
Tripredacus Posted October 28, 2013 Posted October 28, 2013 You may be able to do it with DISM, which has its own progress bar.
doestergaard Posted October 30, 2013 Author Posted October 30, 2013 Thank you for your answers.I have read somewhere that you can use RegEx and then display just the percentages of a image progress. Does anybody know if thats is possible?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now