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:51 PM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, 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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360