Changes between Version 46 and Version 47 of jazz/hadoop4win-dev


Ignore:
Timestamp:
Apr 26, 2011, 11:30:54 AM (14 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/hadoop4win-dev

    v46 v47  
    357357 * 語法:[http://omega.idv.tw/nsis/Section4.9.html#4.9.14.14 4.9.14.14 SetDetailsPrint] - 選擇只顯示到狀態列還是列表框
    358358 * 語法:[http://nsis.sourceforge.net/Docs/nsExec/nsExec.txt nsExec::ExecToLog] - 將 Exec 的執行結果顯示到安裝訊息列表框。
     359 * 如何讓 CMD 執行的視窗最小化或在背景執行 - [參考] [http://serverfault.com/questions/35305/cmd-exe-how-to-starts-a-background-process-run-some-things-stops-background-pr cmd.exe: how to starts a background process, run some things, stops background process]
     360{{{
     361SET TASK=%RANDOM%-SELENIUM-SERVER-%RANDOM%
     362start "%TASK%" cmd /k start java -jar "path\selenium-server.jar"
     363ping -n 5 127.0.0.1 >NUL"
     364path\Gallio.Echo.exe" "path\MyAssembly.dll"
     365taskkill /T /FI "WINDOWTITLE eq %TASK%"
     366}}}