Message keeps coming up

Discussion in 'Windows 7' started by Pasta88, Dec 13, 2009.

  1. Pasta88

    Pasta88 MDL Expert

    Jun 17, 2009
    1,332
    44
    60
  2. genuine555

    genuine555 MDL Expert

    Oct 3, 2009
    1,672
    88
    60
    #2 genuine555, Dec 13, 2009
    Last edited by a moderator: Apr 20, 2017
    Can you post the details behind the"details" button please ?

    Firstly also check if the following services are running (services.msc) :

    Code:
    Homegroup listener
    Homegroup server
    .net framework x86
    .net framework x64 (if running x64)
     
  3. Pasta88

    Pasta88 MDL Expert

    Jun 17, 2009
    1,332
    44
    60
    #3 Pasta88, Dec 13, 2009
    Last edited by a moderator: Apr 20, 2017
    (OP)
    Gen555,

    Thx for replying. I can't click details until it happens again. I checked those 3 services and they are currently stopped and there startup type is set to manual. Do I need to change these to stop this msg from coming up?

    Thx
     
  4. genuine555

    genuine555 MDL Expert

    Oct 3, 2009
    1,672
    88
    60
    .net framework --> automatic


    if you have a home network :

    Homegroup listener -> automatic
    Homegroup server -> automatic

    if you don't have a home network, leave those two as they are.
    .net framework though should be running.
     
  5. Pasta88

    Pasta88 MDL Expert

    Jun 17, 2009
    1,332
    44
    60
    Gen555, Is that what is causing the error I am getting?

    thx
     
  6. Pasta88

    Pasta88 MDL Expert

    Jun 17, 2009
    1,332
    44
    60
    Gen555,

    When I go to services of it and then properties>start>automatic and then apply to it, it stays in that state. When I reboot, it goes back to manual and not started.

    How do I fix this so it stays started, plz?
     
  7. genuine555

    genuine555 MDL Expert

    Oct 3, 2009
    1,672
    88
    60
    #7 genuine555, Dec 14, 2009
    Last edited: Dec 14, 2009
    Can you post more details please ?

    Look in event viewer for any errors regarding "Microsoft .net framework", or
    "mscorsvw.exe", and post the details here.

    If you can, also post the details from the errorbox. it holds some debugging info...
     
  8. genuine555

    genuine555 MDL Expert

    Oct 3, 2009
    1,672
    88
    60
    In the meantime, here's what you can do :

    uninstall .net framework through control panel -> programs and features -> add or remove windows features.
    -> uncheck Microsoft .net framework

    click ok.

    reboot


    If after reboot, windows complains about .net, reinstall it the same way. Mind to check only .net framework 3.5.1 and NOT the two subfeatures (Communication Foundation HTTP and non-HTTP), leave those two unchecked.

    I'm gonna need those error details (at leaast in event viewer)

    Gen555
     
  9. secr9tos

    secr9tos MDL Addicted

    Jul 28, 2009
    999
    133
    30
    #10 secr9tos, Dec 14, 2009
    Last edited: Dec 14, 2009
    MSE Update Util causes the problem: "C:/Program Files/MSE Update Utility/MSE Update Utility.exe" If you wrote the app yourself, goto Form2.vb:line 142 and add exception handling. If not, decompile the app, fix it and recompile. That should eliminate the nagging window:)
     
  10. Pasta88

    Pasta88 MDL Expert

    Jun 17, 2009
    1,332
    44
    60
    The problem was my microsoft security essentials updater that was causing the issue.

    thx
     
  11. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    420
    60
    #13 PAYMYRENT, Dec 16, 2009
    Last edited: Dec 16, 2009
    do you know how to fix it?

    try
    'look for network
    catch ex as exception
    'network not there wait and try again
    end try

    this might even work better for your app or something like that :p

    Do Until My.Computer.Network.IsAvailable = True
    Application.DoEvents()
    System.Threading.Thread.Sleep(10)
    Loop