Hello,
i have W2K pro, kixtart 3.62 and i use a script to have a random screen. Since i use W2K it didn't work like it must do :

cls
color r/n

$RepertoireSource = "G:\CONFIG\IMAGES\"

$NomFichier = Dir($RepertoireSource + "*.BMP")
Dim $TableauNomFichiers[500]
$IndexFichier = 0

While $NomFichier <> "" and @ERROR = 0
$TableauNomFichiers[$IndexFichier] = $NomFichier
$IndexFichier = $IndexFichier + 1
$NomFichier = Dir()
Loop

$dummy = (VAL(SUBSTR(@TIME,7,2))*1000)
SRND ($dummy)

$Indexaleatoire = RND($IndexFichier - 1)

$ret = SetWallPaper($RepertoireSource + $TableauNomFichiers[$indexaleatoire])

This script works but the picture appear when i use ctrl+alt+suppr and not in the session wallpaper.

Any idea ?