I have to use "call"
to execute other cmd file. I want to maximized the window. I tried this but it still not working.
call /MAX %~dp0\test.cmd
Anyone can help, really appreciated. Thanks
I have to use "call"
to execute other cmd file. I want to maximized the window. I tried this but it still not working.
call /MAX %~dp0\test.cmd
Anyone can help, really appreciated. Thanks
This is working.
powershell -windowstyle maximized -command ""
call %~dp0\test.cmd
Reference from this : stackoverflow.com/a/45060156/388389