gpt4 book ai didi

powershell - 自动化Windows 7轻松访问设置 “Turn off unnecessary animations”

转载 作者:行者123 更新时间:2023-12-03 00:02:12 26 4
gpt4 key购买 nike

我试图找到一种方法来自动启用/禁用Windows 7中的设置:

从类别 View :

  • 控制面板\所有控制面板项目\轻松访问中心\使计算机更易于查看

  • 从图标 View :
  • 控制面板\所有控制面板项目\轻松访问中心\使计算机更易于查看

  • 那个设定:
  • 关闭所有不必要的动画(如果可能)

  • 一些上下文:

    这似乎是一种禁用Microsoft Office 2013上的动画的方法,该动画导致我编写的Excel加载项运行缓慢(该加载项本身具有图形交互性和动画效果,而在使用新的图形硬件的Office 2013中,该行为很糟糕加速动画)。我尝试使用Office内设置禁用动画,但是在Office重新启动或重新启动后它没有任何效果,其他人也报告了此情况。更改“轻松访问中心”中的设置或视觉性能设置(“控制面板\所有控制面板项目\性能信息和工具”>“调整视觉效果”>“在窗口中设置动画控件和元素”)是删除动画的最佳方法。我正在寻求帮助的“轻松访问中心”方法不需要提升的特权并且可以立即运行,因此,如果有一种方法可以使它自动化,那么它应该显得更加隐蔽。

    最后,我想从VBA或VB.Net Microsoft Office加载项中切换设置,但是我不在乎解决方案采用什么形式(批处理文件,Windows API,VBS脚本,PowerShell等),因为它应该易于从外接程序中实现。如果归结为Auto-It样式的鼠标单击自动化,我只想给用户说明并为他们弹出浏览器窗口。

    感谢您提供任何有用的想法!

    最佳答案

    "This stuff is also controlled via the computer properties -> advanced-> performance-> visual effect option. If you set it to best performance, all the stuff you want turned off is turned off.

    Unfortunately this changes a whole bunch of registry values but if we just narrow down on the stuff you want, there are 2 registry values involved:

    HKCU\Control Panel\Desktop\UserPreferencesMask

    This is a reg_binary value. Change this value from 9E 2C 07 80 12 00 00 00 to 9E 2C 07 80 10 00 00 00 .

    HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\VisualFxSetting

    The VisualEffects key doesn't exist by default. There are a bunch of values that can be defined under here but the only one that really matters is VisualFxSettings. Set this to 2 to disable a lot of the animations and also to tick "Turn off all unnecessary animations (when possible)" ."



    引用-- HERE

    运行以下Powershell,重新启动,一切都会顺利进行。
    PS C:\> Push-Location
    PS C:\> Set-Location "HKCU:\Control Panel\Desktop\"
    PS HKCU\Control Panel\Desktop> Set-ItemProperty . -Name UserPreferencesMask -Value ([byte[]](0x9E,0x2C,0x07,0x80,0x10,0x00,0x00,0x00))
    PS HKCU\Control Panel\Desktop> Pop-Location
    PS C:\>
    PS C:\> Push-Location
    PS C:\> Set-Location HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\
    PS HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects> New-ItemProperty . VisualFxSetting -Value 2
    PS HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects> Pop-Location

    关于powershell - 自动化Windows 7轻松访问设置 “Turn off unnecessary animations”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22817160/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com