NOD32 finds threat in file I cannot find - Appdata/Local

Page 3 of 4 FirstFirst 1234 LastLast

  1. Posts : 58
    Windows 7 Ultimate 32 bit
    Thread Starter
       #21

    Hi there

    No, I haven't installed SP1 and as mentioned before, I cannot update my Win7 OS.

    With regards to Zoostorm, that is the manufactorer, but the PC is about 2 years old now and I don't know what else it is! I couldn't spot anything in Speccy that would tell me. If you could be so kind as to point me in the right direction I will update this in my CP.

    Kit
      My Computer


  2. Posts : 10,200
    MS Windows 7 Ultimate SP1 64-bit
       #22

    kit,
    Usually, SIW is better at supplying info, although I prefer the Speccy interface.

    We must find out why you can not update your windows.
    That's top priority.

    Carry out following please:
    Please download WVCheck from Artellos.com.

    • Double click WVCheck.exe. (If you downloaded the zipped version you will need to extract it.)
    • As indicated by the prompt, This program can take a while depending on your hard drive space.
    • Once the program is done, copy the contents of the notepad file as a reply.



    =============
    thanks,
    karl
      My Computer


  3. Posts : 58
    Windows 7 Ultimate 32 bit
    Thread Starter
       #23

    Hi there

    My mate who installed this OS says I have to turn off updates because it might "break" the copy he put on for me.

    Does this help?

    Kit
      My Computer


  4. Posts : 10,200
    MS Windows 7 Ultimate SP1 64-bit
       #24

    kit,
    this is a little overkill, but you will certainly have all of the info you need.
    Put's a file called KitsSystem.txt on your desktop.

    Script:
    # ************************************************************
    # Info about Kit's System
    #
    # **********************INSTRUCTIONS**************************
    # STEP 1 *****************************************************
    # RUN PowerShell as administrator
    # START ORB | type POWERSHELL | CTRL+SHIFT+ENTER key combo | ALT+Y keycombo
    # ************************************************************
    # STEP 2 *****************************************************
    # COPY, using CTRL+C, every line down thru both EXIT statements 
    # PASTE into Powershell == Right-Click at the PowerShell Prompt
    #  (Ctrl+V does not work)
    # Start copying with first line without a # at start of the line
    # Note: Actually, you can paste the entire file if you rather
    #       Lines starting with a # are ignored by PowerShell
    # ************************************************************

    function get-ID {
      
    param ([string]$title, [int]$arraycnt, [int]$arrayndx
      
    $title " " $title " "
      
    If ($arraycnt -eq 1) {} else {$title $title + [string]$arrayndx " "}
      
    $title
    }
    function 
    get-title {
      
    param ([string]$id
      
    $hashes = ([int](44 -  $id.length)/2)
      For (
    $j=1$j -le $hashes$j++){
        
    $hashstr += "#"
      
    }
      
    $title $hashstr $id $hashstr
      
    If ($title.length -ne 44) {$title += "#"}
      
    $title
    }
    # Constants
    $sterne "***************************************************************************************"
    #create a new object
    $obj = New-Object PSObject

    $os 
    gwmi win32_operatingsystem
    $id 
    get-id "OS" 1 0
    $obj 
    Add-member -membertype noteproperty -name (Get-Title $id ) -value $sterne
    $installdate 
    $os.converttodatetime($os.installdate)
    $obj Add-Member -MemberType NoteProperty -Name ($id "Install Date") -Value ($installdate)
    $obj Add-Member -MemberType NoteProperty -Name ($id "Install Duration (days)") -Value ((new-timespan $installdate).days)
    $obj Add-Member -MemberType NoteProperty -Name ($id "Last Bootup Time") -Value ($os.converttodatetime($os.lastbootuptime))
    $obj Add-Member -MemberType NoteProperty -Name ($id "Local Date Time") -Value ($os.converttodatetime($os.localdatetime))
    $obj Add-Member -MemberType NoteProperty -Name ($id "Status") -Value ($os.status)
    $obj Add-Member -MemberType NoteProperty -Name ($id "Computer Name") -Value ($os.csname)
    $obj Add-Member -MemberType NoteProperty -Name ($id "Registered User") -Value ($os.registereduser)
    $obj Add-Member -MemberType NoteProperty -Name ($id "Number of Licensed Users") -Value ($os.numberoflicensedusers)
    $obj Add-Member -MemberType NoteProperty -Name ($id "Number of Users") -Value ($os.numberofusers)
    $obj Add-Member -MemberType NoteProperty -Name ($id "Architecture") -Value ($os.osarchitecture)
    $obj Add-Member -MemberType NoteProperty -Name ($id "Version Number") -Value ($os.version)
    $obj Add-Member -MemberType NoteProperty -Name ($id "Name, Drive\Partition") -Value ($os.name)
    $obj Add-Member -MemberType NoteProperty -Name ($id "Version") -Value ($os.caption)
    $obj Add-Member -MemberType NoteProperty -Name ($id "Service Pack") -Value ($os.csdversion)
    $obj Add-Member -MemberType NoteProperty -Name ($id "Windows Directory") -Value ($os.WindowsDirectory)
    $obj Add-Member -MemberType NoteProperty -Name ($id "System Directory") -Value ($os.systemdirectory)

    $bootcfg gwmi Win32_BootConfiguration 
    $id 
    get-id "BOOT CONFIGURATION" 1 0
    $obj 
    Add-member -membertype noteproperty -name (GET-title $ID ) -value $sterne
    $obj 
    add-member -membertype noteproperty -name ($id "Boot Directory") -value($bootcfg.bootdirectory)
    $obj add-member -membertype noteproperty -name ($id "Last Drive") -value($bootcfg.lastdrive)

    $Build gwmi Win32_WMISetting
    $id 
    get-id "OS BUILD" 1 0
    $obj 
    Add-member -membertype noteproperty -name (get-title $ID ) -value $sterne
    $obj 
    add-member -membertype noteproperty -name ($ID +"Build version") -value($build.BuildVersion)

    $mobo gwmi win32_BaseBoard
    $id 
    get-id "MOTHERBOARD" 1 0
    $obj 
    Add-member -membertype noteproperty -name (get-title $ID ) -value $sterne
    $obj 
    add-member -membertype noteproperty -name ($ID "Manufacturer") -value($mobo.manufacturer)
    $obj add-member -membertype noteproperty -name ($id "Product Type" )     -value($mobo.product)
    $obj add-member -membertype noteproperty -name ($id "Serial Number")  -value($mobo.serialnumber)

    $bios gwmi win32_bios
    $id 
    get-id "BIOS" 1 0
    $obj 
    Add-member -membertype noteproperty -name (Get-title $id ) -value $sterne
    $obj 
    add-member -membertype noteproperty -name ($id "Name") -value($bios.name)
    $obj add-member -membertype noteproperty -name ($id "Manufacturer") -value($bios.manufacturer)
    $obj add-member -membertype noteproperty -name ($id "Release Date") -value($bios.converttodatetime($bios.releasedate))
    $obj add-member -membertype noteproperty -name ($id "Serial Number") -value($bios.SerialNumber)

    $CS  gwmi Win32_ComputerSystem   
    $id 
    get-id "COMPUTER SYSTEM" 1 0
    $obj 
    Add-member -membertype noteproperty -name (Get-title $id) -value $sterne
    $obj 
    add-member -membertype noteproperty -name ($id "Manufacturer") -value($cs.manufacturer)
    $obj add-member -membertype noteproperty -name ($id "Model") -value($cs.model)
    $obj add-member -membertype noteproperty -name ($id "Primary Owner") -value($cs.primaryownername)
    $obj add-member -membertype noteproperty -name ($id "Type") -value($cs.systemtype)
    $obj add-member -membertype noteproperty -name ($id "Total Memory") -value(([string][int]($cs.totalphysicalmemory/1073741824) + " GB"))
    $obj add-member -membertype noteproperty -name ($id "User Name") -value($cs.username)

    $CSprod  gwmi Win32_ComputerSystemProduct 
    $obj 
    add-member -membertype noteproperty -name ($id "Product Name") -value($csprod.name)
    $obj add-member -membertype noteproperty -name ($id "Version") -value($csprod.version)
    $obj add-member -membertype noteproperty -name ($id "Identifying Number") -value($csprod.identifyingnumber)
    $obj add-member -membertype noteproperty -name ($id "Vendor") -value($csprod.vendor)

    $cpu = @(gwmi win32_processor)
    $cnt $cpu.count
    for ($ndx=1$ndx -le $cnt$ndx++) {
      
    $d $cpu[$ndx 1]
      
    $id get-id "CPU" $cnt $ndx
      $obj 
    Add-member -membertype noteproperty -name (get-title $id) -value $sterne
      $obj 
    add-member -membertype noteproperty -name ($id "Current Speed") -value($d.currentclockspeed)
      
    $obj add-member -membertype noteproperty -name ($id "Current Voltage") -value($d.currentvoltage)
      
    $obj add-member -membertype noteproperty -name ($id "External Clock") -value($d.extclock)
      
    $obj add-member -membertype noteproperty -name ($id "Max. Clock Speed") -value($d.maxclockspeed)
      
    $obj add-member -membertype noteproperty -name ($id "Manufacturer") -value($d.manufacturer)
      
    $obj add-member -membertype noteproperty -name ($id "Name") -value($d.name)
      
    $obj add-member -membertype noteproperty -name ($id "Description") -value($d.description)
      
    $obj add-member -membertype noteproperty -name ($id "version") -value($d.version)
      
    $obj add-member -membertype noteproperty -name ($id "Number of Cores") -value($d.numberofcores)
      
    $obj add-member -membertype noteproperty -name ($id "Number of Logical Processors") -value($d.numberoflogicalprocessors)
      
    $obj add-member -membertype noteproperty -name ($id "Socket Designation") -value($d.socketdesignation)
    }

    $obj OUT-FILE $env:userprofile\desktop\KitsSystem.TXT

    EXIT
    EXIT

    # ***************** NOTE - POWERSHELL VERSION*****************
    # if you receive this error msg:
    #  Get-WinEvent: The system can not find the path specified
    # you need to update your PowerShell
    # you must be using Powershell 2.0 or later.
    #
    # To determine your Powershell version:
    #   Run PowerShell
    #   enter $host.version
    #   you should see at least:
    # Major  Minor  Build  Revision
    # -----  -----  -----  --------
    # 2      0      -1     -1
    #
    # If you do not see the above, update your Vista/Win 7.
    # ************************************************************
    # *************** NOTE - EXECUTION POLICY*********************
    # If you haven't set the execution policy, you may need to:
    #   Run PowerShell
    #   enter Set-ExecutionPolicy -executionpolicy remotesigned
    #
    # ************************************************************ 
      My Computer


  5. Posts : 10,200
    MS Windows 7 Ultimate SP1 64-bit
       #25

    wittykitty said:
    Hi there

    My mate who installed this OS says I have to turn off updates because it might "break" the copy he put on for me.

    Does this help?

    Kit
    Oh yes. That definitely helps. Carry out post #22 please.
      My Computer


  6. Posts : 21,482
    Win 7 x64 Home Premium (and x86 VirtualBox VM)/Win10
       #26

    we need to see a full copy of the report produced by the MGADiag tool
    (download and save to desktop - http://go.microsoft.com/fwlink/?linkid=52012 )
    Once saved, run the tool.
    Click on the Continue button, which will produce the report.
    To copy the report to your response, click on the Copy button in the tool (ignore any error messages at this point), and then paste (using either r-click/Paste, or Ctrl+V ) into your response.
    - **in your own thread**, please
    Please also state the Version and Edition of Windows quoted on your COA sticker (if you have one) on the case of your machine (or inside the battery compartment), but do NOT quote the Key on the sticker!
    How to Tell

    (for those unaware of Zoostorm as manufacturers - they make quite a few machines for the online and store-based catalogue companies such as Littlewoods.)
      My Computer


  7. Posts : 25,847
    Windows 10 Pro. 64/ version 1709 Windows 7 Pro/64
       #27

    wittykitty said:
    Hi there

    My mate who installed this OS says I have to turn off updates because it might "break" the copy he put on for me.

    Does this help?

    Kit

    What could this mean??
      My Computer


  8. Posts : 58
    Windows 7 Ultimate 32 bit
    Thread Starter
       #28

    Hi guys

    Am going to run the report thingy in post 22, but things seems to be going from bad to worse with my internet.

    When I did the WDO thing, did you find anything that could be causing this issue?

    The problem is my homeplugs run my NAS drive, which I am using all the time to run a business, so I can't just keep them switched off. One thing I have done is bought some gigabit homeplugs, as I am now using a gigabit router and a gigabit network switch for the NAS / Internet downstairs. Not sure if it will help, but am going to see.

    Will post results as soon as I have them plugged in
      My Computer


  9. Posts : 21,482
    Win 7 x64 Home Premium (and x86 VirtualBox VM)/Win10
       #29

    Please also post the report results from #26 asap (takes about two minutes start to finish!)
      My Computer


  10. Posts : 58
    Windows 7 Ultimate 32 bit
    Thread Starter
       #30

    Will do!
      My Computer


 
Page 3 of 4 FirstFirst 1234 LastLast

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 10:24.
Find Us