vsb教程《執行程式》

2021-07-25 17:03:00 字數 604 閱讀 8587

set ws = createobject("wscript.shell")

rem run(scommand, nstyle, biswait)

rem scommand 命令列及引數列表

rem biswait 是否等待執行完成(預設false)

rem nstyle 視窗狀態(預設1,0隱/1顯)

rem 開啟cmd視窗(無參)

rem ws.run("cmd")

rem 開啟cmd視窗(有參)

rem ws.run("cmd /k help")

rem 開啟目錄

rem ws.run("explorer e:\test")

rem 開啟**

rem ws.run("explorer ")

rem 開啟記事本

rem ws.run("notepad")

rem 通過記事本開啟檔案

rem ws.run("notepad e:\test\log")

rem 開啟指定程式

rem ws.run("e:\test\test.exe")

set ws = nothing

python 執行可執行程式

python do exe.pyw coding utf 8 import os exe dir c program files q dir exe file q dir.exe def do cmd dir,file if os.access dir,os.f ok os.chdir dir if...

linux自動執行程式

linux 的啟動指令碼位於 etc init.d rcs 注rcs中 s是大寫字母 vi etc init.d rcs 進入vi後,按i 編輯.移動上下左右鍵到,你想插入的位置,然後打字。這時跟記事本是一樣的。打完字後,按esc 然後輸入 wq 注,第乙個字元是冒號 也要輸入 就儲存退出了。若想自...

Linux後台執行程式

shell command dev null 2 1 最後乙個符號 意思是讓程式在後台執行。dev null 的作用是將標準輸入轉向null,這樣就忽略當前的指令碼標準輸出。2 1 的作用是將標準錯誤連線至標準輸出,也將被忽略。一直不明白1 2的作用。原來!作業系統預設指定3個檔案 0標準輸入 1標...