Need help with internet connection

Hi I'm new to this forum, I need help. Recently I reformat my hard drive and also to recharge my windows XP OS. However, it cannot be connected to the internet. I have check and found that there is no connection of the network adapter on my laptop. I ask MS to help over the phone and was told to download the IE7 to try as I did, but my internet connection still does not work.  My router works like my other laptop is able to connect to the internet. Thank you for your help. Kind regards.

Hello

1 have had modifications made to your computer before the problem occurred?

2. is it a laptop or desktop?

3. who is the manufacturer of the computer, and what is the model number of your computer?

4. have you installed the latest network drivers on your computer?

5. what security program is installed on your computer (Antivirus and firewall)?

As there is no network adapter installed on your computer, I suggest to first download and install the drivers for the network adapters on your computer manufacturer Web site and check to see if that fixes the problem on your computer.

If the question is limited to Internet Explorer I suggest you follow the troubleshooting steps in the following article.

"Internet Explorer cannot display the webpage" error in Internet Explorer

http://support.Microsoft.com/kb/956196

I hope this information helps. Please get back to us if you have any other questions on this subject.

Tags: Windows

Similar Questions

  • HP laptop: need help with internet and search for things

    whenever I'm on chrome internet explore google ect and go to tab it is says unknown error or no internet connection or anything and just takes me chrome ect. I need help with this im involved in a byod class and my computer won't let me on what whatever usually it just starts out black and white and the seeds I my search request

    Yes it's a Windows 10 and it arrived already installed I'll take the other info now

  • Need help with internet access on a Linksys E1200 strategy

    Hi, I have an a Linksys E1200 (Firmware Version: 2.0.01), and September 13, 2012, I configured the Internet access policy to deny access to internet for 4 devices between the hours of 22:00 and 08:00 on the evening of the school.)  It was working fine! I was very pleased.

    Over the last weekend, the electricity was launched for a second, the power was back on in 2-3 seconds if. The router comes back online, and everything seemed in excellent working condition. Then Sunday evening (considered to be a night of school in our House) at 22:00 the router did not refuse Internet 4 devices as it normally did. I logged into the control panel admin via a browser web, and checked access to internet strategies, I configured last week was still configuration property.

    Everything was always configuration property to deny access to the internet for 4 devices Sunday night/Monday morning between 08:00 and 22:00. I checked that the router has the date and time. But the router is not always deny access as it was setup to do. It worked fine before the weekend, and then after the weekend it stopped working the property. The only thing I can think of this month of may of the cause is 2-3 seconds, the power went out then came back on. The router is connected through a surge protection.

    Then I set up the Internt access policy week last to deny access to 4 devices on the night of the school between 22:00 and 08:00. I waited 24 hours to make sure it worked, after that it worked, I got the router send me a backup of the config file. I tried to use it to solve this problem, but it did not help either.

    This is a screenshot of what looks like my Internet access policy. I had to create 2 policies because the router has refused to create a policy where the end time was not later than the start time. Anywho, so political #1 is from 22:00 to 11:55, and policy #2 is from 12: 00 to 08:00. This Internet access policy is configured to deny access to 4 devices between midnight and 08:00 Monday morning. It was working fine last week, so I'm 100% positive that it is the router.

    The following screenshot is the status information to show the date and time of the router is correct.

    So the router was Monday morning @ 03:00, the router has an active policy of internet access to deny the device access to the internet, the router had recently worked flawlessly to do this, but for some reason any, that he could not do this morning?

    Can you please explain it to me or provide me with free software to "lock" the internet for specified devices. I really want to have to stay until 22:00 5 nights a week, so I can help my daughter sneaking online when she should be in bed. taking his phone and the laptop is not an option.

    Thanks for reading, forward a reply as soon as possible.

    ~ Tony

    Hello. I think that Yes, too, that it is a router problem. Just to isolate it, try to update the firmware and then reset and reconfigure the router again and use the same policies that have worked before. On Cisco's Web site, the latest firmware for version 2 is 2.0.04. You can download it here http://homesupport.cisco.com/en-us/support/routers/E1200. You can use the links below in the public KB site of Cisco.

    Manually upgrading firmware of the Linksys wireless-N Router

    http://www6.nohold.NET/Cisco2/UKP.aspx?VW=1&docid=0a6881b90224439b92c8d8f19ca42e5d_21511.XML&PID=80&...

    Setting up a Linksys router for DSL Internet connection

    http://www6.nohold.NET/Cisco2/UKP.aspx?pid=80&VW=1&articleid=3687

    Setting up a Linksys router with cable Internet service

    http://www6.nohold.NET/Cisco2/UKP.aspx?pid=80&VW=1&articleid=3686

  • [8i] need help with hierarchical (connection by) query

    First of all, I work in 8i.

    My problem is, I get the error ORA-01437 message: cannot have join with CONNECT BY.
    And the reason why I get this error because one of the criteria that I use to cut a few branches with is in another table... Is anyway to circumvent this? I tried a view online (but got the same error). I thought to use the connection by query views online and filtering off the coast of what I don't want in this way, but I don't know how to filter an entire branch...

    Simplified data examples:
    CREATE TABLE     bom_test
    (     parent          CHAR(25)
    ,     component     CHAR(25)
    ,     qty_per          NUMBER(9,5)
    );
    
    INSERT INTO     bom_test
    VALUES     ('ABC-1','101-34',10);
    INSERT INTO     bom_test
    VALUES     ('ABC-1','A-109-347',2);
    INSERT INTO     bom_test
    VALUES     ('ABC-1','ABC-100G',1);
    INSERT INTO     bom_test
    VALUES     ('ABC-1','1A247G01',2);
    INSERT INTO     bom_test
    VALUES     ('ABC-100G','70052',18);
    INSERT INTO     bom_test
    VALUES     ('ABC-100G','M9532-278',5);
    INSERT INTO     bom_test
    VALUES     ('1A247G01','X525-101',2);
    INSERT INTO     bom_test
    VALUES     ('1A247G01','1062-324',2);
    INSERT INTO     bom_test
    VALUES     ('X525-101','R245-9010',2);
    
    CREATE TABLE     part_test
    (     part_nbr     CHAR(25)
    ,     part_type     CHAR(1)
    );
    
    INSERT INTO     part_test
    VALUES     ('ABC-1','M');
    INSERT INTO     part_test
    VALUES     ('101-34','P');
    INSERT INTO     part_test
    VALUES     ('A-109-347','P');
    INSERT INTO     part_test
    VALUES     ('ABC-100G','M');
    INSERT INTO     part_test
    VALUES     ('1A247G01','P');
    INSERT INTO     part_test
    VALUES     ('70052','P');
    INSERT INTO     part_test
    VALUES     ('M9532-278','P');
    INSERT INTO     part_test
    VALUES     ('X525-101','M');
    INSERT INTO     part_test
    VALUES     ('1062-324','P');
    INSERT INTO     part_test
    VALUES     ('R245-9010','P');
    It's the questioning of base (with no pruning of branches):
    SELECT     LEVEL
    ,     b.component
    ,     b.parent
    ,     b.qty_per
    FROM     bom_test b
    START WITH          b.parent     = 'ABC-1'
    CONNECT BY PRIOR     b.component     = b.parent
    The above query results:
          LEVEL COMPONENT                 PARENT                        QTY_PER
    ----------- ------------------------- ------------------------- -----------
          1.000 101-34                    ABC-1                          10.000
          1.000 A-109-347                 ABC-1                           2.000
          1.000 ABC-100G                  ABC-1                           1.000
          2.000 70052                     ABC-100G                       18.000
          2.000 M9532-278                 ABC-100G                        5.000
          1.000 1A247G01                  ABC-1                           2.000
          2.000 X525-101                  1A247G01                        2.000
          3.000 R245-9010                 X525-101                        2.000
          2.000 1062-324                  1A247G01                        2.000
    
    9 rows selected.
    .. .but I want to only the branches (children, grandchildren, etc.) the type of part of'm '.
    for example:
          LEVEL COMPONENT                 PARENT                        QTY_PER
    ----------- ------------------------- ------------------------- -----------
          1.000 101-34                    ABC-1                          10.000
          1.000 A-109-347                 ABC-1                           2.000
          1.000 ABC-100G                  ABC-1                           1.000
          2.000 70052                     ABC-100G                       18.000
          2.000 M9532-278                 ABC-100G                        5.000
          1.000 1A247G01                  ABC-1                           2.000
    Any suggestions?

    Hello

    Difficult problem!

    Sorry for the false leads I posted last night.
    In Oracle 8.1, you can CONNECT BY first of all, in a view online and then to join her, but you can't do the reverse.
    We can change the 3 query to get the desired results by replacing the external CONNECTION BY a series of analytical functions to locate all ancestors and finally SELECT a line only if all the ancestors had part_type = am'.

    It's not pretty, but it works:

    SELECT       component, parent, qty_per
    --,       r_num, lvl
    --,       SUM (ancestor_ok)
    FROM        (       -- Begin in-line view to calculate ancestor_ok
           SELECT       m.*
           ,       CASE
                      WHEN c_num < lvl
                          THEN  LAG ( part_ok
                                      , r_num - NVL ( a_pos
                                                          , 0
                                          )
                                ) OVER ( PARTITION BY  c_num
                                                 ORDER BY          r_num
                                         )
                  END                    AS ancestor_ok
              FROM       (     -- Begin in-line view of 'M' parts in hierarchy
                      SELECT     h.component
                   ,     h.parent
                   ,     h.qty_per
                   ,     h.r_num
                   ,     h.lvl
                   ,     p.part_ok
                   ,     c.c_num
                   ,     MAX ( CASE
                                       WHEN  lvl = c_num
                                   THEN  r_num
                                   ELSE  0
                                    END
                                ) OVER ( PARTITION BY  c_num
                                              ORDER BY      r_num
                                       ROWS BETWEEN  UNBOUNDED PRECEDING
                                              AND        1          PRECEDING
                                   )       AS a_pos
                      FROM     (     -- Begin in-line view h, hierarchy from bom_test
                             SELECT     component
                             ,     parent
                             ,     qty_per
                             ,     ROWNUM          AS r_num
                             ,     LEVEL          AS lvl
                             FROM     bom_test
                             START WITH     parent     = 'ABC-1'
                             CONNECT BY     parent     = PRIOR component
                           ) h     -- End in-line view h, hierarchy from bom_test
                      ,     (      -- Begin in-line view p, to get part+_ok from part_test
                             SELECT  part_nbr
                             ,     CASE
                                        WHEN  part_type = 'M'
                                        THEN  1
                                        ELSE  0
                                  END          AS part_ok
                             FROM    part_test
                           ) p     -- End in-line view p, to get part+_ok from part_test
                      ,     (     -- Begin in-line view c, counter
                             SELECT      ROWNUM           AS c_num
                             FROM      bom_test
                             WHERE      ROWNUM     <= 10     -- Guess at maximum number of levels, or omit
                           ) c     -- End in-line view c, counter
                      WHERE     p.part_nbr     = h.component
                   AND     c.c_num          <= h.lvl
                   ) m     -- End in-line view of 'M' parts in hierarchy
           )       -- End  in-line view to calculate ancestor_ok
    GROUP BY  component, parent, qty_per
    ,       r_num, lvl
    HAVING       lvl = 1
    OR       lvl = 1 + SUM (ancestor_ok)
    ORDER BY  r_num
    ;
    

    On 11 lines from the bottom, I assumed that the maximum depth of any node would be 10. If you do not higher that it should really be, or if you delete that WHEN the clause, then the query still works, it'll just be less effective.

    This works for your sample data and some variations I've tried, including the case where a component has many parents. Sorry, I could not test it very carefully. Try it on some of your actual data, and let me know if there are problems.

    I'll try to post a more detailed explanation later.
    Basically, it works by capturing the results CONNECT BY in subquery h. Each line is identified solely by r_num, giving its place in CONNECT BY results.
    In the subquery m, where most of the work takes place, it calculates the a_pos, the r_num of the ancestor of a node at a given level. That value is used in the LAG later function to see if the ancestor was part_type = am' or not. Only the lines where all the ancestors had part_type = am' are included in the final result set.

    I did have the time to read the messages you and Dev published today. I'll try to do this and get back to you.

    Once more remind the people responsible that the Oracle 8.1 was replaced 9 years ago. Whatever they save by not upgrading is offset by what you have to write and maintain much more complicated code, which in turn runs much, much slower than something on a more recent database.
    The following works in Oracle 10 and I think it would work in Oracle 9, too:

    SELECT     b.component, b.parent, b.qty_per
    FROM     bom_test     b
    JOIN     part_test    p     ON     b.component     = p.part_nbr
    START WITH      b.parent     = 'ABC-1'
    CONNECT BY     b.parent       = PRIOR b.component
         AND     PRIOR p.part_type = 'M'
    ;
    

    It's 7 lines of code instead of about 65 years it takes to do the same in Oracle 8.1.

  • Need help with the error of connection Internet "Reset local connection adapter".

    Original title: Need help with Internet connection.

    Hi, sometimes when I go to my office (HP 2009 m) I get a message that I am not connected to the internet (although I have no problem with the connection on my IPad).  When I click on solve internet connection Windows Network Diagnostics freezes when it gets to solve problems "the local connection adapter reset."   I have to turn off my computer by unplugging and then it works normally when she returns to the top. (Sorry if my explanation is difficult to decipher, I'm not very tech savvy) This could be the cause and how to fix it?  Thanks in advance.

    Well, I expected more of a response, but I'll wing it from here: your cable goes into a modem.  This modem can be a wireless modem/router, or simply a modem cable to your computer.

    Connection problem you might start by connecting the cable into the modem.  Ensure that it is well defined.  If everything looks good, then it is possible that there is a decline in cable service before he gets to the modem.  For example, the interface side of the House can be affected by a bad connection, for example water intrusion, or poor soil.  So you may want to check into that.  Then, there is always the possibility that your cable provider has lost his momentaily of transmission, and that the modem needs to be reset.  If this happens often, you must contact the cable provider.

    Modem, your computer can be connected by cable, so you will need to check how firmly the connection is.  Then, there is always the possibility that the modem is wrong.

    But if your connection is through a wireless modem/router, your connection may have lost because of a bad signal.  Once more..., the modem/router could go wrong.

    Edit has added:

    Looking back on what you said about the Ipad, I feel that you have a wireless modem/router.  It is possible that your connection to the desktop must be after you have used the Ipad.  For example, you may need to right-click on the monitor icon in the Systray to your desktop and open your network sharing Center.  Even if you can say that you are connected to the Internet, you may not.  Then... just ... simplement cliquer click on 'connect or disconnect', then find your network connection appropriate, right click on that and select disconnect, then immediately right-click the same but select Connect.


    Will be a new connection to the Internet.

  • Need help with the data storage store, local array and network connections

    Need help with my ESXi 4.1 installation

    My hardware:

    I built a server with an Asus P6T whitebox, i7 920, 12 Gig RAM, NIC, Intel Pro1000 PT Quad, 3ware 9650SE-12ML with 8 1.5 TB SATA green in a raid 6 array gives me about 8 + TB with a spare drive all housed within a NORCO RPC-4220 4U Rackmount Server chassis.  I also have a 500 GB SATA drive which will hold the ESXi and virtual machines.

    The network includes a firewall, Netgear Prosafe FVS336G, GS724Tv of Netgear ProSafe 24 port Gigabit Managed Switch on a dhcp cable modem internet service provider.

    I also have 2 old NetGear SC101T NAS disks (4to) I want to connect to the system how some - at a later date have... data on them and want to transfer to the new storage array. I always looking into the question of whether they will work with ESXi 4.1, or I might have to only access it through Windows XP.

    My Situation:

    I have already installed ESXi 4.1 and vsphere client with no problems and it is connected to a dhcp cable internet service.  I've set up host via a dynamic DNS service name give me a static hostname on the internet.  I installed three machines to virtual OS successfully at the moment and now want to first start by creating a multimedia storage server which will use some of this new 8 TB array, then separate data storage for use with a web server small overhead storage and a backup.  It is a domestic installation.

    Help with the data store and network:

    I was doing some reading, because I'm new to this, and it looks like I'll probably want to set up my table via ESXi as a nfs disk format.  Now, the data store is usually in another physical box from what I understand, but I put my readers and ESXi all in the same box.  I'm not sure that the best way to put in place with grouped network cards, but I want to make this work.

    I understand that in ESXi 4.1 using iSCSi LUN must be less than 2 TB, but nfs - I should be able to add a bigger partition then 2 TB (for my multimedia) in nfs, right? or should I still add it separately as a separate 2 TB drives and then extend them to get the biggest space.

    Any suggestions or direct resources showing examples on how to actually add some parts of the table as data warehouses separate nfs.  I know that to go to the configuration tab, and then select Add to storage, and then select nfs. I have not my picture, but it's here that I don't know what to do because ESXi 4.1 system already has an address, should I put the same thing to the new data store array also (will it work?), and what should I use for the name of the folder and the store of data... just do something to the top.  I thought to later install Openfiler (for a multimedia storage using this table server) as a virtual machine, use the table with esxi so that I can access the same storage space with widows and linux-based systems.

    I also know I have to find a way to better use my quad nic card... put in place of virtual switches, grouping, etc HELP?

    Any direction, assistance, similar facilities to sample, suggestions or resources that would help would be great. I did a lot of hunting, but still a little confused on how to best to put in place.

    You must think of VMDK files of large databases with records of random size guest go read some data (a DLL or an INI file), maybe write some data back, then go read other data. Some files are tiny, but certain DLLs are several megabytes. It's random i/o all and heavy on the search time. IO Opsys is small random operations that are often sequential (go read data, write data, go read other data,...) so that deadlines are critical to the overall performance. That's why people say OPS are / s of reference and forget the MBs flow. The only time where you bulk transfers are when you read media (ISO files).

    Well, now forget all this. Actually the disk activity will depend on the specific applications (database? mail server? machines compiler?), but the above is true for boots, and whenever applications are idle. You should see the profile to know.

    RAID 10 is faster (and often more reliable) than RAID 5 or RAID-6 except in certain specific cases. In General RAID 10 is ideal for many random writes, since the calculation of parity for RAID-5 and - 6 adds to the overall latency between command and response - latency is cumulative if a little slow here and a little slow it adds up to a lot of overall slow synchronous especially with e/s on a network. OTOH RAID-5 and -6 can produce faster readings due to the number of heads, so you can use it for virtual machines that transfer bulk. Test. You may find that you need several different types subdashboards for best results.

    You said 3ware, they have some good grades on their site, but don't believe it. With my 9650 that I found myself with only a couple of their recommendations-, I put the (simple) table for allocation size 256 k, nr_requests at 2 x the queue_depth and use the planner date limit. I had the habit for the Ext4 file system formatted with stride and stripe-width synced to the table and used the options large_files with fewer inodes (do not use the huge_files option unless you plan to have single VMDK files in the terabyte range). Use a cache of great reading in advance.

    Virtual machines use VMDK files in all cases except raw iSCSI LUN that they treat native disks. VMDK is easier to manage - you can make a backup by copying the file, you can move it to a PC and load it into another flavour of VMware, etc. There could be some features iSCSI to your San as a transparent migration but nothing for me. NFS has less chatter of Protocol if latency lower times to complete an operation. NFS is good to read and write a block of data, that's all it boils down to.

    UPS is good, but it won't help if something inside the machine explodes (UPS does nothing if the PC power supply goes down). If the RAID card has an option for a battery backup module, so it can contain some writings in memory and may end up the disk i/o after replacing the power supply. 3ware also limits the types of caching available if help is not installed, and you get just the right numbers with the module.

  • I'm suddenly needing help with my browser Firefox (6.0.2)

    Hello
    I'm suddenly needing help with my browser Firefox (6.0.2)

    (OS: I use Windows XP).

    When I open the browser, I don't see is a totally white screen of white, with all the toolbars at the top.

    I know that my physical connections are very good: I have tested the modem, turned the pc market etc and I can also receive/send emails.

    This problem started today, September 8, 2011 and has never happened before.

    Is it a coincidence that Firefox itself to day before I disconnected yesterday evening? Could this be something to do with this particular new update?

    I also noticed that just before I "opened" Firefox, I now get a small box indicating:

    [JAVASCRIPT APPLICATION]
    Handl exc in Ev: TypeError: this oRoot.enable is not a function

    This never appeared before - I hope that it offers a clue has what is wrong.

    The browser not be stuck in Mode safe, said by the way.

    Of course, I can't find solutions to the problem on the internet, I don't physically see all Web sites!
    (A friend sends this request in my name from their pc)

    Any light you can throw on this problem of confusion would be much appreciated. I'd rather not have to uninstall and reinstall Firefox if possible.

    If the only option is to uninstall Firefox and reinstall from your site, I'm also in trouble (I can not see the internet or download).
    In this case, would you be able to send the .exe file as an attachment to my e-mail address? In the affirmative, please let me know and I'll give you more details.

    Thanks in advance.

    One possible cause is security software (firewall) that blocks or limits Firefox or plugin-container process without informing you, possibly after the detection of changes (update) for the Firefox program.

    Delete all rules for Firefox in the list of permissions in the firewall and leave your firewall again ask permission to get full unlimited access to the internet for Firefox and the plugin-container and the update process.

    See:

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions of the origin of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • Need help with network home using Airport extreme

    I need help with my home network.  I'm not very aware when it comes to all things network.  Here's how my network is currently set up.

    Cable modem to Airport Extreme for Gigabit Switch.  Cables come out of the switch to all areas of the House.  I have 2 other extreme airport connected in other rooms of the House directly on the wall that dates back to the switch.  I hope I am explaining that properly.

    My problem is that this seems to have caused some of my connections cable does not work.  When everything is configured, it has worked well.  All connections in the House worked.  Then we have disconnected one of the extreme airport and moved to another location in the House to have the best wifi coverage.  Since that time, a lot of the ethernet wall plugs are not working.  For example, when I plug in my Macbook Pro in making ethernet in my kitchen, it says connected but it has an assigned ip address and cannot connect to the internet.

    Any help you can provide would be great.

    I would like to get the return tech to help you to...

    But it is likely that something (or someone) has tampered with the settings.

    The layout is fine... but you can cause problems with the network by creating a loop.

    This can happen because the AE you moved is connected wrongly... somewhere in the network it is connected to the switch again.

    Or AE is set to expand wireless... It's FAKE... It will loop the network on the back main EI wireless.

    Unplug the two AE you have that function as extensions...

    Turning off everything else... then it works again...

    Do it in this order.

    Modem... Wait 2 min

    AE... Wait 2 min

    Switch.

    Now check that the network is working properly... power of customers in various locations and make sure everything is good.

    If so, then manually reset the two AE of factory and redo their installation.

  • Assistance with internet connection by cable

    Hello

    I just bought an ACER AXC - 603 G-UW13 desktop computer. I'm going to hurt to keep the wired connection. Initially, it works, and then abandons connection.

    When I got to the computer it worked fine. Then I added a netgear Wireless USB and I noticed after that, login to happen. The object of research, something about the priorities given to the fastest Internet connection. Remove wireless driver and latest version of the downloaded driver from this site for LAN. Initially, he worked and fell again. I'm on the wireless again to write this card. I have a newer driver for the wireless card.

    I need help with two problems:

    (1) fix LAN for connection is stable

    (2) fix so I can use my cable and wireless (of course not at the same time!)

    Thanks in advance for your help.

    Blueskygal

    the operating system installed?

    Take a look at your ethernet cable and also try a different port on your router.

  • Need help! Internet on G6000

    OK, I really need help with a huge problem of Wireles Internet on my laptop.

    My laptop is a HP G6000 and suddenly it just does not connect to internet (wireless) but all the other computer and laptop at home only.

    I can't even open the Wireless option in my control panel.  -(literally not responding when I click the icon)

    It is defineitly NOT the router or connection because we have other computers and laptops that can get on tinternet.

    Also, my brother has exactly the laptop with exactly the same problem.

    So is this something I can resovle clicking on something or by pressing a button, or what I need to fix this to the 'HP seat'

    ??  help pleeeeeeeeeeeeeeeeeeeease?

    Thank you xx

    We have the same problem. Ive searched on Web sites and in the us the 6000 has been given an extended warranty that the motherboards are defective.

    I can't find any info on the British, but I'm sure that boards are the same. The flaw is due to the graphics chip overheating due to inefficient cooling fans.

    HP issued a bios updated to accelerate to give more cooling fans.

    LOOK HERE http://www. [Text deleted] .com /.

    AND HERE http://www.theinquirer.net/inquirer/news/183/1032183/hp-admits-wireless-laptop.

    Arround to solder the chip melted to give the problems we face.

    My laptop is out of warranty so I'll try to have it repaired, armed with this information.

    I tried all the s H P Solutions but nothing works. Let me know how you go. Pete.

  • Need help with my Mail window. I can't export my message to the PST format. I keep getting the message error "an error occurred during initialization of MAPI".

    Hello

    Need help with my Mail window. I can't export my message to the PST format. I keep getting the message error "an error occurred during initialization of MAPI". Y at - it solution or another method?

    Hi ErikLee,

    Do you have MS Outlook installed on your computer?

    Windows mail import and export opportunities are limited to an Outlook .pst file or an Exchange Server mailbox. They are available only if MS Outlook is installed.
    If MS Outlook is not installed and you start an import or export action, the necessary support files are not present for Windows mail complete the operation. Then I suggest you to install Outlook temporarily and see if the problem is resolved.

    Follow the instructions below and check if the problem is resolved.

    1. reboot your computer, and then start Windows Mail.
    2. on the Tools menu, click Options.
    3. in the connection tab, click on edit to open the Internet Properties dialog box.
    4. in the tab programs, click on an application other than Windows mail e-mail in the e-mail list. Click on apply and then click OK.
    5. click OK again to close the Options dialog box.
    6. exit Windows mail and restart Windows mail.

    If this does not work, I suggest you upgrade to Windows Live Mail to import or export messages that may help you resolve the issue.

    To download Windows Live Mail, visit the following Microsoft Web site:
    http://get.live.com/wlmail/overview

    For more information about Windows Live Mail, see the Microsoft Web site at the following address:
    http://windowshelp.Microsoft.com/Windows/en-us/help/4b30d3d6-abe2-46d1-a5fd-4a1ba786a1381033.mspx

    Check whether the problem is resolved.

    Please post back and let us know if it helped to solve your problem.

    Kind regards
    KarthiK TP

  • Need help with the settings of the firewall for Firefox

    My wireless connection is fine, but all of a sudden my mozilla firefox browser cannot connect to Web sites. I can connect using another browser. Looks like I need to change the firewall settings, but I don't know how. How can I distribute my browser to work again? Don't know what happened to start blocking it, but it just happened some time this morning.

    Hi Tara,

    You can check the link and follow the steps and check if this may help;

    Configure the firewall so that Firefox can access the Internet

    http://support.Mozilla.org/en-us/KB/configure-firewalls-so-Firefox-can-access-Internet

    Is has problems, I suggest you to contact the Mozilla Firefox support,.

    http://support.Mozilla.org/en-us/products/Firefox

    If you need help with Windows, please do not hesitate to post. We will be happy to help you.

  • Need help with the port forwarding for a XBox remote Streaming

    I have a router R6200v2 and need help with port forwarding.

    I came across this set of instructions for setting up stream port forwarding XBox remotely from anywhere

    http://kinkeadtech.com/2015/07/how-to-stream-Xbox-one-to-Windows-10-from-anywhere-with-Internet/

    I have no idea when it comes to such things and I want to make sure I do it correctly without messing up my existing home network.

    Port Forwarding and triggering Port pages setup look very different from what the guy uses. Can someone walk me through what I do to set up please?

    Hi @varxtis,

    You must enter them in the field for a start external Port and external completion Port. You will need to send individually except for the range of 49000-65000. The steps are as follows.

    1. create a Service name (it could be something else that you cannot use the same service name twice. Ex. XBOX1, XBOX2 and so forth.)

    2. Select the type of service (TCP, UDP or both)

    3 entry 5050 times a start external Port and external endpoints.

    4. Select the IP address of your XBOX.

    5. Select apply.

    6 do the same for other port numbers. To the beach, use 49000 for the external departure Port and for the external completion Port 65000.

    Kind regards

    Dexter

    The community team

  • Need help with the launching track pack for forza code 4

    Bought new Forza 4 and the lancer Track Pack code does not work, how do I get a code that is generated in the form I've already paid for it. Rank of loads of numbers and sent 10 s of emails but cant seem to get help.

    This is the help I get when the cat to an Ambassador xbox on xbox.com

    Terry wrote:
    Need help with the launching track pack for forza code 4
    The Xbox Ambassador says:
    Location of Ambassador of the community...
    The Xbox Ambassador says:
    Location of Ambassador of the community...
    The Xbox Ambassador says:
    Your question will be answered by an Ambassador of the Xbox. You have been connected to the Ambassador as a user Xbox [3]
    The Xbox Ambassador says:
    Hello
    Terry wrote:
    Hello
    The Xbox Ambassador says:
    Hey
    Terry wrote:
    just to be on the phone to xbox live support and was told to come here
    The Xbox Ambassador says:
    ok\
    The Xbox Ambassador says:
    What is your problem?
    Terry wrote:
    I bought the 4 for forza ansd 360 new sealed Christmas...
    Terry wrote:
    has got 2 codes that accompanies the game but the pack track code does not work
    The Xbox Ambassador says:
    Wow good
    Terry wrote:
    whenever I put in the code it says code redeemed
    The Xbox Ambassador says:
    I think the code is used. You must return to the retailer
    Terry wrote:
    I tried to, but since I already opened the case they will not accept
    The Xbox Ambassador says:
    Oh. No,
    Terry wrote:
    the code had been used or defective as I am the only person who has touched the game once opened, tried to enter the code when it is open
    The Xbox Ambassador says:
    Maybe it was auto bought?
    Terry wrote:
    so, how do I get another code generated track Pack if defective?
    The Xbox Ambassador says:
    I do not know.
    Terry wrote:
    bought the game new, so I get the track pack
    The Xbox Ambassador says:
    Oh. It's bad.
    The Xbox Ambassador says:
    I think that if you Exchange 1 code it will buy it
    Terry wrote:
    car pack code worked, starter pack did not work
    The Xbox Ambassador says:
    Oh.
    The Xbox Ambassador says:
    It's a bad
    The Xbox Ambassador says:
    BTW you have an evolution of the tests?
    Terry wrote:
    Yes, I want to? but more anxious to get a code object generated for this pack
    The Xbox Ambassador says:
    Hey if I help can u give me this game too?
    Terry wrote:
    ?????????????????
    Terry wrote:
    So is it possible to get a code for that time?
    The Xbox Ambassador says:
    Hey
    The Xbox Ambassador says:
    Yes.
    The Xbox Ambassador says:
    you need to contact them
    The Xbox Ambassador says:
    and tell them that the code is used.
    Terry wrote:
    I was told to come here? where can I go to get the code?

    Hi Terryg76,

    ·         What version of the operating system is installed on the computer?

    I suggest you to contact the game manufacturer for more help and information.

  • Had prolems with internet connection. Engine 0 x 80300113 C:\windows\diagnostic\systerm\networking

    Hallo,

    I bought a new twe weeks computer.  Had prolems with internet connection.  KPN were fist to send someone because everything worked modum, draadloosnetwerk (on the screen), but nothing connected. The next day, I opened my computer and the problem was solved.  Now - since yesterday, I have once again no internet connection and it's the same problem I think.  I'm not a genius, but I'm trying to find the problem. Everything I could find so far is the following, but just don't know how to solve it-cAN U PSE HELP ME?

    The problem is as follows:

    Problem of the wizard.

    NETWERK/diagnosis /.

    C:\Windows\diagnostic\ststem\networking

    Code: 0 x 80300113

    Source: engine

    user: user-PC\user

    context: limited

    Hello


    1. what operating system is installed on the computer?
    2. do you get an error message?
    3. How do you try to connect to the Internet?
    4. what happens when you try to connect to the Internet?

    Steps of methods mentioned below if you have the Windows 7 operating system.

    Method 1: this error occurs generally when the date and time of the system does not coincide with the actual date and time. Check if your system clock is set according to your time zone.
     http://Windows.Microsoft.com/en-us/Windows7/set-the-clock
     
    Method 2: Perform the steps in the article mentioned below and check if the problem persists.
    http://Windows.Microsoft.com/en-us/Windows7/why-can-t-i-connect-to-the-Internet
     
     
    Hope this information helps.

Maybe you are looking for