Hello all and thanks in advance for any assistance!
Every time I restart my PC at work, the group policy goes into effect and changes the background color of my system to the company default. In Windows 7, because the color of the background is a lighter color, it makes all icon text dark and impossible to read with my dark wallpaper. Also, if I remote into my machine and disable UI options for a smoother experience, the background is the very bright default color rather than a wallpaper... All that said, essentially I resort to changing the background color to a darker color manually by navigating to the "Window Color and Appearance" window and setting the Desktop color to a dark color.

So, I began looking for a way to automate this change, and my first thought is to create a simple BAT script and launch it from my Startup folder. I've figured out how to update the register entry for this particular color change, but I can't seem to figure out how to make it take effect in the same way that selecting the "Apply" button in the "Window Color and Appearance" window forces the change.
Here is the Register change via CMD:
REG ADD "HKEY_CURRENT_USER\Control Panel\Colors" /v Background /t REG_SZ /d "0 0 0" /f
That command appears to change the Registry value as intended. But, it never updates my actual desktop. Any thoughts on how to get it to apply the Registry change?
Here are a couple commands I've already tried, and they don't seem to do the trick:
RUNDLL32.EXE USER32.DLL,UpdatePerUserSystemParametersRUNDLL32.EXE USER32.DLL,UpdatePerUserSystemParameters 1, True
I've also tried stopping and restarting the Desktop Window Manager Session Manager, but the color change is still not applied:
NET STOP uxsmsNET START uxsms
I apologize for the long winded question. Any assistance is greatly appreciated!