如何以编程方式安装屏幕保护程序?
如何以编程方式安装(注册)屏幕保护程序?
How to install (register) screensaver programmatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何以编程方式安装(注册)屏幕保护程序?
How to install (register) screensaver programmatically?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
据我所知有两种方法:
System32
)来永久注册。但不要硬编码“C:\Windows\System32”。您需要查询系统以找出系统目录在哪里。.scr
文件调用Install
操作,这会导致临时激活。但是,一旦选择了另一个屏幕保护程序并重新启动对话框,该屏幕保护程序就会消失。但这是Win95时代的,所以可能已经过时了。
我看到三种调用
install
的方法:install
动词的 ShellExecute(Ex)rundll32.exe desk.cpl,InstallScreenSaver %l
InstallScreenSaver
的导入),然后使用您自己的路径作为参数调用InstallScreenSaver
方法。AFAIk there are two ways:
System32
. But don't hardcode "C:\Windows\System32". You need to query the system to find out where the system directory is.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
:install
verbrundll32.exe desk.cpl,InstallScreenSaver %l
desk.cpl
as library(LoadLibrary or by declaring an import forInstallScreenSaver
) and then call theInstallScreenSaver
method with your own path as parameter.此处的演练 -
http://www.desktopmanagementsoftware.org/creating -an-msi-package-for-a-screensaver
A walkthrough here -
http://www.desktopmanagementsoftware.org/creating-an-msi-package-for-a-screensaver