Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 01-31-2004, 04:03 PM   #1 (permalink)
Insane
 
happymaan's Avatar
 
Location: los angeles
sending commands to modem

I'm running win2000 and I have an internal modem on com3. I want to be able to send it commands via the command prompt.

I thought I could do this by simply doing:

echo ata>com3

but that's not working. I get a responce when enter the command within hyperterminal, but nothing from the command prompt.

What am I doing wrong?

thanks

-happymaan
happymaan is offline  
Old 01-31-2004, 04:20 PM   #2 (permalink)
!?!No hay pantalones!?!
 
saltfish's Avatar
 
Location: Indian-no-place
Try,

ECHO >COM3 ATA

ECHO >COM3 AT&F^M (TO RESET)

Lemme know if it works.

-SF
saltfish is offline  
Old 01-31-2004, 04:27 PM   #3 (permalink)
Insane
 
happymaan's Avatar
 
Location: los angeles
No, nothing happens....but thanks.

-happymaan
happymaan is offline  
Old 01-31-2004, 04:30 PM   #4 (permalink)
!?!No hay pantalones!?!
 
saltfish's Avatar
 
Location: Indian-no-place
Is this a WinModem? Are your interrupts ok?



I plugged in an old external on com2 and it's taking commands the way I described previously...

remember, command prompt commands are one direction, if you sent it a command, you will not get a text response back.

-SF

Last edited by saltfish; 01-31-2004 at 04:36 PM..
saltfish is offline  
Old 02-01-2004, 06:52 PM   #5 (permalink)
Psycho
 
Location: Boston, MAss., USA
Try this:

1. Turn the modem speaker up (modem properties in control panel)
2. open a command prompt & type:
echo adtd > com1
(note: this may need to be com2 or com3 depending on what your modem's com port is)

do you hear a dial tone?

Also, if you're looking for a command line dialer, check into rasdial, it's a dialier for the command line that's built in to XP (pretty sure it's on 2k, too.)
__________________
I'm gonna be rich and famous, as soon I invent a device that lets you stab people in the face over the internet.
JohnnyRoyale is offline  
Old 02-02-2004, 10:45 AM   #6 (permalink)
Insane
 
happymaan's Avatar
 
Location: los angeles
It's really weird. When I load hyptertermial to send command to com3 it works fine. I've been sending it the ATA command which should make it pick up the line and screech like hell...but that only happens within hyperternimal.

echo ANYTHING >com3 does nothing. The modem doesn't even pick up the phone.

By the way, the reason I want to get a command line dialer is I live in a pt. complex where you need to be able to buzz people in through the front door, but my desk phone is a rotary. So I want a way to dial 5 then 9 from my command prompt.

The modem is Broadxent DSI V.92 PCI DI3631, and eveything about it works the command line dialing.
happymaan is offline  
Old 02-02-2004, 11:37 AM   #7 (permalink)
Psycho
 
Location: Boston, MAss., USA
Then you should definitely checkout the rasdialer command. open a command prompt and type

rasdial /?

Setup a network connection to do a dial up connection. set the phone number to 5,,,9 which is a five, a pause, then a 9. Once you have the dial up connection available, you can run:

rasdial test

where test is the name, then

rasdial test /hangup

rasdial will read the phone & modem info for you. Simply add the lines to a command file, and your done.
__________________
I'm gonna be rich and famous, as soon I invent a device that lets you stab people in the face over the internet.
JohnnyRoyale is offline  
Old 02-02-2004, 01:05 PM   #8 (permalink)
!?!No hay pantalones!?!
 
saltfish's Avatar
 
Location: Indian-no-place
Have you tried tried to use:

ECHO >COM3 ATDT 5,,9

This should open the line then dial 5 <pause> 9.

Also, you could create a batch file:

Filename: Door.bat
-------------------------
ECHO >COM3 ATZ
REM MODEM INIT

ECHO >COM3 ATDT 5,,9
REM OPEN PORT, SEND DIAL COMMAND 5 <PAUSE> 9

------------------

-SF

P.S. If the ATDT does work via echo, then you could put this bat file somewhere, and create an icon on your desktop that could simply be double-clicked to dial the 5 9.

PPS. You may have to add a manual CR to the end of the echo files.

Before:
ECHO >COM3 ATZ
ECHO >COM3 ATDT 5,,9

After:

ECHO >COM3 ATZ^M
ECHO >COM3 ATDT 5,,9^M


Sending a command to a modem may leave it in the buffer if the command isn't 'ended'. '^M' is the equivalent of hitting return after a command.

PPPS Sometimes you may need to put quotes around your command.

Such as:

ECHO >COM3 "ATDT 5,,9^M"

Now, if your modem is set to tone, you're ok. If you modem is set to pulse, you have to either RESET the modem with AT&F after the ATZ, or create an INIT string"


DOOR.BAT
--------------
ECHO >COM3 ATZ^M
ECHO >COM3 AT&F^M
ECHO >COM3 ATDT 5,,9^M


Lemme Know..


Last edited by saltfish; 02-02-2004 at 01:21 PM..
saltfish is offline  
Old 02-02-2004, 05:20 PM   #9 (permalink)
Insane
 
happymaan's Avatar
 
Location: los angeles
Thanks for all the help, but using the echo command (with all the varibles you gave me) does nothing. I hit enter and just get the command prompt again, and the modem does nothing.

I was able to get it working using rasdial, but I still wonder why the echo commands are not working.
happymaan is offline  
 

Tags
commands, modem, sending


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 09:11 PM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54