我们如何在共享主机中设置exe?
嗨,
我有一个共享主机,我想将一个 exe 放在目录的根目录上,
想要每天运行该 exe 一次。
有什么办法可以实现这一点吗?
或者
我们需要购买专用托管吗?
请帮忙!!
Hi,
I have a shared hosting and i want to place one exe on root of the directory and
want to run that exe once in a day .
Is there any way to achieve this ?
Or
should we need to buy dedicated hosting ?
Please help!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常不使用共享主机。
如果您确实想在 Web 服务器上按计划执行程序,那么至少您需要某种托管,您可以在其中对操作系统有足够的控制权来访问其任务调度机制。
这种控制通常至少可以通过 VPS(虚拟专用服务器)或 shell 帐户来实现,具体取决于平台。
Generally not with shared hosting.
If you really want to execute a program on a schedule on your web server, at a minimum you're going to need some kind of hosting where you have enough control over the OS to access its task scheduling mechanism.
This kind of control is generally available at minimum with a VPS (Virtual Private Server) or shell account, depending on platform.
您可以使用
Windows 任务计划程序
每天运行一次程序,例如bat
文件或脚本。You can use
Windows Task Scheduler
to run programs once a day such asbat
files or scripts.