如何以编程方式安装屏幕保护程序?

发布于 2024-10-21 18:12:13 字数 27 浏览 4 评论 0原文

如何以编程方式安装(注册)屏幕保护程序?

How to install (register) screensaver programmatically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一城柳絮吹成雪 2024-10-28 18:12:13

据我所知有两种方法:

  1. 通过将其复制到 Windows 搜索的位置(例如 System32)来永久注册。但不要硬编码“C:\Windows\System32”。您需要查询系统以找出系统目录在哪里。
  2. .scr 文件调用 Install 操作,这会导致临时激活。但是,一旦选择了另一个屏幕保护程序并重新启动对话框,该屏幕保护程序就会消失。

但这是Win95时代的,所以可能已经过时了。


我看到三种调用 install 的方法:

  1. 使用 install 动词的 ShellExecute(Ex)
  2. 调用 rundll32.exe desk.cpl,InstallScreenSaver %l
  3. Load < code>desk.cpl 作为库(LoadLibrary 或通过声明 InstallScreenSaver 的导入),然后使用您自己的路径作为参数调用 InstallScreenSaver 方法。

AFAIk there are two ways:

  1. Permanent registration by copying it to a location that windows searches, such as System32. But don't hardcode "C:\Windows\System32". You need to query the system to find out where the system directory is.
  2. Calling the Install action on the .scr file, which results in temporary activation. But the screensaver will disappear once another has been selected and the dialog restarted.

But this is from Win95 times, so it's possibly outdated.


I see three ways to call install:

  1. ShellExecute(Ex) using the install verb
  2. Call rundll32.exe desk.cpl,InstallScreenSaver %l
  3. Load desk.cpl as library(LoadLibrary or by declaring an import for InstallScreenSaver) and then call the InstallScreenSaver method with your own path as parameter.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文