I am writing a DOS batch script file. My script will be doing following:
- make a directory with mkdir command
- spawn a powershell command to a new window ( not the same command window)
- I would like to open this power script in a new window
- run shell monkey -p com.android.browser in current window
test.bat
mkdir c:\test_log_file
powershell adb logcat >> "C:\Testdata.txt"
shell monkey -p com.android.browser
I have a problem spawning a powershell into a new window. How would I open a power shell in a new command window.
Regards,