在 ASP 中启动进程?

发布于 2024-08-25 04:09:38 字数 142 浏览 5 评论 0原文

我正在开发一个旧的 ASP Web 应用程序(不是 .net),我需要启动一个单独的进程 (exe)。经过多次谷歌搜索后,我还没有找到有效的方法来做到这一点。有人有什么建议吗?

CreateProcess 在 ASP 中工作吗?

谢谢!

I am working on an old ASP web app (not .net) and I need to launch a separate process (exe). After much googling I have yet to find a valid way of doing this. Anyone have any suggestions?

Does CreateProcess work in ASP?

Thanks!

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

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

发布评论

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

评论(1

如此安好 2024-09-01 04:09:38

您需要完全控制服务器,因为这被认为非常不安全。托管服务不太可能允许您执行此操作。

<script language="VBScript"> 
    Sub Scan 
        Set objShell = CreateObject("Wscript.Shell")

        'objShell.Run "C:\MyApp.exe"
        objshell.Exec "C:\MyApp.exe" 

    End Sub
</script> 

这里有一篇文章解释了整个过程。

You'll need to have full control of the server, as this is considered very insecure. It's unlikely a hosting service will allow you to do this.

<script language="VBScript"> 
    Sub Scan 
        Set objShell = CreateObject("Wscript.Shell")

        'objShell.Run "C:\MyApp.exe"
        objshell.Exec "C:\MyApp.exe" 

    End Sub
</script> 

Here is an article that explains the whole process.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文