zoukankan      html  css  js  c++  java
  • houdini_help打开方式

    参考资料:https://blog.csdn.net/weixin_42579717/article/details/105518619
     
     
     
    桌面建个bat文件把这段代码放进去保存执行,然后浏览器访问 127.0.0.2:48625
     
    // houdini_help.bat文件内容
    @echo off
    if "%1" == "h" goto begin
    start mshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit
    :begin
    set HOUDINI_NO_ENV_FILE=1
    "C:Program FilesSide Effects SoftwareHoudini 18.0.287inhhelp.exe" serve --bgindex 0 --host 127.0.0.2 --port 48625
     
     
     
     
    ----实战文件:
    // houdini_help.bat

    @echo off
    if "%1" == "h" goto begin
    start mshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit
    :begin
    set HOUDINI_NO_ENV_FILE=1
    "D:vfxsidefxhoudini180499inhhelp.exe" serve --bgindex 0 --host 127.0.0.1 --port 48626

     

     

    //注释:不用打开houdini软件,直接可以使用浏览器打开帮助文档。
    //首先运行houdinihelp.bat文件(双击houdinihelp.bat文件);
    //浏览器网址访问houdini_help文档:https://127.0.0.1:48626

    //替换部分_(hhelp.exe)路径:D:vfxsidefxhoudini180499inhhelp.exe

    ----关闭程序:

    Microsoft Windows [版本 10.0.17763.316]
    (c) 2018 Microsoft Corporation。保留所有权利。

    C:UsersAdministrator>taskkill /f /t /im hhelp.exe
    成功: 已终止 PID 9860 (属于 PID 6124 子进程)的进程。

    C:UsersAdministrator>

     

    本文由lnlidawei(https://www.cnblogs.com/lnlidawei)原创或整理,转载请注明出处。
  • 相关阅读:
    进程与线程的区别
    信号列表详解
    同步与互斥
    互斥锁
    读写锁
    Redis QPS测试
    从分布式锁来看redis和zookpeer!
    JVM虚拟机调参
    log4j.properties配置详解与实例
    生产者消费者(消费者要消费完才能退出)
  • 原文地址:https://www.cnblogs.com/lnlidawei/p/13844234.html
Copyright © 2011-2022 走看看