how to launch a screen saver programmatically?

  • Thread starter Thread starter Maurice
  • Start date Start date
M

Maurice

Hello:

I like to launch a screen saver programmatically (by batch file or C
program)

is it possible and how?

thanks
Maurice
 
Maurice said:
Hello:

I like to launch a screen saver programmatically (by batch file or C
program)

is it possible and how?

thanks
Maurice

Screen saver files have an .scr extension and can be launched directly via
the Command Prompt. Most go into a setup screen when launched without a
parameter. The challenge is to find the parameter that bypasses the setup
screen.
 
Pegasus said:
Screen saver files have an .scr extension and can be launched directly via
the Command Prompt. Most go into a setup screen when launched without a
parameter. The challenge is to find the parameter that bypasses the setup
screen.

After asking a french newsgroup, it's very simple, just typing the name
followed by /s,
ex: scrnsave /s

that's all
cheers
Maurice
 
Maurice said:
After asking a french newsgroup, it's very simple, just typing the name
followed by /s,
ex: scrnsave /s

that's all
cheers
Maurice

Thanks - I learnt something new.
 
Maurice said:
After asking a French newsgroup, it's very simple, just typing the name
followed by /s,
ex: scrnsave /s

that's all
cheers
Maurice

So you could create a shortcut, and edit the target to read, for example:

Slide.scr /s

- or -

C:\Windows\System32\ssbezier.scr /s
 
Back
Top