Post subject: Re: [Win8RTM] Disable window colors but keep taskbar color Posted: Tue Aug 07, 2012 3:42 pm
Amateur Beta Collector
Joined Fri Jul 22, 2011 9:32 pm
Posts 270
Location Lahore,Pakistan
Favourite OS Windows 7 Ultimate SP1 x64
screenshots please...
_________________
Never have I felt so close to another soul and yet so helplessly alone As when I Google an error and there's one result A thread by someone with the same problem and no answer Last posted to in 2003...
Post subject: Re: [Win8RTM] Disable window colors but keep taskbar color Posted: Tue Aug 07, 2012 4:10 pm
Pro Beta Collector
Joined Sun Jun 24, 2012 2:35 pm
Posts 334
Location Hong Kong
Favourite OS Ubuntu 12.10 Alpha 2
Hey, any source code?
_________________ Windows ME: Crap! Windows XP: Awesome! Windows Vista: Crap! Windows 7: Awesome! Windows 8: (Crap!) 2012 smartboyhw My Blog Windows ISO's Forum Administrator
Post subject: Re: [Win8RTM] Disable window colors but keep taskbar color Posted: Tue Aug 07, 2012 4:19 pm
Amateur Beta Collector
Joined Fri Jul 22, 2011 9:32 pm
Posts 270
Location Lahore,Pakistan
Favourite OS Windows 7 Ultimate SP1 x64
Very cool. Try getting Aero glass transparency from the RC ported to RTM. That would be awesome !
_________________
Never have I felt so close to another soul and yet so helplessly alone As when I Google an error and there's one result A thread by someone with the same problem and no answer Last posted to in 2003...
Post subject: Re: [Win8RTM] Disable window colors but keep taskbar color Posted: Wed Aug 08, 2012 2:09 am
Amateur Beta Collector
Joined Tue Jul 24, 2012 1:39 am
Posts 153
Location America
Favourite OS Windows 8 build 9200
Very nice, but I suggest to make it better: - Make one batch file for switching it on and off - Don't delete the keys, just switch them on and off. Here's the code I came up with:
Code:
@ECHO off cls :start ECHO. set /p choice=Switch Windows Colorization (Off=1, On=2) if not'%choice%'=='' set choice=%choice:~0,1% if '%choice%'=='1' goto 1 if '%choice%'=='2' goto 2 ECHO "%choice%" is not a valid option. Select "1" or "2". ECHO. goto start :1 reg add HKCU\Software\Microsoft\Windows\DWM /v EnableWindowColorization /t REG_DWORD /d 0 /f tskill dwm :2 reg add HKCU\Software\Microsoft\Windows\DWM /v EnableWindowColorization /t REG_DWORD /d 1 /f tskill dwm
_________________ HP Pavilion dv6 15" Intel Core i3 CPU, 2.3 GHz 4GB RAM 500 GB HDD Windows 7 Home Premium 64-bit, Windows 8 Enterprise 64-bit, Windows Blue 32-bit Firefox Beta (20.0)
Post subject: Re: [Win8RTM] Disable window colors but keep taskbar color Posted: Sat Aug 11, 2012 4:12 am
Guru Beta Collector
Joined Tue Aug 05, 2008 8:45 pm
Posts 658
Location Two lefts and a diagonal sidestep from where you are.
Favourite OS Windows 8 Release Preview 8400
eXcite wrote:
Very nice, but I suggest to make it better: - Make one batch file for switching it on and off - Don't delete the keys, just switch them on and off. Here's the code I came up with:
Code:
@ECHO off cls :start ECHO. set /p choice=Switch Windows Colorization (Off=1, On=2) if not'%choice%'=='' set choice=%choice:~0,1% if '%choice%'=='1' goto 1 if '%choice%'=='2' goto 2 ECHO "%choice%" is not a valid option. Select "1" or "2". ECHO. goto start :1 reg add HKCU\Software\Microsoft\Windows\DWM /v EnableWindowColorization /t REG_DWORD /d 0 /f tskill dwm :2 reg add HKCU\Software\Microsoft\Windows\DWM /v EnableWindowColorization /t REG_DWORD /d 1 /f tskill dwm
Your method is very broken. First of all, it is required to delete the key. Second of all, it needs to be 2 separate batch files to work properly.
Post subject: Re: [Win8RTM] Disable window colors but keep taskbar color Posted: Sat Aug 11, 2012 10:55 pm
Amateur Beta Collector
Joined Tue Jul 24, 2012 1:39 am
Posts 153
Location America
Favourite OS Windows 8 build 9200
DBlake wrote:
eXcite wrote:
Very nice, but I suggest to make it better: - Make one batch file for switching it on and off - Don't delete the keys, just switch them on and off. Here's the code I came up with:
Code:
@ECHO off cls :start ECHO. set /p choice=Switch Windows Colorization (Off=1, On=2) if not'%choice%'=='' set choice=%choice:~0,1% if '%choice%'=='1' goto 1 if '%choice%'=='2' goto 2 ECHO "%choice%" is not a valid option. Select "1" or "2". ECHO. goto start :1 reg add HKCU\Software\Microsoft\Windows\DWM /v EnableWindowColorization /t REG_DWORD /d 0 /f tskill dwm :2 reg add HKCU\Software\Microsoft\Windows\DWM /v EnableWindowColorization /t REG_DWORD /d 1 /f tskill dwm
Your method is very broken. First of all, it is required to delete the key. Second of all, it needs to be 2 separate batch files to work properly.
Oh, I actually just tried it, and you're right. But why is it required to delete the key, and why does it have to be two seperate batch files?
_________________ HP Pavilion dv6 15" Intel Core i3 CPU, 2.3 GHz 4GB RAM 500 GB HDD Windows 7 Home Premium 64-bit, Windows 8 Enterprise 64-bit, Windows Blue 32-bit Firefox Beta (20.0)
Post subject: Re: [Win8RTM] Disable window colors but keep taskbar color Posted: Sat Aug 11, 2012 11:11 pm
Guru Beta Collector
Joined Tue Aug 05, 2008 8:45 pm
Posts 658
Location Two lefts and a diagonal sidestep from where you are.
Favourite OS Windows 8 Release Preview 8400
1) Setting the key to 0 doesn't always work. I've tested this on my 2 installs.
2) It's more simple to have 2 batch files than have 1 where you have to enter 1 or 2. To put it more simple, it saves a step.
On second thought I just might make a couple of quick AutoIt program that do these tasks. This way, I can set them to run as Admin automatically instead of right-click > Run as Admin.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum
All views expressed in these forums are those of the author and do not necessarily represent the views of the BetaArchive site owner.