Need help with thinkvantage access connection

Here a log file with new access connection:
Connection status:  Disconnected
Cause:  Driver disconnected while associating.
Error code:  229378
Recommended actions:
Verify that the encryption settings (WEP/TKIP/AES) specified in this profile match those expected by the wireless network.
Verify that the wireless adapter in your computer has not been restricted from accessing the radio channels being used by the wireless network.
If the problem persists, contact your network administrator and provide the troubleshooting information below.
Adapter Details
Adapter name  11a/b/g Wireless LAN Mini PCI Express Adapter                  
Adapter type  Wireless LAN                                                   
Adapter speed  54.0 Mbps                                                      
Driver/Firmware version  7.6.0.96/ N/A                                                  
Adapter status  Enabled                                                        
Connection Status  Disconnected                                                   
Disable unused cards?  Yes                                                            
TCP/IP Settings
DHCP enabled?  Yes                                                            
Append parent suffixes of the primary DNS suffix?  Yes                                                            
Register connection's DNS suffix in registration?  Yes                                                            
Register connection's DNS suffix in DNS registration?  Yes                                                            
Enable LMHOSTS Lookup?  No                                                             
NetBIOS setting  "Default"                                                      
Wireless Settings
Network name (SSID)  linksys                                                        
Connection type  Access point                                                   
Wireless mode  Auto                                                           
Security encryption  None                                                           
System Information
System model  7732CTO                                                        
BIOS version  7LETB7WW (2.17 )                                               
Operating system version  Windows Vista,  Service pack 2                                 
Access connections version  5.31                                                           
Access Point scan list
Network name (SSID)              Wireless mode  MAC address                   Signal strength Channel
linksys                          802.11g        00:1C:10:54:65:B6              24%            11
Global Settings
Network
 Allow all users of this system to switch to any existing location profile  -> No
 Allow the wireless LAN radio to be turned off when inactive  -> No
 Allow selection of location profiles with Fn+F5 On Screen Display menu  -> Yes
 Enable autodeletion of unused profiles  -> Yes
Notifications
 Show ThinkVantage Access Connections status icon in task tray  -> No
 Show wireless status icon in task tray  -> No
 Display the progress indicator window when a profile is being applied  -> Yes
Preferences
 Enable sound effects  -> Yes
 Do not show balloon tips from the Access Connections system tray icon  -> Yes
 Show WiMAX page as default on Main GUI  -> No
Automatic location profile switching list
 Include Ethernet connections in automatic switching and prompt me to save Ethernet ports  -> Yes
 When no other connections are available, connect through Wireless WAN or WiMAX  -> No
Wireless priority list
Selection    Priority     Location profile name                                            Connection order                 Connection details             
No                  1     linksys                                                          Wireless LAN                     SSID: linksys                  
Log File
Debug Log is enabled
It didn't happen when I use old version. Can anybody help me?

Are you getting any error message while connecting to ds..?
Are you able to go online on wired computer...?
Are you able to go online on any wireless computer on your network..?
Open the router setup page and under the wireless tab,Change the Channel width to 20MHz only and Channel to 11-2.462GHz and click on save settings...Under the Advanced Wireless Settings...Change the Beacon Interval to 75,Change the Fragmentation Threshold to 2304,Change the RTS Threshold to 2304 and Click on Save Settings... 
Now,check.

Similar Messages

  • Need help with Outlook 2013 connecting to Exchange server(2010)

    Hi
    I need help with Outlook 2013 and with my exchange server(2010) email account
    After setting up account initially emails come in and than after an hour or two stop. My OWA is working fine with no issues. I have even created a forward rule in OWA to my GMAIL account whch works fine
    However Outlook 2013 is not syncing messages, have difficulty in sending emails sometimes as it takes too long.  In fact the connection also is intermittent. Even if the task bar shows connected to exchange, it seems that is not the case since new emails
    and any emails I compose dont work.  I have trouble shot the issue with my ISP and email service provide, but they havent resolved the issue  I have also done a TraceRoute and that shows no drops or problems to he exchange server.
    Can someone please help me resolve this matter so I can continue to use Outlook 2013( running Windows 8.1) in both my computers which have the identical problem
    Look forward to a solution soon
    Thanks

    Hi Angela
    Thanks for your message
    To answer your questions, please note the following
    a) My account is set up in Cache Mode( not online mode)
    b) I am the only other user on the account
    c) When the connection to the exchange server is broken, I see upon clicking connection tab that there is no information in the box, and when I press reconnect it starts showing "connecting"
    d) When the connection to the server is there, it shows  connection as "established"
    e) Sorry I dont understand th meaning of CAS array in your environment?  Can you pls explain
    Since yday I have been using Outlook 2010 on desktop and Outlook 2013 on my laptop using Exchange 2013 account.  So far all emails are syncing, and I can send emails from both computers. However, I am concerned that the connection can break-off anytime,
    as it has done that in the past on both outlook versions.  The max time it has worked without any problem is 48 hrs and than after that the same issue of not connection, not syncing and unable to send emails happens
    My ISP has checked and there is no network connectivity issues. My email service provider has trouble shot the issue many times, but to no positive results.  I have also changed the profile a few times, but the intermittent connectivity problem hasn't
    been resolved.
    Can you identify the possible causes and more importantly a working permanent solution please
    Thanks
    Mahesh

  • Non-technical user needs help with Microsoft Access/MS-Query connection

    I've read through some of the other threads on problems with the ODBC connection from MS Access to an Oracle database but as a non-techie I'm afraid I need to ask based on the steps I have always used. I'm not totally inexperienced as I have gone through the same steps on multiple Windows XP machine running different versions of Oracle and Office over the past 10 years but the steps aren't working this time. If there are settings that need to be checked or changed (path, etc.) I'm afraid I'll need specific instructions as to where I need to look for them.
    I'm currently trying to set up a connection on a new laptop running a 64-bit version of Windows 2007 Professional.
    1) I've installed a full 64 bit Oracle 11g client and 32 bit copy of Microsoft Office Professional Plus 2013.
    2) I set up the Oracle data source using the client Net Manager. I can connect from there.
    3) I added it in the Oracle-provided Microsoft ODBC Administrator and can connect from there.
    I the past, after doing this, the was automatically included in the list of ODBC Databases in MS Acess but this time it's not. I tried adding it as a new data source by selecting the Microsoft ODBC for Oracle driver but receive the same  "The Oracle(tm) client and networking components were not found" error message that has plagued so many others.

    This is bad code, for lots of reasons:
    (1) Scriptlet code like this should not be used. Learn JSTL and use its <sql> tags if you must.
    (2) This code belongs in a Java object that you can test outside of a JSP. JSPs are for display only. Let server-side objects do the database work for you.
    (3) You don't close any ResultSet, Statement, or Connection that I can see. Microsoft Access doesn't save any records until you close the Connection.
    (4) You don't have any transactional logic. When you write to a database, you usually want it to be a unit of work that is committed or rolled back together.
    %

  • I need help with Adobe Momentum Connect. Am I in the right place?

    I am trying to log on to an Adobe momentum Connect meeting. I am the host. When I click on the URL for the meeting the screen gets stuck in a never-ending screen saying "Loading Adobe Connect" I can enter the meeting with other computers but not my Vista laptop. Do I need to do something different to be able to gain access using my Vista laptop?

    Never heard of it, but try here... Connect General Discussion in the Connect forum.

  • Need help with Thin JDBC connecting Oracle to SQL server.

    I am fairly new to JAVA. We have ORACLE 8.1.7 running on Solaris 8. I have a need to
    periodically extract data from ORACLE DB and transfer it to SQL Server. I am limited to
    moving data from the ORACLE/UNIX environment to SQL Server side.
    From what I have read, Server-side Thin driver should work.
    1) Are there any issues in trying to achieve this with ORACLE running on the UNIX platform?
    2) Will the Server-side Thin driver talk to both the DBs ?
    3) Is it possible to provide some sample code ?
    Thanks in advance,
    Solomon

    Quattro,
    I had complete success in reading from Oracle and writing to SQL Server. First of all let me thank you for all your help. I do have one last request. Its more on optimization than any thing else.
    I was trying to optimize my code by grouping both the connections in one place and to keep my reads and inserts together so that I don't commit at the end of each insert etc. I don't seem to have the scope rules under control yet. Could you suggest how to improve this:
    import java.sql.*;
    public class Test_Combined2 {
    public static void main(String args[]) throws SQLException {
    // Load the Oracle JDBC driver
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    // Connect to the database
    // You must put a database name after the @ sign in the connection URL.
    // You can use either the fully specified SQL*net syntax or a short cut
    // syntax as <host>:<port>:<sid>. The example uses the short cut syntax.
    Connection con2 = DriverManager.getConnection ("jdbc:oracle:thin:@Test:1521:PSDEVElOP",
    "SOLOMON","SOL1");
    // Create a Statement
    Statement stmt2 = con2.createStatement ();
    String url = "jdbc:microsoft:sqlserver://INTRADEV:1433;DatabaseName=Measure";
    Connection con;
    String query = "select dataYear, dataMonth, yieldRate from tblYield " ;
    Statement stmt;
    try {
    Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
    } catch(java.lang.ClassNotFoundException e) {
    System.err.print("ClassNotFoundException: ");
    System.err.print(e.getMessage());
    // Select the ENAME column from the EMP table
    ResultSet rset = stmt2.executeQuery ("select year_start, monthofyear, percent_comp " +
    " from ps_usm_ytd_yield ");
    // Iterate through the result and print the employee names
    while (rset.next ()) {
    System.out.println (rset.getFloat (3));
    int ps_dataYear = rset.getInt(1);
    int ps_dataMonth = rset.getInt(2);
    float ps_yieldRate = rset.getFloat(3);
    try{
    con = DriverManager.getConnection (url, "tmpuser","tmppush");
    stmt = con.createStatement();
    PreparedStatement insertTblYield;
    String insertString = "insert into tblYield " +
    " values(?, ?, ?)";
    //con.setAutoCommit(false);
    insertTblYield = con.prepareStatement(insertString);
    insertTblYield.setInt(1, ps_dataYear);
    insertTblYield.setInt(2, ps_dataMonth);
    insertTblYield.setFloat(3, ps_yieldRate);
    insertTblYield.executeUpdate();
    con.commit();
    //con.setAutoCommit(false);
    /*ResultSet rs = stmt.executeQuery(query);
    System.out.println("dataYear, dataMonth, yieldRate");
    while (rs.next()) {
    int dataYear = rs.getInt(1);
    int dataMonth = rs.getInt(2);
    float yieldRate = rs.getFloat(3);
    System.out.println(" " + dataYear + ", " + dataMonth + ", " + yieldRate);
    stmt.close();
    con.close();
    } catch(SQLException ex) {
    System.err.print("SQLException: ");
    System.err.println(ex.getMessage());
    } //while
    stmt2.close();
    con2.close();

  • Need help with Apple TV connected to a Bose system

    I have a new Apple TV that I have installed with a Bose Lifestyle 28 home theater system connected by an optical cable.   The TV is also connected to a Directv box with the Directv box being connected to the Bose system via an Optical cable.  I get Dolby 5.1 when watching the Directv but when I put a movie from Netflix on the Apple TV, I get a message on the Bose:  PCM 2.0.  Does anyone have any ideas as to why I don't get Dolby 5.1 on this setup?

    DVI
    Some users with DVI have managed to get their TV's to work with DVI-HDMI cables. DVI carries no audio, so alternative connections need to be explored to enable audio. DVI doesn't necessarily support HDCP as well as other standards used by HDMI (which may or may not be an issue)
    Analogue
    There are hardware converters that will convert HDMI to various other types of output, however there are some issues with doing so that you should be aware of.
    HDCP
    HDCP compliant converters will not allow you to watch HDCP protected content such as that from the iTunes Store. Non compliant converters exist but we cannot discuss them under the Terms of Use for these communities.
    Resolution and aspect ratio
    I'm not aware of any converters that will scale the output from the Apple TV, any TV or projector which is used will need to be widescreen and support resolutions of 720p (Apple TV 2), 720p/1080p (Apple TV 3)
    DAC
    DAC (Example Only - Not a recommendation or suggestion that this is suitable in your circumstances)

  • Need help with foscam cameras connecting to AirPort Extreme N

    Greetings,
    I could really use some help from the AirPort gurus! I have an AirPort Extreme N base station, with firmware 7.4.2. I purchased a couple of Foscam FI8908W pan and tilt cameras. I am trying to get them to work on my home network, but cannot figure it out. Personally I think it might have something to do with port forwarding, but hec I just don't know. I have tried searching for answers, but came up empty. Here is a copy of the manual for anyone if interested <http://idisk.mac.com/wheelchairguy-Public>. I have been using VMware with XP to try and setup the camera, but the camera is not found with the IP Cam setup software. I thought I might be able to directly connect to my computer with an Ethernet cable, but no go there either. Also no go with an ethernet cable plugged to the camera into the base station. I just have no idea where or what I am doing wrong. If anyone can help me, I would be very grateful.
    Thanks,
    Mark

    Hi OneCog,
    We're also have broadband connected to TimeWarner. When I first got the camera I tried the same thing and had the same problem. I never read the docs and assume plug and play. So I just plugged the ethernet cable from my laptop to the camera directly and of course my laptop was connected wirelessly to the internet. It doesn't work that easily and don't worry about the cable modem, you never have to touch it's settings.
    I went to the http://foscam.us website and found these instructions that actually worked:
    Foscam IP Camera Instructions
    Software Insallation:
    Install from the Cd the IPCamSetup.exe file OR
    Or download the IPcamsetup.exe file from the website Foscam.us
    a) Go to the website Foscam.us
    b) Click the tool & support section (top middle section)
    c) Click on Download IP Camera Tools (for FI8908W or FI8904W)
    d) Click on IPCamSetup.rar (bottom left corner)
    e) Click on IPCamSetup.exe
    You should now have an IP Camera Tools Icon
    Hardware Installation:
    Plug the Ethernet network cable(grey wire) into the camera then into the router
    Plug the power adapter (black wire)into the camera and then into the power outlet
    Opening the Camera:
    Once` plugged in correctly, double click on the icon IP Camera Tools
    The Camera’s IP address will appear, double click on it to open the camera
    (If “subnet doesn’t match” appears , double click on it and check the box ’Obtain IP from DHCP server’ then click on OK)
    Login to the Camera:
    User: admin
    Password: (leave it blank)
    Click Login button
    NOTE: Press the first Login button if using internet Explorer or other browsers OR
    Press the second Login button if using Firefox, o r Google Chrome
    Test to see if working:
    Click on “Live Video”
    Connecting Camera to Wireless:
    Type your router Ip address unto your browser( press enter)
    (Don’t know your router IP address? SEE: Finding your router IP address)
    You may have to login or give your password. Do so.
    Under the word Wireless(on left) find ‘Channel and SSID’
    Click on ‘Channel and SSID’ write down(on paper) the SSID name
    Click on ‘Security” and write down Security type, Authentication, Encryption Technique and Pre-shared Key information
    Login back to the camera
    Double click on Ip camera tools
    Double click on camera’s Ip address
    User: admin
    Password: ( leave blank)
    Click the correct Login button for your browser
    Click on ‘Device Management’or ‘For Administrator’
    Click on ‘Wireless Lan Settings’
    Type in your SSID, Authentication Encryption technique and Pre-shared key info that you wrote down
    Press Submit
    Then wait 30 seconds
    Disconnect ethernnet network cable from the camera
    Disconnect the power plug from the camera
    Reconnect the power plug to the camera ( do not reconnect the network cable wire)
    wait till camera stops moving
    Login back to the camera
    a)Double click on Ip camera tools
    b)Double click on camera’s Ip address
    c)User: admin
    d)Password: ( leave blank)
    e)Click the correct Login button for your browser
    15. Chec k to see if camera is working by clicking on to ‘Live video’
    Connecting your Camera to the Internet
    Write down the local IP address of your camera
    (To find this address open IP Camera Tools)( it will display the IP address of the camera as htpp://[YourCamerasLocalIPAddress])
    Write down your router’s external internet IP address
    ( The easiest way to find this would be to Google “What is my IP address” and go to the first link which pops up and that is usually whatismyipaddress.com)
    Log in to your wireless router
    To do this you must enter the IP address of your router into your browser(enter)
    and then enter the username and password when prompted.
    ( If you are unsure of the ip address or username and password of your router, SEE Finding your Router IP Address )
    Directing incoming connections on your external IP address to your cameras local IP address
    a)Go through the options( on left side) find ‘DMZ’
    b)Click on DMZ
    c)set the DMZ IP address (also called “private”/”local” IP address”) to your cameras
    local IP address(by changing the last component of the number to the last or last
    two digits of your cameras IP address)
    d)Select enable option
    e)Save by clicking ‘Apply Changes’
    OR If you have more than one camera
    a)click on “Virtual Server” or “Port Forwarding”
    b) set the inbound port to 80 and the outbound port to 80
    c) Save by clicking ‘Apply Changes’
    Test it to see if you set it up correctly
    open a browser and enter your external internet ip address into the address bar and press enter
    You should arrive at your camera’s login screen if you successfully connected the camera to the internet
    NOTE: Please keep in mind that the camera’s IP address and the Internet’s external IP address can change at any time. Check and make sure that the IP addresses haven’t changed. If they have changed, use the new IP addresses.
    Finding Your Routers IP Address: (Internal)
    Refer to your router’s manual OR
    Retrieve your Routers Ip Address from Ip Camera Tool software
    Double Click on your IP Camera Tool Icon
    Then left click once on your Camera’s IP address
    Right click on it and choose ‘Network Configuration’
    The ‘Gateway’ number is your router Ip address ( write it down) OR
    view a list of default router IP addresses, usernames and passwords
    by Google searching “default router IP addresses”
    and clicking on the PDF titled “List of default Router Admin Passwords and Default Router IP” at: http://www.answersthatwork.com/DownloadArea/ATW_Library/Networking/Network__4-List_of_default_Router_Admin_Passwords_an d_IPaddresses.pdf
    Go to ‘find’ and type in the brand name of your router (press enter)
    Write down your routers IP address
    Message was edited by: dollarbrand

  • Need help with a printer connected to a windows home server

    I have a Windows Home Server that has a Brother laser printer connected to it via a USB cable. The printer driver is installed on the WHS and on each PC. My PCs on the network find the printer and can print to it with no problems. But, with my MBA, I'm having issues. I can see the printer as part of the server when installing/setting it up on the MBA and found the Ma printer driver from Brother and installed it on MBA. However, print jobs I send it never print out. What did I do wrong?

    Your MBA should be able to detect the printer and locate the driver, install it and mount the printer. I have an HP5180 color all in one, which I have connected to my Windows PC, and my MBA sees it and prints to it just fine. Have you looked to see if Brother has a Mac driver for it?

  • Help with guided access

    I need help with guided access! My friend's ipod touch 4 used guided access. She can't turn off her ipod touch, and the home button won't work. When she uses the home button, it shows a message that says she needs to click it 3 times. How do i fix it? Please help!

    See:
    iOS: About Guided Access
    In case i forget my guided access...: Apple Support Communities
    SOS I cannot Exit Guided access: Apple Support Communities

  • I need help with the iPad Remote app to connect to apple TV 2

    I need help with the iPad Remote app to connect to apple TV 2 I have the app already on my ipad and when I open it only shows my itunes library and not the small black Apple TV 2 icon! How do i fix this and i know it's something 

    Get the manual at http://manuals.info.apple.com/en_US/AppleTV_SetupGuide.pdf
     Cheers, Tom

  • Need help with connecting file inputs to arrays

    In this assignment I have a program that will do the following: display a list of names inputed by the user in reverse order, display any names that begin with M or m, and display any names with 5 or more letters. This is all done with arrays.
    That was the fun part. The next part requires me to take the names from a Notepad file, them through the arrays and then output them to a second Notepad file.
    Here is the original program: (view in full screen so that the code doesn't get jumbled)
    import java.io.*;       //Imports the Java library
    class progB                    //Defines class
        public static void main (String[] arguments) throws IOException
            BufferedReader keyboard;                                  //<-
            InputStreamReader reader;                                 //  Allows the program to
            reader = new InputStreamReader (System.in);               //  read the the keyboard
            keyboard = new BufferedReader (reader);                  //<-
            String name;                 //Assigns the name variable which will be parsed into...
            int newnames;               //...the integer variable for the amount of names.
            int order = 0;              //The integer variable that will be used to set the array size
            String[] array;             //Dynamic array (empty)
            System.out.println (" How many names do you want to input?");   //This will get the number that will later define the array
            name = keyboard.readLine ();
            newnames = Integer.parseInt (name);                                         // Converts the String into the Integer variable
            array = new String [newnames];                                               //This defines the size of the array
            DataInput Imp = new DataInputStream (System.in);       //Allows data to be input into the array
            String temp;                                       
            int length;                                                                  //Defines the length of the array for a loop later on
                for (order = 0 ; order < newnames ; order++)                                //<-
                {                                                                           //  Takes the inputed names and
                    System.out.println (" Please input name ");                            //  gives them a number according to
                    temp = keyboard.readLine ();                                           //  the order they were inputed in
                    array [order] = temp;                                                  //<-
                for (order = newnames - 1 ; order >= 0 ; order--)                                //<-
                {                                                                                //  Outputs the names in the reverse 
                    System.out.print (" \n ");                                                   //  order that they were inputed
                    System.out.println (" Name " + order + " is " + array [order]);             //<-
                for (order = 0 ; order < newnames ; order++)                                  //<-
                    if (array [order].startsWith ("M") || array [order].startsWith ("m"))     //  Finds and outputs any and all
                    {                                                                         //  names that begin with M or m
                        System.out.print (" \n ");                                            //
                        System.out.println (array [order] + (" starts with M or m"));         //
                    }                                                                         //<-
                for (order = 0 ; order < newnames ; order++)                                            //<-
                    length = array [order].length ();                                                   //
                    if (length >= 5)                                                                    //  Finds and outputs names
                    {                                                                                  //  with 5 or more letters
                        System.out.print (" \n ");                                                      //
                        System.out.println ("Name " + array [order] + " have 5 or more letters ");      //<-
    }The notepad file contains the following names:
    jim
    laruie
    tim
    timothy
    manny
    joseph
    matty
    amanda
    I have tried various methods but the one thing that really gets me is the fact that i can't find a way to connect the names to the arrays. Opening the file with FileInputStream is easy enough but using the names and then outputing them is quite hard. (unless i'm thinking too hard and there really is a simple method)

    By "connect", do you just mean you want to put the names into an array?
    array[0] = "jim"
    array[1] = "laruie"
    and so on?
    That shouldn't be difficult at all, provided you know how to open a file for reading, and how to read a line of text from it. You can just read the line of text, put it in the array position you want, until the file is exhausted. Then open a file for writing, loop through the array, and write a line.
    What part of all that do you need help with?

  • Thinkvantage Access Connection reinstall help

    I removed the Thinkvantage Access Connection program because I was having problems connecting to the wireless network in my home. I thought I'd try the Windows network connection but I couldn't get it to work. I now want to reinstall the Thinkvantage Access but don't know how. My T61 did not come with any disks. Where can i find this program, or do I have to do a full restore?
    thanks

    Hello slojes,
    here´s a guide from Lenovo to properly install AC and Wlan drivers.
    Regards
    Andreas
    Follow @LenovoForums on Twitter! Try the forum search, before first posting: Forum Search Option
    Please insert your type, model (not S/N) number and used OS in your posts.
    I´m a volunteer here using New X1 Carbon, ThinkPad Yoga, Yoga 11s, Yoga 13, T430s,T510, X220t, IdeaCentre B540.
    TIP: If your computer runs satisfactorily now, it may not be necessary to update the system.
     English Community       Deutsche Community       Comunidad en Español

  • Need help with accessing the program.

    I need help with accessing my adobe creative cloud on my windows 8.1 laptop. I have an account but do not have an app. I need this for my online classes. Please help!

    Link for Download & Install & Setup & Activation may help
    -Chat http://www.adobe.com/support/download-install/supportinfo/

  • Use thinkvantage access connections to map a network drive

    Is it possible to use thinkvantage access connections to map a network drive. I have three different basic sites (home, work1, work2) with network drives that I would like to access depending on the site.
    1) I wonder if it is possible to configure thinkvantage access connections to automatically map the network resources through a connection profile?
    2) I wonder if it is possible to configure thinkvantage access connections to automatically map the network resources through a connection profile that is based on vpn connection?
    thanks in advance
    sincerely, anders

    Hi,
    directly it's not possible for Access Connection to reconfigure your network drives.
    However, there is one really cool part of Access Connection, that might be realy suitable for your situation. This part is the script/application, that can be executed when a profile gets applied.
    So for your situation I can imagine, that you create a .bat file, that contains something like this:
    net use * /DELETE /YES
    net use Z: \\computer name\share name
    The first part will delete all maped drives. The second part will establish connection that you want to use. Of course you can multiply the last part, so that you can configure multiple connections.
    Please let me know, if this helps.
    Cheers

  • Need help with a WRT54GS V5.1

    i need help with my WRT54GS V5.1 wireless router. it cannot connect to the internet and i don't know why. at the moment i have to use an ethernet cable coming from a virgin media modem. information that might be usefull. one of the antennas on the router is broke i am using windows vista on a toshiba laptop. the model is WRT54GS V5.1 thanks for people who help note: i am only 13 so somethings you say i might not understand.

    Access Setup page of router .....
    Click wireeless tab .... have a note of the wireless settings on that page .... Please click on the tab "Application and gaming" and click on sub
    tab "Port range forwarding"
    1) On the first line in Application box type in "Xbox", in start box
    type in 88, in end box type in 88, in protocol keep it both, in ip
    address type in 192.168.1.20 and give a check mark on enable box.
    2)   On the second line in Application box type in "Xbox", in start box
    type in 3074, in end box type in 3074, in protocol keep it both, in ip
    address type in 192.168.1.20 and give a check mark on enable box.
    3) Now save the settings
    4) Once you return to the setup page, click on the tab "Administration"
    and disable the UPNP and save the settings.
    5) Now assign the given ip address on your xbox
       ip address :- 192.168.1.20
       subnet mask :- 255.255.255.0
       default gateway :- 192.168.1.1
    Please assign the dns address on the xbox
      primary dns :- 4.2.2.2
      secondary dns :- 192.168.1.1
    6) Please try to test your xbox live.

Maybe you are looking for

  • Vertical lines

    I have Snow Leopard running on a 2006 iMac 24 inch. I'm getting intermittent small vertical lines on the screen. I'm also getting this message, Flash Player (Safari Internet plug-in) quit unexpectedly. Can the 2 be related? How do I fix the Flash Pla

  • Output ipconfig to html

    Hi All, It sounds simple but it makes a bit of a mess in the html. I have tried using convertto-html and also tried manually creating the html by creating a string with the header etc... as follows: $file = "c:\temp\a.html" "<html><head><title>Networ

  • Since upgrading IOS 8 my Ipod Touch doesn't charge.

    Since the upgrade to IOS 8 my ipod touch doesn't charge directly with the charger. It's not the cable or the charger. The cable works fine when I connect the ipod touch to my computer and start itunes, if I turn iphoto it still doesn't charge. And th

  • How do I load windows for mac

    How do I load windows for mac I have DVD software

  • Is it possible to pass in images to oracle BPEL?

    Hi all, i want to bind a service which passes in an image. Does Oracle BPEL support the transport of images? If yes, does it also support the XML schema format hexBinary? Because the image is raw hex-encoded (not base64). regards Albrecht