I have this script that sets wallpaper every 10 minutes:
SCHTASKS /Create /SC MINUTE /MO 10 /TN MyTaskName /TR "D:/ChangeWallpaper.bat"
the ChangeWallpaper.java:
reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v Wallpaper /t REG_SZ /d D:\plouzane-1758197.jpg /f
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters
But each time it runs, terminal windows briefly appears. Is there a way to make it run completely invisibly?