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
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