Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Fax Server Device InformationContent of List Fax Server Device Information.vbsMD5 Hash: D1623B149C99D8CED334D4B894F1B153 |
||
' Description: Lists device information for the fax server atl-dc-02.
Set objFaxServer = CreateObject("FaxComEx.FaxServer") objFaxServer.Connect "atl-dc-02" Set colDevices = objFaxServer.GetDevices() For Each objFaxDevice in colDevices Wscript.Echo "ID: " & objFaxDevice.ID Wscript.Echo "CSID: " & objFaxDevice.CSID Wscript.Echo "Description: " & objFaxDevice.Description Wscript.Echo "Device name: " & objFaxDevice.DeviceName Wscript.Echo "Powered off: " & objFaxDevice.PoweredOff Wscript.Echo "Provider unique name: " & _ objFaxDevice.ProviderUniqueName Wscript.Echo "Receive mode: " & objFaxDevice.ReceiveMode Wscript.Echo "Receiving now: " & objFaxDevice.ReceivingNow Wscript.Echo "Ringing now: " & objFaxDevice.RingingNow Wscript.Echo "Rings before answer: " & _ objFaxDevice.RingsBeforeAnswer Wscript.Echo "Send enabled: " & objFaxDevice.SendEnabled Wscript.Echo "Sending now: " & objFaxDevice.SendingNow Wscript.Echo "TSID: " & objFaxDevice.TSID Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |