What's new

HowTo Open Edge or Browser to a Fast, Quiet, Custom, Reliable Home Page of Your Own

OP
sharpuser

sharpuser

Administrator
Staff member
Here is an other batch file to add to your tools which will set your Edge home page background to the same image as your current Windows 10 desktop background (wallpaper). This batch file uses the scheme outlined in this thread.

This batch file can be saved as MatchWindowsWallpaperWithEdge.bat

Code:
rem @echo off
rem Set Edge background to the same as Windows desktop
rem Doug Sharp 2019
::
:: ---------------------
set HomePageDir=\OneDrive\HomePage\
set FavoriteImage=MyHomePageBackground_Original.jpg
::
set Here=%AppData%\Microsoft\Windows\Themes\TranscodedWallpaper
set There=%USERPROFILE%%HomePageDir%MyHomePageBackground.jpg
::
copy /b/v/y "%Here%" "%There%"
exit
 
Top