如何在 Win x64 计算机启动时运行批处理文件?
我知道您可以使用 autoexnt 在 Windows XP 启动时运行批处理文件,但这似乎只适用于 32 位计算机。 我在一台机器上运行 Windows XP x64,并且需要在启动时运行一个脚本(无需任何人登录)。 有什么想法吗?
谢谢您的帮助。
I know you can use autoexnt to run a batch file on startup for Windows XP, but that only seems to work for 32-bit machines. I'm running Windows XP x64 on a box, and I need to have a script run on startup (without anyone's logging in). Any ides?
Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在注册表中,通过“regedit”访问,您可以导航到以下键:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
添加 Reg_sz 类型条目,无论键名实际上是什么,但作为给定的值程序或批处理文件的完全限定路径名。
In your registry, accessible through "regedit" you can navigate to the following key:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
Add a Reg_sz type entry, doesn't matter what the key name is really, but as the value give the fully qualified path name to your program or batch file.
启动时意味着登录,还是启动时意味着(在任何人登录之前)?
登录时,您只需将 BAT 放入“启动”文件夹中即可。
On startup meaning Login, or on startup meaning (before anyone logs in)?
On login, you could just put a BAT in your Startup folder.
还可以使用本地计算机策略来配置启动和关闭脚本。
http://vlaurie.com/computers2/Articles/group_policy_editor.htm
有一个很好的演练如何做。
Can also use local computer policy to configure startup and shutdown scripts.
http://vlaurie.com/computers2/Articles/group_policy_editor.htm
Has a good walkthrough of how to do it.