Hi,

I want to change the wallpaper in the logon screen (where you see the crtl+alt+del). The reason is our compagny change the logo, and we got over 400 computers and laptop. So, due to the different size of each screen, i need to set the right size to the right one.

I want someting like
Code:
if size=1024*768 install 1024.bmp  
size=800*600 install 800.bmp



You know what i meen. For know, i just have this :
Code:
IF INGROUP("test")
Break on
;
$sourecpath = "\\servlog\netlogon\test\"
$destinationpath = %windir%
;
Copy $sourecpath + "NewLogoText1024.bmp" $destinationpath
;
;depending on how big the .reg file is you could use
;writevalue to write the stuff directly to the registry.
Run "regedit.exe /s " + $sourcepath + "registry.reg"
;
ENDIF



All works, but for each size, it's a little bit more hard for me.

Thx for your help.