\"TCP/IP is not active on your system\"
- Testiculese
- DBB Material Defender
- Posts: 4689
- Joined: Sun Nov 11, 2001 3:01 am
\"TCP/IP is not active on your system\"
Why would I suddenly get this in D3 when connecting to a game? Any server. I get into D3, choose a pilot, and then this message, and dumps me to the main menu.
Only thing I did to the machine is install .NET on it. I don't recall if I saw this error before or after the install, though.
Network is fine for everything else.
Only thing I did to the machine is install .NET on it. I don't recall if I saw this error before or after the install, though.
Network is fine for everything else.
- Testiculese
- DBB Material Defender
- Posts: 4689
- Joined: Sun Nov 11, 2001 3:01 am
No go.
I checked the registry and the default connection was set to HEAT..know what, I forgot, I installed d3 fresh so I could get the single player mission set back on the disk...
I launched d3 manually and clicked on Multiplayer, then chose TCPIP, and set as default connection, then OK, and I got the same error message. I exited and checked the registry, the correct value is now there, so I went back in and tried again, same error.
I looked in the Descent3\\online folder, and teh TCPIPfile is named Direct TCP~IP.d3c, is this correct? I don't recall. It's the only one listed, as I was tired of clicking the wrong one and ending up waiting for a timeout, so I deleted the others.
I checked the registry and the default connection was set to HEAT..know what, I forgot, I installed d3 fresh so I could get the single player mission set back on the disk...
I launched d3 manually and clicked on Multiplayer, then chose TCPIP, and set as default connection, then OK, and I got the same error message. I exited and checked the registry, the correct value is now there, so I went back in and tried again, same error.
I looked in the Descent3\\online folder, and teh TCPIPfile is named Direct TCP~IP.d3c, is this correct? I don't recall. It's the only one listed, as I was tired of clicking the wrong one and ending up waiting for a timeout, so I deleted the others.
- Testiculese
- DBB Material Defender
- Posts: 4689
- Joined: Sun Nov 11, 2001 3:01 am
- Testiculese
- DBB Material Defender
- Posts: 4689
- Joined: Sun Nov 11, 2001 3:01 am
- Testiculese
- DBB Material Defender
- Posts: 4689
- Joined: Sun Nov 11, 2001 3:01 am
- Krom
- DBB Database Master
- Posts: 16138
- Joined: Sun Nov 29, 1998 3:01 am
- Location: Camping the energy center. BTW, did you know you can have up to 100 characters in this location box?
- Contact:
Yeah, 'Tasklist /svc' is handy, but there is something else that is even more handy to use with it.
'tasklist /svc > tasklist.txt' > 'notepad tasklist.txt'
No more scrolling in command prompt windows.
Any command you enter into command prompt you can get the output to write to a file on the disk. Simply put ' > filename.txt' on the end of the command. For instance if you want to list all the hidden files in a directory and subdirectories, sorted by name then date then size grouping directories first, type 'dir /a:h /s /o:gnds > dirlist.txt' then when it is done, open that text document in notepad.
'tasklist /svc > tasklist.txt' > 'notepad tasklist.txt'
No more scrolling in command prompt windows.
Any command you enter into command prompt you can get the output to write to a file on the disk. Simply put ' > filename.txt' on the end of the command. For instance if you want to list all the hidden files in a directory and subdirectories, sorted by name then date then size grouping directories first, type 'dir /a:h /s /o:gnds > dirlist.txt' then when it is done, open that text document in notepad.
- BUBBALOU
- DBB Benefactor
- Posts: 4198
- Joined: Tue Aug 24, 1999 2:01 am
- Location: Dallas Texas USA
- Contact:
Re:
Grendel wrote:That's why you should not use 2092 for a dedi server. I use 2093+ for dedicated servers.
ZACTLY@@@@ 2092 should be used for your gaming machine
I seem to have a better workout dodging your stupidity than attempting to grasp the weight of your intelligence.
Re:
Or you can use the pipe, and pipe the ouput to more. I wish Windows had an equivalent of less, which lets you scroll arbitrarily backwards and forwards, but anyway:Krom wrote:Any command you enter into command prompt you can get the output to write to a file on the disk. Simply put ' > filename.txt'
Code: Select all
dir /a:h /s /o:gnds |more
If you have the .NET Framework 2.0 installed, you can get the Monad shell (or whatever they renamed it when it came out of beta). It's written in C# and is about as powerful as bash or tcsh on Unix, as you can write shell scripts in C# (called "cmdlets") and use them like uber-powerful batch files, without compiling them.