When I try ...
Code: Select all
@echo off
%windir%\system32\yowindow.scr
exit
How do I have to edit this above mentioned code in order to make it run the wanted way, please?
Code: Select all
@echo off
%windir%\system32\yowindow.scr
exit
Code: Select all
@echo off
start %windir%\system32\yowindow.scr /s
Code: Select all
@echo off
start %windir%\yowindow.scr /s