What iam trying to figure out is how to have a vbs script cycle through different .ico files while still on the desktop. almost like a slide show of the different .ico files. is it possible?
here is what i have so far but it does not cycle the .ico files
set WshShell = WScript.CreateObject("WScript.Shell")
strDesktop = WshShell.SpecialFolders("Desktop")
set oShellLink = WshShell.CreateShortcut(strDesktop & "\Movies Folder.lnk")
oShellLink.TargetPath = "J:\Movies"
oShellLink.IconLocation = "C:\MoviesShortcut\Movies.Ico"
wscript.sleep 500
oShellLink.IconLocation = "C:\MoviesShortcut\tv1.Ico"
oShellLink.Description = "movies"
oShellLink.WorkingDirectory = strDesktop