1. Ok so Mark as [Solved].. Love using Computing.net as a backboard/brainstorm.I tried one of the Win8 camera drivers from the chipset packs and guess what? The camera again recognized as an Intel Imaging Signal Processor 2400. So next was to tried several different releases and still no camera on theRead more

    Ok so Mark as [Solved].. Love using Computing.net as a backboard/brainstorm.

    I tried one of the Win8 camera drivers from the chipset packs and guess what? The camera again recognized as an Intel Imaging Signal Processor 2400. So next was to tried several different releases and still no camera on the RCA Cambio.

    Went back to the working Cambio and pulled up the exact driver version which was 13.32.55.863 11/14/2014. I then spent hours on end Googling and finally found an HP Intel Chipset Driver pack that included the 13.32.55.863 11/14/2014 camera driver. Installed the camera driver and… If PC troubleshooting wasn’t my Forte since 16 years ago.. the camera worked. Now though I was getting some freezing and crashing… seems the newer GFX driver from the ASUS pack was not friendly either. Realizing this Tablet was built around no driver advance I decided to install the entire HP Intel Chipset Driver pack. Cool thing is the tablet actually runs more snappy then when bought and with not lag or issues. Providing the End all issues LINK below… Hope my hours on end helps others with these two tablets.

    http://ftp.hp.com/pub/softpaq/sp715…

    See less
    • 0
  2. a virus will not disable sound on your laptop. Open the device manager and see if there are any alerts in there...if there are, tell us which one it is

    a virus will not disable sound on your laptop. Open the device manager and see if there are any alerts in there…if there are, tell us which one it is

    See less
    • 1
  3. Lets have a look at what it has done.Run both of these, in this order.Step 1: Run AdwCleaner http://www.softpedia.com/get/Antivi...http://www.raymond.cc/blog/adwclean...http://www.bleepingcomputer.com/dow...Author's sitehttp://general-changelog-team.fr/en...Tutorialhttp://general-changelog-team.fr/eRead more

    Lets have a look at what it has done.

    Run both of these, in this order.

    Step 1: Run AdwCleaner
    http://www.softpedia.com/get/Antivi…
    http://www.raymond.cc/blog/adwclean…
    http://www.bleepingcomputer.com/dow…
    Author’s site
    http://general-changelog-team.fr/en…
    Tutorial
    http://general-changelog-team.fr/en…
    Close all open programs and internet browsers.
    Double click on AdwCleaner.exe to run the tool.
    Click on Clean.
    Confirm each time with Ok.
    Your computer will be rebooted automatically. A text file will open after the restart.
    Please Copy & Paste the contents of that logfile with your next answer.
    You can find the logfile at C:\AdwCleaner[S1].txt as well.

    Step 2: Run Junkware Removal Tool
    http://www.softpedia.com/get/Securi…
    http://www.bleepingcomputer.com/dow…
    http://thisisudax.blogspot.com.au/2…
    Download Junkware Removal Tool onto your Desktop. If your default download location is not the Desktop, drag it out of it’s location onto the Desktop.
    Warning! Once the scan is complete JRT will shut down your browser with NO warning.
    Shut down your protection software now to avoid potential conflicts.
    Temporarily disable your antivirus and any antispyware real time protection before performing a scan.
    Click this link to see a list of security programs that should be disabled and how to disable them.
    http://www.bleepingcomputer.com/for…
    http://www.techsupportforum.com/for…
    Run the tool by double-clicking it. If you are using Windows Vista or Windows 7/8, right-click JRT and select Run as Administrator.
    The tool will open and start scanning your system.
    Please be patient as this can take a while to complete depending on your system’s specifications.
    On completion, a log (JRT.txt) is saved onto your Desktop and will automatically open.
    Copy and Paste the contents of the JRT.txt log please.

    message edited by Johnw

    See less
    • 0
  4. What I would do, as it is hard to know if it is a Kaspersky problem or a Windows problem, I would isolate the problem by trying another AV.I use MSE, if that dos'nt work, we have a clue where to start.You can only have one AV installed at a time, so uninstall Kaspersky.kaspersky internet security 20Read more

    What I would do, as it is hard to know if it is a Kaspersky problem or a Windows problem, I would isolate the problem by trying another AV.
    I use MSE, if that dos’nt work, we have a clue where to start.

    You can only have one AV installed at a time, so uninstall Kaspersky.

    kaspersky internet security 2013 uninstall tool
    http://is.gd/rQJ8DW
    http://support.kaspersky.com/kis201…

    Now turn on Windows firewall & install MSE.

    Microsoft Security Essentials ( MSE )
    http://www.softpedia.com/get/Antivi…
    http://www.softpedia.com/progScreen…
    http://www.techsupportalert.com/9be…
    http://www.techsupportalert.com/bes…
    http://lifehacker.com/5401453/stop-…
    http://lifehacker.com/5433229/micro…
    http://www.techradar.com/reviews/pc…
    http://www.cnet.com.au/microsoft-se…
    http://windows.microsoft.com/en-US/…
    System requirements
    http://www.microsoft.com/en-us/secu…
    Can Microsoft Security Essentials ( MSE ) protect me from online banking and shopping.
    http://answers.microsoft.com/en-us/…

    See less
    • 0
  5. It's not a virus. For some reason it's set to Italian. Local Formulations. Don't ask me why but I think you can change it.

    It’s not a virus. For some reason it’s set to Italian. Local Formulations. Don’t ask me why but I think you can change it.

    See less
    • 0
  6. Restart your computer and press F8 repeatedly until you get safe mode menu Select safe mode and press enter Try running AVG again and tell me if this removes the file.

    Restart your computer and press F8 repeatedly until you get safe mode menu
    Select safe mode and press enter
    Try running AVG again and tell me if this removes the file.

    See less
    • 0
  7. Whenever you've got a series of commands inside brackets (i.e. in your case it's the IF-block) then those commands are loaded into the interpreter all at once, and all %variable% expansions are performed before the commands are executed. So in your SET D=%L%^: the %L% gets expanded to the value of LRead more

    Whenever you’ve got a series of commands inside brackets (i.e. in your case it’s the IF-block) then those commands are loaded into the interpreter all at once, and all %variable% expansions are performed before the commands are executed. So in your SET D=%L%^: the %L% gets expanded to the value of L at the start of the IF block, and does not see the changed value after the preceding SET/P command.
    To fix this, you need to use delayed expansion. At the start of your batch file, put

    SETLOCAL EnableDelayedExpansion
    and use !L! instead of %L% (and of course !D! instead of %D%). Type SET /? for more details.

    See less
    • 0
  8. download gawk(see my sig), then use this one liner c:\> gawk -F"," "{s+=$5}END{print "Total: "s}" file

    download gawk(see my sig), then use this one liner
    c:\> gawk -F”,” “{s+=$5}END{print “Total: “s}” file

    See less
    • 0
  9. I don't think what you want is possible because as long as the prgram that the batch file opened is still open, that batch file is still technically running... However, you could use a VBScript to open the batchfile invisibly. Copy the following lines to a new notepad and save it with the file extenRead more

    I don’t think what you want is possible because as long as the prgram that the batch file opened is still open, that batch file is still technically running…
    However, you could use a VBScript to open the batchfile invisibly.

    Copy the following lines to a new notepad and save it with the file extention .vbs. You will need to change the path to your batch file.

    Set WshShell = CreateObject(“WScript.Shell”)
    WshShell.Run chr(34) & “C:\Batch Files\syncfiles.bat” & Chr(34), 0
    Set WshShell = Nothing
    I’ve tested this on my machine and it does what you are requesting.

    See less
    • 0
  10. :: ========================================== :: :: firstten.bat Sat 12-02-2011 2:43:03.56 @echo off & setLocal enableDELAYedeXpansion set N= for /f "tokens=* delims= " %%a in (myfile) do ( set /a N+=1 if !N! gtr 10 goto :done >> existing.txt echo.%%a ) :done

    :: ==========================================
    ::
    :: firstten.bat Sat 12-02-2011 2:43:03.56
    @echo off & setLocal enableDELAYedeXpansion
    set N=
    for /f “tokens=* delims= ” %%a in (myfile) do (
    set /a N+=1
    if !N! gtr 10 goto :done
    >> existing.txt echo.%%a
    )
    :done

    See less
    • 0