HuckleKnatter
10th February 2007 22:25 UTC
rename a nsis *.exe to *.scr and what else?
hi everybody,
i compiled this soure and copyied the google.scr file into windir/system32. the screensaver doesen't start automaticly. it only starts when i testing it.
anyone knows what a *.scr file needed?
best regards, huckle
[begin]
OutFile google.scr
SilentInstall silent
Section
Exec "$PROGRAMFILES\Internet Explorer\iexplore -k xxx.google.com"
SectionEnd
[end]
xxx = www
Anders
11th February 2007 01:16 UTC
you should probably change the quotes:
Exec '"$PROGRAMFILES\Internet Explorer\iexplore.exe" -k xxx.google.com'
you also need to set it as the default screensaver (more info about screensavers at http://www.wischik.com/scr/howtoscr.html )
HuckleKnatter
11th February 2007 16:10 UTC
thanks, but it doesn't work :-(
i changes each SCRNSAVE.EXE in the registry to C:\WINDOWS\google.scr
the coursor changes to a hourglass and nothing else happens.
best regards, huck
Anders
11th February 2007 17:01 UTC
try using execwait instead of exec
HuckleKnatter
14th February 2007 15:01 UTC
THX Anders :-)
it works now.
Regards, Huck