No text in Network Connections

Page 3 of 10 FirstFirst 12345 ... LastLast

  1. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #21

    nulano said:
    Code:
    C:\Windows\system32>netsh int show interf
     
    Admin State    State          Type             Interface Name
    -------------------------------------------------------------------------
    Enabled        Connected      Dedicated        Hamachi
    Enabled        Disconnected   Dedicated        Pripojenie bezdrôtovej siete 2
    Enabled        Disconnected   Dedicated        Lokálne pripojenie
    Enabled        Connected      Dedicated        Pripojenie bezdrôtovej siete                           <-- This is what I want to modify
    What is Hamachi .. wired or wireless?
      My Computer


  2. Posts : 49
    Windows 7 Home Premium x64
    Thread Starter
       #22

    Kaktussoft said:
    nulano said:
    Code:
    C:\Windows\system32>netsh int show interf
     
    Admin State    State          Type             Interface Name
    -------------------------------------------------------------------------
    Enabled        Connected      Dedicated        Hamachi
    Enabled        Disconnected   Dedicated        Pripojenie bezdrôtovej siete 2
    Enabled        Disconnected   Dedicated        Lokálne pripojenie
    Enabled        Connected      Dedicated        Pripojenie bezdrôtovej siete                           <-- This is what I want to modify
    What is Hamachi .. wired or wireless?
    Virtual.
    https://secure.logmein.com/products/...i/default.aspx
      My Computer


  3. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #23

    Kaktussoft said:
    Code:
    netsh interface ip set address "Pripojenie bezdrôtovej siete" dhcp
    works?
    Do the above command . After that connect to the wireless router you want to do port forwarding on. After succesfull connection:

    Code:
    netsh interface ip show config name="Pripojenie bezdrôtovej siete"
    Post output
      My Computer


  4. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #24

    nulano said:
    Kaktussoft said:
    nulano said:
    Code:
    C:\Windows\system32>netsh int show interf
     
    Admin State    State          Type             Interface Name
    -------------------------------------------------------------------------
    Enabled        Connected      Dedicated        Hamachi
    Enabled        Disconnected   Dedicated        Pripojenie bezdrôtovej siete 2
    Enabled        Disconnected   Dedicated        Lokálne pripojenie
    Enabled        Connected      Dedicated        Pripojenie bezdrôtovej siete                           <-- This is what I want to modify
    What is Hamachi .. wired or wireless?
    Virtual.
    https://secure.logmein.com/products/...i/default.aspx
    How do you access the internet right now on sick pc?

    Code:
    netsh wlan show interfaces
    post output
      My Computer


  5. Posts : 49
    Windows 7 Home Premium x64
    Thread Starter
       #25

    Kaktussoft said:
    Kaktussoft said:
    Code:
    netsh interface ip set address "Pripojenie bezdrôtovej siete" dhcp
    works?
    Do the above command . After that connect to the wireless router you want to do port forwarding on. After succesfull connection:

    Code:
    netsh interface ip show config name="Pripojenie bezdrôtovej siete"
    Post output
    It's this PC I'm using right now. When I set it to DHCP it works every time.

    Code:
    C:\Windows\system32>netsh interface ip show config name="Pripojenie bezdrôtovej siete"
    
    Configuration for interface "Pripojenie bezdrôtovej siete"
        DHCP enabled:                         Yes
        IP Address:                           192.168.1.4
        Subnet Prefix:                        192.168.1.0/24 (mask 255.255.255.0)
        Default Gateway:                      192.168.1.250
        Gateway Metric:                       0
        InterfaceMetric:                      25
        DNS servers configured through DHCP:  192.168.1.250
        Register with which suffix:           Primary only
        WINS servers configured through DHCP: None
    Kaktussoft said:
    nulano said:
    Kaktussoft said:
    What is Hamachi .. wired or wireless?
    Virtual.
    https://secure.logmein.com/products/...i/default.aspx
    How do you access the internet right now on sick pc?

    Code:
    netsh wlan show interfaces
    post output
    Code:
    C:\Windows\system32>netsh wlan show interfaces
    
    There is 1 interface on the system:
    
        Name                   : Pripojenie bezdrôtovej siete
        Description            : Atheros AR9285 Wireless Network Adapter
        GUID                   : 63a0eab9-0113-453b-91ef-b4e9a20aa677
        Physical address       : 00:25:d3:83:67:04
        State                  : connected
        SSID                   : tiba
        BSSID                  : 00:22:b0:9a:67:d9
        Network type           : Infrastructure
        Radio type             : 802.11g
        Authentication         : WPA2-Personal
        Cipher                 : CCMP
        Connection mode        : Auto Connect
        Channel                : 1
        Receive rate (Mbps)    : 54
        Transmit rate (Mbps)   : 54
        Signal                 : 88%
        Profile                : tiba
    
        Hosted network status  : Not started
      My Computer


  6. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #26

    So only thing you want is:
    It must always have ip address 192.168.1.4 (or at least always the same), so you can port forward afterwards?

    Physical address : 00:25:d3:83:67:04
    More common syntax is: 00-25-D3-83-67-04


    All you have to do is:
    • If wireless with mac address 00-25-D3-83-67-04 connects to your home router .... it should give him address 192.168.1.4
    That's all you have to do. It will still use DHCP but it always get the same IP address. When connected to work router or other hotspot.... it just gets a dynamic address from that dhcp server.

    So a much beter solution!

    How to do it... with "dcp reservation" on router. Something like this Setting up DHCP Reservation on a Linksys wireless-N router
      My Computer


  7. Posts : 49
    Windows 7 Home Premium x64
    Thread Starter
       #27

    Kaktussoft said:
    So only thing you want is:
    It must always have ip address 192.168.1.4 (or at least always the same), so you can port forward afterwards?

    Physical address : 00:25:d3:83:67:04
    More common syntax is: 00-25-D3-83-67-04


    All you have to do is:
    • If wireless with mac address 00-25-D3-83-67-04 connects to your home router .... it should give him address 192.168.1.4

    That's all you have to do. It will still use DHCP but it always get the same IP address. When connected to work router or other hotspot.... it just gets a dynamic address from that dhcp server.

    So a much beter solution!

    How to do it... with "dcp reservation" on router. Something like this Setting up DHCP Reservation on a Linksys wireless-N router
    I don't think that's an option for my router (D-Link DSL-2641R).
      My Computer


  8. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #28

    You posted many screenshots, for example:

    It shows "network connections". Why in english? And all netsh commands gave english output as well!!
    I'm dutch... all that output is in Dutch on my site!

    Any other win7 windows that aren't translated?
      My Computer


  9. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #29

    nulano said:
    Kaktussoft said:
    So only thing you want is:
    It must always have ip address 192.168.1.4 (or at least always the same), so you can port forward afterwards?

    Physical address : 00:25:d3:83:67:04
    More common syntax is: 00-25-D3-83-67-04



    All you have to do is:
    • If wireless with mac address 00-25-D3-83-67-04 connects to your home router .... it should give him address 192.168.1.4
    That's all you have to do. It will still use DHCP but it always get the same IP address. When connected to work router or other hotspot.... it just gets a dynamic address from that dhcp server.

    So a much beter solution!

    How to do it... with "dcp reservation" on router. Something like this Setting up DHCP Reservation on a Linksys wireless-N router
    I don't think that's an option for my router (D-Link DSL-2641R).
    http://www.t-mobile.cz/dcpublic/Navo...nk%202641B.pdf
    page 32, but actual information is on page 33.
      My Computer


  10. Posts : 49
    Windows 7 Home Premium x64
    Thread Starter
       #30

    Kaktussoft said:
    You posted many screenshots, for example:

    It shows "network connections". Why in english? And all netsh commands gave english output as well!!
    I'm dutch... all that output is in Dutch on my site!

    Any other win7 windows that aren't translated?
    A couple examples:

    • Everything in "Nástroje na správu" (screenshot)
    • Almost everything in CMD
    • Speech Recognition (but it states that it's not supported)

    Example in CMD:
    Code:
    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation. Všetky práva vyhradené.
    
    C:\Users\Ondrej>if /?
    Performs conditional processing in batch programs.
    
    IF [NOT] ERRORLEVEL number command
    IF [NOT] string1==string2 command
    IF [NOT] EXIST filename command
    
      NOT               Specifies that Windows should carry out
                        the command only if the condition is false.
    
      ERRORLEVEL number Specifies a true condition if the last program run
                        returned an exit code equal to or greater than the number
                        specified.
    
      string1==string2  Specifies a true condition if the specified text strings
                        match.
    
      EXIST filename    Specifies a true condition if the specified filename
                        exists.
    
      command           Specifies the command to carry out if the condition is
                        met.  Command can be followed by ELSE command which
                        will execute the command after the ELSE keyword if the
                        specified condition is FALSE
    
    The ELSE clause must occur on the same line as the command after the IF.  For
    example:
    
        IF EXIST filename. (
            del filename.
        ) ELSE (
            echo filename. missing.
        )
    
    The following would NOT work because the del command needs to be terminated
    by a newline:
    
        IF EXIST filename. del filename. ELSE echo filename. missing
    
    Nor would the following work, since the ELSE command must be on the same line
    as the end of the IF command:
    
        IF EXIST filename. del filename.
        ELSE echo filename. missing
    
    The following would work if you want it all on one line:
    
        IF EXIST filename. (del filename.) ELSE echo filename. missing
    
    If Command Extensions are enabled IF changes as follows:
    
        IF [/I] string1 compare-op string2 command
        IF CMDEXTVERSION number command
        IF DEFINED variable command
    
    where compare-op may be one of:
    
        EQU - equal
        NEQ - not equal
    Press any key to continue . . .
    Attached Thumbnails Attached Thumbnails No text in Network Connections-static004.png  
      My Computer


 
Page 3 of 10 FirstFirst 12345 ... LastLast

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 13:43.
Find Us