1. Try this.How to use a Lazesoft Windows Recovery CD or USB device to fix the boot problems if your Windows operating system does not start correctly."It is very common for PC users to be faced with a Windows crash. When this happens, the dreaded 'Blue Screen of Death' pops up, or your PC has a blackRead more

    Try this.

    How to use a Lazesoft Windows Recovery CD or USB device to fix the boot problems if your Windows operating system does not start correctly.
    “It is very common for PC users to be faced with a Windows crash. When this happens, the dreaded ‘Blue Screen of Death’ pops up, or your PC has a black screen and can not boot or start up”

    Lazesoft Recovery Suite Home Edition
    http://www.softpedia.com/get/System…
    http://www.lazesoft.com/lazesoft-re…
    Screenshot ( SS )
    http://i.imgur.com/c9viJO4.gif
    http://fs5.directupload.net/images/…
    Lazesoft Recovery Suite Home Edition video tutorial
    https://vimeo.com/106789683
    Tutorials
    http://www.lazesoft.com/guide.html
    How to Boot a Computer from a Lazesoft Recovery USB Device
    http://www.lazesoft.com/create-a-bo…
    How to Burn a Lazesoft Recovery CD
    http://www.lazesoft.com/burn-a-boot…

    See less
    • 0
  2. Well done. I haven't been through all the detail but wonder what step(s) made the difference - unregistering the OCX's first maybe, particularly IMGEDIT.OCX.Posts are marked as solved when you select a Best Answer. However my personal opinion is that in this instance you are the one that deserves itRead more

    Well done. I haven’t been through all the detail but wonder what step(s) made the difference – unregistering the OCX’s first maybe, particularly IMGEDIT.OCX.

    Posts are marked as solved when you select a Best Answer. However my personal opinion is that in this instance you are the one that deserves it. Although you cannot select yourself for Best Answer, I believe the mods usually pick up these situations eventually and do so on your behalf. So you either select someone, or sit tight and wait for the reminders to stop (they will).

    Always pop back and let us know the outcome – thanks

    See less
    • 0
  3. Thats because /sbin folder is not in set in the $PATH variable.The original poster should always write the last response !!!Let us know, if the problem is solved !!!

    Thats because /sbin folder is not in set in the $PATH variable.

    The original poster should always write the last response !!!
    Let us know, if the problem is solved !!!

    See less
    • 0
  4. Right Click the sheet tab for the sheet where you will be entering Yes.Choose View Code.Paste this code into the pane that opens:Private Sub Worksheet_Change(ByVal Target As Range) If Target.Column = 9 Then If Target = "Yes" Then Application.EnableEvents = False nxtRow = Sheets("Completed").Range("IRead more

    Right Click the sheet tab for the sheet where you will be entering Yes.
    Choose View Code.
    Paste this code into the pane that opens:

    Private Sub Worksheet_Change(ByVal Target As Range)
     If Target.Column = 9 Then
      If Target = "Yes" Then
        Application.EnableEvents = False
          nxtRow = Sheets("Completed").Range("I" & Rows.Count).End(xlUp).Row + 1
           Target.EntireRow.Copy _
            Destination:=Sheets("Completed").Range("A" & nxtRow)
           Target.EntireRow.Delete
      End If
     End If
     Application.EnableEvents = True
    End Sub

    Click Here Before Posting Data or VBA Code —> How To Post Data or Code.

    See less
    • 0
  5. No need to put a public IP address on the computer, besides that would be impossible when you are behind the router. Set up the FTP server on the computer you desire which will have a private IP address. The go into the router configuration and forward Port 21 to computer with the FTP server on it.Read more

    No need to put a public IP address on the computer, besides that would be impossible when you are behind the router.

    Set up the FTP server on the computer you desire which will have a private IP address. The go into the router configuration and forward Port 21 to computer with the FTP server on it. People will then be able to access your FTP server via your public IP address with actually knowing the private IP address of the computer that is running the server. The router does all the work of working that out.

    Stuart

    See less
    • 0
  6. Let me have a look at these logs for clues,Please download Farbar Recovery Scan Tool and save it onto your Desktop. If your default download location is not the Desktop, drag it out of it's location onto the Desktop.http://www.bleepingcomputer.com/dow...If we have to run Farbar more than once, referRead more

    Let me have a look at these logs for clues,

    Please download Farbar Recovery Scan Tool and save it onto your Desktop. If your default download location is not the Desktop, drag it out of it’s location onto the Desktop.
    http://www.bleepingcomputer.com/dow…
    If we have to run Farbar more than once, refer this SS.
    http://i.imgur.com/yUxNw0j.gif
    Note: You need to run the version compatible with your system. If you are not sure which version applies to your system download both of them and try to run them. Only one of them will run on your system, that will be the right version.
    Double-click to run it. When the tool opens click Yes to disclaimer.
    Press Scan button.
    It will make a log (FRST.txt) on the Desktop.
    The first time the tool is run, it makes also another log (Addition.txt).
    The logs are large, upload them using this, or upload to a site of your choosing. No account needed. Give us the links please.
    http://www.zippyshare.com/
    Instructions on how to use ZippyShare.
    http://i.imgur.com/naG6t2T.gif
    http://i.imgur.com/Vi9ZdIh.gif
    http://i.imgur.com/1IZu5kP.gif

    See less
    • 0
  7. most seem to start like thisWhen you are ready:1. Restart the computer (or turn it on).2. When the Coby logo screen appears, press and hold the F7 key to start system recovery.larry

    most seem to start like this

    When you are ready:
    1. Restart the computer (or turn it on).
    2. When the Coby logo screen appears, press and hold the F7 key to
    start system recovery.

    larry

    See less
    • -7
  8. Tricky because a number of different hardware faults can produce this symptom.Best check all internal connections but a hard drive clicking is often a sign that the HD itself failing. A PSU can be faulty even when the power lights come on.Always pop back and let us know the outcome - thanks

    Tricky because a number of different hardware faults can produce this symptom.

    Best check all internal connections but a hard drive clicking is often a sign that the HD itself failing.

    A PSU can be faulty even when the power lights come on.

    Always pop back and let us know the outcome – thanks

    See less
    • 0
  9. you might try this:FORFILES /P D:Doc\ /M *.txt /D -366 /C "cmd /c del @path" 2>nulor you might need it like this:FORFILES /P D:Doc\ /M *.txt /D -366 /C "cmd /c del @path 2>nul"

    you might try this:
    FORFILES /P D:Doc\ /M *.txt /D -366 /C “cmd /c del @path” 2>nul
    or you might need it like this:
    FORFILES /P D:Doc\ /M *.txt /D -366 /C “cmd /c del @path 2>nul”

    See less
    • 0
  10. This is not a problem.Everest will always show that as a warning because DMI data, by it's very nature, cannot be 100% reliable. It does not mean there is anything wrong with your computer.One reason why your computer is slow is because you have only 256 MB RAM. With modern software that simply is nRead more

    This is not a problem.
    Everest will always show that as a warning because DMI data, by it’s very nature, cannot be 100% reliable. It does not mean there is anything wrong with your computer.

    One reason why your computer is slow is because you have only 256 MB RAM. With modern software that simply is no enough. There could be other issues as well.

    See less
    • 1