Page 1 of 1
How to start YoWindow via batch?
Posted: Thu May 24, 2012 8:27 pm
by madmax25
As the subject says, I wonder, how I can start YoWindow using a batch file?
When I try ...
Code: Select all
@echo off
%windir%\system32\yowindow.scr
exit
...it is always starting as a programm including the title bar and the settings window, not as a screensaver.
How do I have to edit this above mentioned code in order to make it run the wanted way, please?
Re: How to start YoWindow via batch?
Posted: Thu May 24, 2012 9:39 pm
by FvE
Hi,
I haven't tried this, but I suppose
"C:\Program Files\YoWindow\yowindow.exe"
should do the job.
Let me know if this works.
Goodluck,
Fred
Re: How to start YoWindow via batch?
Posted: Fri May 25, 2012 1:59 am
by madmax25
No, it doesn't.
No screensaver mode either.
I guess, it's a matter of finding the proper command line switch, which I don't know, yet.
Re: How to start YoWindow via batch?
Posted: Fri May 25, 2012 6:22 am
by Don
Hi,
Give this a try.
Code: Select all
@echo off
start %windir%\system32\yowindow.scr /s
or
Code: Select all
@echo off
start %windir%\yowindow.scr /s
Don
Re: How to start YoWindow via batch?
Posted: Fri May 25, 2012 7:40 am
by madmax25
Thank you, Don!
The first version of your code did it.