1. Let me have look to see if i can any relevant info from these logs.Download OTL, save & run from your Desktop. If your default download location is not the Desktop, drag it out of it's location onto the Desktop.http://oldtimer.geekstogo.com/OTL.exeDouble click the OTL icon to start the tool. (NoRead more

    Let me have look to see if i can any relevant info from these logs.

    Download OTL, save & run from your Desktop. If your default download location is not the Desktop, drag it out of it’s location onto the Desktop.
    http://oldtimer.geekstogo.com/OTL.exe
    Double click the OTL icon to start the tool. (Note: If you are running on Vista or Windows 7 accept UAC alert)
    1: When the window appears, underneath Output at the top, make sure Standard output is selected.
    2: Select Scan all users
    3: Change Drivers to All
    4: Under the Extra Registry section, check Use SafeList
    5: In the lower right corner, checkmark “LOP Check” and checkmark “Purity Check”.
    6: Click Run Scan and let the program run uninterrupted.
    Screenshots ( SS ) of 1 – 6
    http://i.imgur.com/rvTDUlL.gif
    When the scan is complete, two text files will be created on your Desktop
    OTL.Txt <- this one will be opened
    Extras.txt <- this one will be minimized

    Upload the logs using this. I upload to Imgur.com for images & load.to for files ( neither need an account ) Give us the links please.

    Image Uploader
    http://www.softpedia.com/get/Intern…
    http://www.softpedia.com/progScreen…
    http://zenden.ws/imageuploader_ru
    How to use for files.
    http://i.imgur.com/FhtnM6c.gif
    http://i.imgur.com/yBtjlpb.gif
    http://i.imgur.com/txFkgpT.gif

    Free file sharing sites come & go, if Imgur.com & load.to are too busy ( or not working ) here are others to try.
    free file upload no account needed
    http://is.gd/ije9W6
    http://www.zippyshare.com/
    http://www.speedyshare.com/
    http://www.filedropper.com/index.php
    http://www.wikisend.com/
    https://www.sendspace.com/
    http://www.megafileupload.com/

    See less
    • 0
  2. I got this, replaced WAIT with SLEEP to make it work here...@ECHO Offif "%1"=="" goto usageset p_cnt=1set p_cnt_max=%1shift:mainecho Run %p_cnt%echo TC %1 %2 %3 %4 %5 %6 %7 %8 %9IF ERRORLEVEL 1 GOTO RETRYIF ERRORLEVEL 0 GOTO :EOF:RETRYECHO.ECHO %1 OF %2 FAILED LOOKING TO TRY AND %1 %2 AGAIN.sleep 2sRead more

    I got this, replaced WAIT with SLEEP to make it work here…

    @ECHO Off

    if “%1″==”” goto usage

    set p_cnt=1
    set p_cnt_max=%1
    shift

    :main
    echo Run %p_cnt%
    echo TC %1 %2 %3 %4 %5 %6 %7 %8 %9
    IF ERRORLEVEL 1 GOTO RETRY
    IF ERRORLEVEL 0 GOTO :EOF

    :RETRY
    ECHO.
    ECHO %1 OF %2 FAILED LOOKING TO TRY AND %1 %2 AGAIN.
    sleep 2
    set /a p_cnt=%p_cnt% + 1
    if %p_cnt% GTR %p_cnt_max% goto :EOF
    goto main

    :usage
    echo.
    echo USAGE – %0 repetition parameter(s)
    goto :EOF

    See less
    • 0
  3. Man, you have a lot of patience! But you need to study and learn to use loops and subroutines to your advantage. Also, in my opinion, you're way overcomplicating things. You had the right idea, with the "f" variable series. All you needed to do was build a "cieling" (north wall) and a "floor" (southRead more

    Man, you have a lot of patience! But you need to study and learn to use loops and subroutines to your advantage. Also, in my opinion, you’re way overcomplicating things. You had the right idea, with the “f” variable series. All you needed to do was build a “cieling” (north wall) and a “floor” (south wall) as “f” vars, then for each line of vars between, start and end with vertical wall char.s. I don’t know where this “boundary” stuff came in, but it’s not necessary.Anyway, I cannot work with your code, as I don’t have the patience, so i can only supply my version (including rudimentary “move” analysis):
    @echo off & setlocal
    ::dimensions of room – vary to suit!
    set width=12
    set depth=10
    set /a q=depth+1
    ::initial location x-y coordinates of character {x=row=”r”, y=col=”c”}
    set r=3
    set c=1
    set a%r%_%c%=@
    :: random block(s) – vary as needed!
    set a6_4=°
    set a9_7=#

    ::build room – cieling {x=0, north wall}
    set left=É
    set right=»
    set mid=Í
    call :line 0
    :: – floor {x=depth, south wall}
    set left=È
    set right=¼
    call :line %q%

    set beg=1
    set end=%depth%
    set step=1

    :refresh
    :: – x=1..depth-1, central arena
    set left=º
    set right=º
    (set mid= )
    for /L %%a in (%beg% %step% %end%) do call :line %%a

    :: display room
    cls
    for /L %%a in (0 1 %q%) do echo !line%%a!

    :move
    set tc=%c%
    set tr=%r%
    :: why do you guys always insist on these instead of numeric keypad? Oh well…
    choice /c:wasd /n
    if %errorlevel%==4 set /a tc+=1
    if %errorlevel%==3 set /a tr+=+1
    if %errorlevel%==2 set /a tc-=1
    if %errorlevel%==1 set /a tr-=1
    if “!f%tr%_%tc%!” neq ” ” goto :move

    set beg=%r%
    set end=%tr%
    set /a step=tr-r
    if %step% equ 0 set step=1
    set a%r%_%c%=
    set r=%tr%
    set c=%tc%
    set a%r%_%c%=@
    rem echo refreshing %r% %step% %end%
    goto :refresh

    :line
    ::build the map into sequential {array} var. Fx_y where x is vert, y is horiz
    set f%1_0=%left%
    set f%1_%width%=%right%
    set /a k=width-1
    for /L %%b in (1 1 %k%) do if defined a%1_%%b (set f%1_%%b=!a%1_%%b!) else (set f%1_%%b=%mid%)

    ::build lines for display
    set line%1=
    for /L %%b in (0 1 %width%) do set line%1=!line%1!!f%1_%%b!
    ::====== end
    I don’t think you will ever make any significant progress using your current technique (brute force). You need to think in terms of loops and subroutines. Loops require knowledge of variable expansion (echo !f%r%_%c%!) At any rate, the above 72 lines of script effectively replace the 167 lines of “brute force” and work much better in all respects – not to brag, just to demonstrate the difference in approach.

    See less
    • 0
  4. That scanner model was launched long before Windows 7 was released so there isn't a Windows 7 driver for it.However, see this thread on THF:http://www.tomshardware.co.uk/forum...If that doesn't work you will have to buy a new scanner or use the scanner only on Windows XP.Or you can try VueScan softwRead more

    That scanner model was launched long before Windows 7 was released so there isn’t a Windows 7 driver for it.

    However, see this thread on THF:
    http://www.tomshardware.co.uk/forum…

    If that doesn’t work you will have to buy a new scanner or use the scanner only on Windows XP.

    Or you can try VueScan software:
    http://www.hamrick.com

    If your scanner works with VueScan you will have to purchase a licence if you want to continue using it.

    message edited by phil22

    See less
    • 0
  5. See this page:https://forum.xda-developers.com/lg...I found it in just 3 seconds using Google Search - - - you could have done that.Search results here if you want to check out the others:https://www.google.co.uk/search?q=C...message edited by phil22

    See this page:

    https://forum.xda-developers.com/lg…

    I found it in just 3 seconds using Google Search – – – you could have done that.

    Search results here if you want to check out the others:

    https://www.google.co.uk/search?q=C…

    message edited by phil22

    See less
    • 0
  6. Yikes!From what I can tell, the installation goes smoothly until it attempts to install KB2999226[03D4:0A50][2019-09-03T08:15:48]i301: Applying execute package: Windows81_x86, action: Install, path: C:\ProgramData\Package Cache\2A5B5A12EDAED46426F767C78624DEBD5E2B3352\packages\Patch\x86\Windows8.1-KRead more

    Yikes!

    From what I can tell, the installation goes smoothly until it attempts to install KB2999226

    [03D4:0A50][2019-09-03T08:15:48]i301: Applying execute package: Windows81_x86, action: Install, path: C:\ProgramData\Package Cache\2A5B5A12EDAED46426F767C78624DEBD5E2B3352\packages\Patch\x86\Windows8.1-KB2999226-x86.msu, arguments: '"C:\Windows\system32\wusa.exe" "C:\ProgramData\Package Cache\2A5B5A12EDAED46426F767C78624DEBD5E2B3352\packages\Patch\x86\Windows8.1-KB2999226-x86.msu" /quiet /norestart'
    [03D4:0A50][2019-09-03T08:15:48]e000: Error 0x80070652: Failed to execute MSU package.
    [0A58:1790][2019-09-03T08:15:48]e000: Error 0x80070652: Failed to configure per-machine MSU package.
    

    There is not enough information to identify why the package failed to install.

    You may have more luck installing it manually from:
    https://support.microsoft.com/en-us/help/2999226/update-for-universal-c-runtime-in-windows
    and then attempting to re-install visual c++ 2015.

    See less
    • 0
  7. Have you tried connecting an external monitor?

    Have you tried connecting an external monitor? See less
    • 0
  8. Just wanted to give an update to my issues: I restored my computer and my problem still remains but after some more investigating and going to HP forums I have discovered what exactly might be the problem and solution. When I reboot, on startup I get a message with black background screen saying SysRead more

    Just wanted to give an update to my issues: I restored my computer and my problem still remains but after some more investigating and going to HP forums I have discovered what exactly might be the problem and solution.

    When I reboot, on startup I get a message with black background screen saying System Board (00A) Product Information not Valid. Apparently there is missing or invalid information because some time ago I had sent my computer in to HP when it was still under warranty (actually just before warranty ran out) to have the CPU replaced. When they sent it back to me I noticed the problems and seen in a forum that when you have this message accompanied with the windows not genuine messages is because when a HP technician replaced the CPU they failed to put the new product code into the system making it invalid.
    Now to me this seems like HP should be stepping up and fixing their screw up however I am not the only one who has had this happen to them and HP refuses to give us a fix.
    I seen on a forum someone explaining to do this to fix it:

    Re: System Board OOA Product Information Not ValidPost options


    ‎04-11-2011 11:23 PM

    Ok i’m not sure if this is closed yet….but i found it when i was searching for an awnser so i’ll post it here….

    I fixed MINE!!! all you need is basic DoS Skills and a bootable USB (all found on google) and the DMIFIT tool and HPBQ138.EXE (also google) from there you just have to boot to usb type HPBQ138 and fill in the correct info. Under basic here is a Hint, Remove your Battery and there is your PCID Number 😛

    Basic Menu

    <0> Serial Number = Obviosly your S/N on the back of your laptop

    <1> Notebook Model= Mine was Compaq Presario Cq61 NoteBook PC…….Don’t think this really matters

    <2> Guid Number= This one was a B#$%H i had no clue so RANDOM FTW!!

    <3> UUID Number= Select 1 to generate UUID

    <4> SKU Number= It’s the Product Number on the bottom Mine was WA985UA#ABA

    <5> CTO Localization Code = ABA

    <6> MAC Address = Agian Random….you can judge or use and get past hitting Enter everytime!

    <7> PCID = Ok under the battery cover there is a Sticker….it might also be on the Motherboard.

    <8> System Board CT # = i left this blank….it’s a sticker on the motherboard if you want to fill it in.<not needed

    <A> Advanced Menu

    <2> OS SKU = if no windows (0), if it had vista (1), if it had windows 7 (2)

    <A> Platform Revision = I put in 110 but it could be different

    and then just Esc all the way out until your at C:\ then just CTRL+ALT+DELET and enjoy…hopefully.

    You might noticed i didn’t enter all the ADVANCED MENU options….if you choose to play in them Go for it at your Own RISK.

    I copy and pasted their explaination, it looks a bit complexed, If I decide to go that route it would be last resort and after some more investigating and careful checking as I am not that advanced. to know what soem of those terms are.

    I also found that I can go to HP website and order a restore/recovery kit for 12.00 that will be shipped to me it is a set of 3 discs, I am hoping that will replace the missing information fixing all my issues so I can again run normal windows again and get my needed security updates and other updates to make me run smoother and faster.

    See less
    • 0
  9. You either need to access it from a wired connection - some routers display the password in plain text. If not then you need to reset the router (there will usually be a small recessed button to do this but best check the manual for the actual procedure) - this will remove any security so you can seRead more

    You either need to access it from a wired connection – some routers display the password in plain text. If not then you need to reset the router (there will usually be a small recessed button to do this but best check the manual for the actual procedure) – this will remove any security so you can set it up from scratch. Note resetting will also remove any connection settings if it’s a modem/router so make sure your know what they are.

    “I’ve always been mad, I know I’ve been mad, like the most of us…” Pink Floyd

    See less
    • 0