• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

NT Logon Script ?

narzy

Elite Member
got a question for you, I want to create a login script for student users that on the windows 98 machines will replace C:\windows\internet explorer wallpaper.bmp and C:\windows\application data\microsoft\internet explorer\internet explorer wallpaper.bmp with my read only version. how exactly would I write this .bat file to do it without questioning weather to replace?
 
Can't you just delete the originals first?

del "C:\windows\internet explorer wallpaper.bmp"
del "C:\windows\application data\microsoft\internet explorer\internet explorer wallpaper.bmp"

copy "<your wallpaper>" "C:\windows\internet explorer wallpaper.bmp"
copy "<your wallpaper>" "c:\windows\application data\microsoft\internet explorer\internet explorer wallpaper.bmp"
 
Back
Top