Overblog
Editer l'article Suivre ce blog Administration + Créer mon blog

windows 7 : forcer activation de aero

Publié le par damcuvelier

new dword HKEY_CURRENT_USER\Software\Microsoft\Windows\DWM :
UseMachineCheck = 0
Blur = 0
Animations = 0

 

cmd:

Net Stop uxsms
Net Start uxsms

Commenter cet article

D
powershell code:<br /> Set-itemproperty -path "HKCUSoftwareMicrosoftWindowsDWM" -name UseMachineCheck -value "0" | out-file -FilePath $logfile -Append<br /> Set-itemproperty -path "HKCUSoftwareMicrosoftWindowsDWM" -name Blur -value "0" | out-file -FilePath $logfile -Append<br /> Set-itemproperty -path "HKCUSoftwareMicrosoftWindowsDWM" -name Animations -value "0" | out-file -FilePath $logfile -Append<br /> stop-service -name UxSms<br /> start-service -name UxSms
Répondre