标题: [讨论]procomm plus 好用的功能你知道嗎? [打印本页] 作者: pbx9999 时间: 2004-3-1 22:58 标题: [讨论]procomm plus 好用的功能你知道嗎? 計算機的專長是幫你做重複又無聊的工作
當然這只是功能之一
當你必須要快速的輸入一成不變的內容時
他就是一個秘密武器
在最快時間可以幫你完成工作
錄製過程以後可以幫你記錄輸入及比對輸出
按撥放可以自動執行
當然你如果懂得寫程序更可以對不同欄位輸出不同的值
一套nortel 61c 只要花4個小時就可以跑完
約500多個分機如果不是很複雜的話兩個小時可以完成
尤其是開語音郵箱更是輕鬆
還可以從lan近端遙控
有固定ip從遠端遙控設置也沒問題
你覺得好用嗎
有前輩能補充嗎?
作者: pabxman 时间: 2004-3-1 23:15
用脚本功能。作者: pabxman 时间: 2004-3-1 23:23
是这个吗?
;***********************************************************************
;* *
;* REMOTE.ASP COPYRIGHT (C) 1990 DATASTORM TECHNOLOGIES, INC. *
;* *
;* Purpose : This ASPECT module illustrates a simple way to cause *
;* remote execution of a local script file. This provides an *
;* alternative to sending several remote commands separately where *
;* each command would require separate compilation before it could *
;* be executed. The file you send can be in source or compiled *
;* form. The name for the file received and executed at the *
;* remote machine is defined in REMFILE below. *
;* *
;* You could easily have a local script interact with the script *
;* being executed remotely using RGET or WAITFOR commands for *
;* timing or branching to specific tasks. You may also want to *
;* consider deleting the script from the remote upon completion of *
;* its execution. This could easily be accomplished by modifying *
;* this script to WAITFOR a response from the remote script which *
;* indicates that it has finished executing, and then issuing a *
;* remote command such as "^Ddos `"del $ASP_TMP.*`"^M". *
;* *
;* Remember : The remote machine MUST have Remote Commands set ON in *
;* its General Options setup screen. *
;* *
;***********************************************************************
define REMFILE "$ASP_TMP" ; filename received by remote
proc main
string filename,xmitfile,xmitstr
integer extndx
vidsave 0
box 4 18 18 60 14
atsay 5 24 15 "REMOTE SCRIPT EXECUTION FACILITY"
atsay 6 19 14 "-----------------------------------------"
atsay 8 20 15 "Enter the ASPECT filename:"
atget 8 47 112 12 filename
isfile filename
if failure
sound 220 10
atsay 10 20 15 "File not found..."
pause 3
else
find filename "." extndx
substr xmitfile filename extndx 4
strupr xmitfile
strfmt xmitfile "%s%s" REMFILE xmitfile
atsay 10 20 15 "Sending script file to remote..."
strfmt xmitstr "^Dgetfile xmodem `"%s`"^M" xmitfile
transmit xmitstr
atsay 12 20 15 "Pausing for remote compilation..."
pause 5
sendfile xmodem filename
if failure
sound 220 20
atsay 14 20 15 "Error sending file to remote"
pause 3
else
pause 3
atsay 14 20 15 "Sending EXECUTE command sequence..."
strfmt xmitstr "^Dexecute `"%s`"^M" xmitfile
transmit xmitstr
pause 3
sound 440 20
atsay 16 20 15 "Operation completed -- Press any key"
keyget
endif
endif
vidrest 0
endproc作者: pbx9999 时间: 2004-3-1 23:56
ASPECT 是可以讓你編寫的語法請參考help
我已編寫許多修改程序但都是針對北電所編寫的
全都run過沒有問題作者: pabxman 时间: 2004-3-2 00:01
过去在 DOS 版的 PCPLUS 写过一些,现在全回炉了。作者: pbx9999 时间: 2004-3-2 00:36
那你很快可以上手的
多看些sample改一下就可以的
開檔語法迴圈很快的
我也是很快搞懂只要多看help