Best way to go about reinstalling Windows after whole system upgrade, without losing programs and files?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Brandon_Byrnes
    PCHF Member
    • Jan 2017
    • 626

    #1

    Best way to go about reinstalling Windows after whole system upgrade, without losing programs and files?

    I am switching from an AM4 platform to AM5 in the next few weeks. I know generally it’s not a good idea to just plop your OS drive from your past build into the new build because drivers are going to be different so what is the best way to do this without having to completely reinstall Windows 11 and spend hours downloading and reinstalling all my programs? I know in the past there was the option to reinstall Windows without losing files or apps but that only worked for Windows apps so i ended up having to download and reinstall all of my programs again which took hours to do.
  • xrobwx71
    PCHF Moderator
    • Mar 2023
    • 1067

    #2
    I have never had a good outcome trying this.
    There are so many registry entries that point in uncountable directions that problems will crop up. That’s even if your able to get it to work.

    Before you do anything, I’d make sure to have a backup of your discs.

    Comment

    • Malnutrition
      PCHF Moderator
      • Jul 2016
      • 7045

      #3
      I can help with this:

      Please download MiniToolBox and save it to your desktop.
      Run the program by right clicking on it and selecting Run as administrator.
      When the program opens check mark List [COLOR=rgb(243, 121, 52)]installed programs Then hit GO
      Please post the log in your next reply. Attach or copy and paste, whatever is easier for you.

      We can use https://chocolatey.org and create a install script for you. I just need your list of installed programs to compile a power shell script that will automate this process.

      For Example:

      Here is a script that will install the following:
      notepadplusplus
      vlc
      7zip
      googlechrome
      firefox

      Chocolatey is software management automation for Windows that wraps installers, executables, zips, and scripts into compiled packages. Chocolatey integrates w/SCCM, Puppet, Chef, etc. Chocolatey is trusted by businesses to manage software deployments.


      You would just need to copy the content of the code box and paste it into an open notepad and save as ProgramInstall.ps1

      [COLOR=rgb(184, 49, 47)]Edit: Edited script to include items for new install of windows, also included two possible paths for choco.exe
      Code:
      # Step 1: Set Execution Policy
      Set-ExecutionPolicy Bypass -Scope Process -Force
      
      # Step 2: Enable TLS 1.2
      [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
      
      # Step 3: Install NuGet Package Provider if not already installed
      if (!(Get-PackageProvider -Name NuGet -ErrorAction SilentlyContinue)) {
          Install-PackageProvider -Name NuGet -Force
      }
      
      # Step 4: Define Chocolatey paths
      $chocoPath1 = "C:\ProgramData\chocolatey\bin\choco.exe"
      $chocoPath2 = "C:\ProgramData\chocolatey\tools\chocolateyInstall\choco.exe"
      
      # Step 5: Install Chocolatey if not already installed
      if (!(Test-Path $chocoPath1) -and !(Test-Path $chocoPath2)) {
          Write-Host "Installing Chocolatey..."
          iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
      } else {
          Write-Host "Chocolatey is already installed."
      }
      
      # Step 6: Refresh environment variables
      $env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
      
      # Step 7: Verify Chocolatey installation and set the correct path
      if (Test-Path $chocoPath1) {
          $chocoExe = $chocoPath1
      } elseif (Test-Path $chocoPath2) {
          $chocoExe = $chocoPath2
      } else {
          throw "Chocolatey executable not found."
      }
      
      Write-Host "Chocolatey version: $((& $chocoExe --version))"
      
      # Step 8: Install multiple Chocolatey packages
      $packages = @(
          "notepadplusplus",
          "vlc",
          "7zip",
          "googlechrome",
          "firefox"
      )
      
      foreach ($package in $packages) {
          Write-Host "Installing $package..."
          & $chocoExe install $package -y
          if ($LASTEXITCODE -eq 0) {
              Write-Host "$package has been successfully installed." -ForegroundColor Green
          } else {
              Write-Host "Failed to install $package. Please check for any errors above." -ForegroundColor Red
          }
      }
      
      Write-Host "All installations completed." -ForegroundColor Cyan
      Once I have the list of installed programs, I can add them to the list, this will automate the process for you, all you will have to do is run the script and sit back and let it do the work.

      Your best bet is to do a clean install of windows, and not have to worry about possible issues with non compatible drivers etc. There are other programs that you can use on your own like Ninite But this does not offer the diversity of scripting.

      Your choice, just keep in mind that it;s likely that not all of your programs will be available via scripting, but it can certainly lessen the load.[/COLOR][/COLOR]

      Comment

      • Brandon_Byrnes
        PCHF Member
        • Jan 2017
        • 626

        #4
        here’s all my installed apps. Anything having to do with Asus, besides Armory Crate doesn’t need to be reinstalled because i’m switching from an ASUS mobo to an MSI mobo.

        Code:
        MiniToolBox by Farbar Version: 13-05-2022
        Ran by brand (administrator) on 30-09-2024 at 22:57:11
        Running from “C:\Users\brand\OneDrive\Desktop”
        Microsoft Windows 11 Pro (X64)
        Model: System Product Name Manufacturer: ASUS
        Boot Mode: Normal
        [HR][/HR]
        =========================== Installed Programs ============================
        
        4K Stogram (HKLM...{3802C265-1269-4900-B335-B2216164D51D}) (Version: 4.6.3.4500 - Open Media LLC)
        4K Tokkit (HKLM...{4BFBE22A-0C28-401C-AD38-1CFEE18F57D4}) (Version: 2.7.2.0930 - Open Media LLC)
        4K Video Downloader+ (HKLM...{8BF6FB72-0B99-47C8-B515-C8E75908B106}) (Version: 1.9.0.0128 - Open Media LLC) Hidden
        4K Video Downloader+ (HKLM-x32...{ecc33ed1-4838-4865-9923-2db6b1f8715d}) (Version: 1.3.0.38 - Open Media LLC)
        7-Zip 23.01 (x64 edition) (HKLM...{23170F69-40C1-2702-2301-000001000000}) (Version: 23.01.00.0 - Igor Pavlov)
        Acronis Drivers (HKLM...{8971783E-BB60-40FF-B4C5-E0018D71BA73}) (Version: 27.0.39895 - Acronis) Hidden
        Acronis True Image for Sabrent (HKLM-x32...{A2C77CD7-550C-4947-B6A5-F8027B5391FF}) (Version: 27.0.39895 - Acronis) Hidden
        Acronis True Image for Sabrent (HKLM-x32...{A2C77CD7-550C-4947-B6A5-F8027B5391FF}Visible) (Version: 27.0.39895 - Acronis)
        Adobe Acrobat (64-bit) (HKLM...{AC76BA86-1033-FF00-7760-BC15014EA700}) (Version: 24.003.20112 - Adobe)
        AMD Ryzen Master (HKLM...\AMD Ryzen Master) (Version: 2.13.0.2908 - Advanced Micro Devices, Inc.)
        AMD_Chipset_Drivers (HKLM-x32...{1ee7f179-da35-4723-a064-99a2a93c80be}) (Version: 6.05.16.221 - Advanced Micro Devices, Inc.) Hidden
        AniMe Matrix MB EN (HKLM...{399B6DA7-B609-426E-95F8-B9A83FB7D06E}) (Version: 1.0.1 - ASUS)
        Ant Video downloader (Native messaging host) (HKLM-x32...{3CF7B02A-4304-4B22-B1B5-48C0CE014BA3}) (Version: 4.18 - Ant.com)
        Application Verifier x64 External Package (HKLM...{8A4CD158-E6B3-6D91-D7DE-10098BC980E2}) (Version: 10.1.19041.685 - Microsoft) Hidden
        ARMOURY CRATE Lite Service (HKLM...{EF3944FF-2501-4568-B15C-5701E726719E}) (Version: 5.9.4 - ASUS)
        ASUS AIOFan HAL (HKLM...{EAE80DED-1A39-41C5-9F60-87CC947F6454}) (Version: 1.2.16.0 - ASUSTek COMPUTER INC.) Hidden
        ASUS AIOFan HAL (HKLM-x32...{1cc3b919-0334-4fab-aea3-6a7b47235509}) (Version: 1.2.16.0 - ASUSTek COMPUTER INC.) Hidden
        ASUS Ambient HAL (HKLM...{B69DED8D-1F21-42CA-BE12-077775174BCA}) (Version: 2.0.0.0 - ASUSTeK COMPUTER INC.) Hidden
        ASUS Ambient HAL (HKLM-x32...{6cc83116-aa3d-4133-89a2-e03381858f40}) (Version: 2.0.0.0 - ASUSTeK COMPUTER INC.) Hidden
        ASUS AURA Extension Card HAL (HKLM...{237E1CAC-1708-4940-AC34-DF15C079AB70}) (Version: 1.1.0.20 - ASUSTeK COMPUTER INC.) Hidden
        ASUS AURA Extension Card HAL (HKLM-x32...{49c4358d-054e-4cf1-9ec1-dca3487f304a}) (Version: 1.1.0.20 - ASUSTeK COMPUTER INC.) Hidden
        ASUS AURA Motherboard HAL (HKLM...{4EBEAC95-76BC-46A8-8644-6E2F1C87CF70}) (Version: 1.3.9.6 - ASUSTeK COMPUTER INC.) Hidden
        ASUS AURA Motherboard HAL (HKLM-x32...{4edc3c3e-2ec4-43d0-a184-ad61bc7dda53}) (Version: 1.3.9.6 - ASUSTeK COMPUTER INC.) Hidden
        ASUS Aura SDK (HKLM...{CF8E6E00-9C03-4440-81C0-21FACB921A6B}) (Version: 3.04.43 - ASUSTek COMPUTER INC.) Hidden
        ASUS AURA VGA Component (HKLM...{71BB96A6-EAC4-45AE-A17D-D3ED43FF1D14}) (Version: 0.0.6.4 - ASUSTek COMPUTER INC. ) Hidden
        ASUS AURA VGA Component (HKLM-x32...{4f550578-84af-4aa1-b019-988a853d4893}) (Version: 0.0.6.4 - ASUSTek COMPUTER INC. ) Hidden
        ASUS Framework Service (HKLM-x32...{339A6383-7862-46DA-8A9D-E84180EF9424}) (Version: 4.1.1.1 - ASUSTeK Computer Inc.)
        ASUS Motherboard (HKLM-x32...{93795eb8-bd86-4d4d-ab27-ff80f9467b37}) (Version: 4.01.38 - ASUSTek Computer Inc.)
        ASUS Update Helper (HKLM-x32...{A92DAB39-4E2C-4304-9AB6-BC44E68B55E2}) (Version: 1.3.107.113 - ASUSTeK Computer Inc.) Hidden
        Audacity 3.5.1 (HKLM...\Audacity_is1) (Version: 3.5.1 - Audacity Team)
        AURA DRAM Component (HKLM...{F2E3BF81-9CB7-4093-8A2B-FF7DFF631E7F}) (Version: 1.1.25 - ASUS) Hidden
        AURA DRAM Component (HKLM-x32...{9e3269a6-bacd-4c90-98cc-28b15874bf74}) (Version: 1.1.25 - ASUS) Hidden
        AURA lighting effect add-on (HKLM-x32...{1E2EA04B-FCA7-457E-B6F4-F33E1858E859}) (Version: 0.0.44 - ASUSTek COMPUTER INC.)
        AURA lighting effect add-on x64 (HKLM...{C5A4A164-4428-4931-B728-96EEF0FA3C44}) (Version: 0.0.44 - ASUSTek COMPUTER INC.)
        AURA Service (HKLM-x32...{435220d3-c9be-4e00-978d-e2621d8b2dc9}) (Version: 3.07.49 - ASUSTeK Computer Inc.)
        AURA Service (HKLM-x32...{56EEEF7D-0AE3-401A-898B-581719D005AE}) (Version: 3.07.49 - ASUSTeK Computer Inc.) Hidden
        Auslogics Duplicate File Finder (HKLM-x32...{6845255F-15CC-4DD1-94D5-D38F370118B3}_is1) (Version: 10.0.0.4 - Auslogics Labs Pty Ltd)
        Awesome Duplicate Photo Finder v. 1.2.1 (HKLM-x32...\Awesome Duplicate Photo Finder_is1) (Version: - Duplicate-Finder.com)
        BatchPurifier (HKLM-x32...{BD2C737A-E81C-4F1A-86D1-8A25E6208582}) (Version: 8.30.0000 - Digital Confidence)
        Bitdefender Agent (HKLM...\Bitdefender Agent) (Version: 27.0.1.286 - Bitdefender)
        Blackmagic RAW Common Components (HKLM...{BF8B97B1-9BEE-422A-9893-AC7A52ACA23A}) (Version: 3.3 - Blackmagic Design)
        Bonjour (HKLM...{6E3610B2-430D-4EB0-81E3-2B57E8B9DE8D}) (Version: 3.0.0.10 - Apple Inc.)
        Bose Updater (HKLM-x32...\Bose Updater) (Version: 7.1.13.5238 - Bose Corporation)
        Bulk Image Downloader v6.42.0.0 (64 bit) (HKLM...\Bulk Image Downloader (64 bit)_is1) (Version: 6.42 - Antibody Software)
        Chrome Remote Desktop Host (HKLM-x32...{91FE43F1-1C97-4087-8707-136898A45AFD}) (Version: 129.0.6668.14 - Google LLC)
        CPUID CPU-Z 2.06 (HKLM...\CPUID CPU-Z_is1) (Version: 2.06 - CPUID, Inc.)
        CrystalDiskInfo 9.1.1 (HKLM...\CrystalDiskInfo_is1) (Version: 9.1.1 - Crystal Dew World)
        CrystalDiskMark 8.0.5 (HKLM...\CrystalDiskMark8_is1) (Version: 8.0.5 - Crystal Dew World)
        Dashboard (HKLM-x32...\Western Digital SSD Dashboard) (Version: 4.0.2.20 - Western Digital Corporation)
        DaVinci Resolve (HKLM...{E88E4E93-3BD1-4054-86BF-0FF515921515}) (Version: 18.5.00041 - Blackmagic Design)
        Defraggler (HKLM...\Defraggler) (Version: 2.22 - Piriform)
        Disk Drill 5.3.826.0 (HKLM-x32...{49b90425-d03c-4b56-b8ba-0ccd425f5863}) (Version: 5.3.826.0 - CleverFiles)
        Disk Drill 5.3.826.0 (x64) (HKLM...{219D8DEC-A93F-4A90-866B-20B5B37DAE94}) (Version: 5.3.826.0 - CleverFiles) Hidden
        DiskGenius V5.6.1 (HKLM...{2661F2FA-56A7-415D-8196-C4CB3D3ACFFE}_is1) (Version: - Yizisoo Software Co., Ltd.)
        Documentation Manager (HKLM...{9D3BCA38-52D5-4491-9530-05241EB11029}) (Version: 22.200.2.1 - Intel Corporation) Hidden
        Dokan Library 1.5.1.1000 (x64) (HKLM...{65A3A964-3DC3-0105-0001-211126123627}) (Version: 1.5.1.1000 - Dokany Project) Hidden
        Dokan Library 1.5.1.1000 Bundle (HKLM-x32...{05c046de-f751-48c8-b8d3-77259ea88eb7}) (Version: 1.5.1.1000 - Dokany Project)
        DownloadHelper CoApp (HKLM-x32...\DownloadHelper CoApp) (Version: 2.0.19.0 - ACLAP)
        EaseUS Partition Master (HKLM...\EaseUS Partition Master_is1) (Version: 18.0 - EaseUS)
        Easy Duplicate Finder 7 (HKLM...{44055866-8E3F-4B5B-B63D-AD4CB4A0ECE3}_is1) (Version: 7.9.1.24 - Webminds, Inc.)
        Easy Photo Scan (HKLM-x32...{99364024-626C-4BE1-89C8-2F207023497B}) (Version: 1.00.0018 - Seiko Epson Corporation)
        ENE RGB HAL (HKLM...{E050E98C-5524-4AFB-9E53-97700BEF2C02}) (Version: 1.1.48.6 - Ene Tech.) Hidden
        ENE RGB HAL (HKLM-x32...{2f11e68d-297d-4e28-80e0-b98178606bea}) (Version: 1.1.48.6 - Ene Tech.) Hidden
        ENE_EHD_M2_HAL (HKLM...{37A48B7F-D4EA-4863-844E-A284E2AA3C5D}) (Version: 1.0.10.3 - ENE TECHNOLOGY INC.) Hidden
        ENE_EHD_M2_HAL (HKLM-x32...{79e8502b-eaf7-4831-b53d-2da128540d16}) (Version: 1.0.10.3 - ENE TECHNOLOGY INC.) Hidden
        ENE_QSI_Loki_HAL (HKLM...{BDE43F26-5917-44F8-B86A-F1D9A6B80B32}) (Version: 1.0.3.0 - ENE TECHNOLOGY INC.) Hidden
        ENE_QSI_Loki_HAL (HKLM-x32...{205ef3a8-937b-43cb-90fc-2f58f71408d8}) (Version: 1.0.3.0 - ENE TECHNOLOGY INC.) Hidden
        Epson Customer Research Participation (HKLM...{B26449A6-6007-4460-B4FE-C4776115BCEA}) (Version: 1.83.0000 - Seiko Epson Corporation)
        Epson Event Manager (HKLM-x32...{E244A764-EDD0-46B0-8689-661F6B28D9E5}) (Version: 3.10.0069 - Seiko Epson Corporation)
        Epson Printer Connection Checker (HKLM-x32...{DE32F90E-1A29-4D74-BCF1-E7DDB25D713A}) (Version: 3.4.0.0 - Seiko Epson Corporation)
        Epson Scan 2 (HKLM-x32...\Epson Scan 2) (Version: - Seiko Epson Corporation)
        EPSON Scan OCR Component (HKLM-x32...{3615C893-F844-4A5B-B949-8409EAB62271}) (Version: 3.00.05 - Seiko Epson Corporation)
        Epson Software Updater (HKLM-x32...{711E8536-AB71-4455-A6C4-357FDBBEBF91}) (Version: 4.6.7 - Seiko Epson Corporation)
        EPSON XP-440 Series Printer Uninstall (HKLM...\EPSON XP-440 Series) (Version: - Seiko Epson Corporation)
        EpsonNet Print (HKLM...{96ED1D58-440C-4345-8FEE-C4781366C67F}) (Version: 3.1.4.0 - SEIKO EPSON Corporation)
        Eraser 6.2.0.2993 (HKLM...{82602EDA-27BE-4358-AB3A-BD09EA51A1E6}) (Version: 6.2.2993 - The Eraser Project)
        Extreme Picture Finder 3.66.9 (HKLM-x32...\Extreme Picture Finder_is1) (Version: 3.66.9 - Extreme Internet Software)
        FastStone Image Viewer 7.8 (HKLM-x32...\FastStone Image Viewer) (Version: 7.8 - FastStone Corporation)
        FFmpeg 5.0.0 for Audacity - x86_64 (HKLM...\FFmpeg for Audacity_is1) (Version: - )
        Free Download Manager (HKLM...{0C1D4CF2-5575-4786-834C-B0FC977E9714}}_is1) (Version: 6.23.0.5754 - Softdeluxe)
        FreeFileSync (HKLM-x32...\FreeFileSync_is1) (Version: 13.6 - FreeFileSync.org)
        GameSDK Service (HKLM-x32...{021d69c3-d686-4a94-8fb5-fd1ee782fb14}) (Version: 1.0.5.0 - ASUSTek COMPUTER INC.)
        GameSDK Service (HKLM-x32...{7160DA8D-3F25-4F6E-ABC8-F693551D82FA}) (Version: 1.0.5.0 - ASUSTek COMPUTER INC.) Hidden
        Google Drive (HKLM...{6BBAE539-2232-434A-A4E5-9A33560C6283}) (Version: 97.0.1.0 - Google LLC)
        Grand Theft Auto V (HKLM...\Steam App 271590) (Version: - Rockstar North)
        HandBrake 1.8.2 (HKLM-x32...\HandBrake) (Version: 1.8.2 - )
        Hard Disk Sentinel PRO (HKLM-x32...\Hard Disk Sentinel_is1) (Version: 6.10 - Janos Mathe)
        HWiNFO® 64 (HKLM...\HWiNFO® 64_is1) (Version: 8.10 - Martin Malik, REALiX s.r.o.)
        HWiNFO64 (HKLM...\HWiNFO64_is1) (Version: 8.02 - Martin Malik, REALiX s.r.o.)
        Intel® Software Installer (HKLM-x32...{6d31d03f-cc45-4941-a9cc-028856295bc0}) (Version: 22.200.2.1 - Intel Corporation) Hidden
        Kingston AURA DRAM Component (HKLM...{965CDF5F-901C-476F-B3A8-7396701B1129}) (Version: 1.1.33 - KINGSTON COMPONENTS INC.) Hidden
        Kingston AURA DRAM Component (HKLM-x32...{6fcd931b-eac3-4850-9d72-8e2124e32754}) (Version: 1.1.33 - KINGSTON COMPONENTS INC.) Hidden
        Kits Configuration Installer (HKLM-x32...{E75A9998-E979-760B-6AEB-49763F279EDD}) (Version: 10.1.19041.685 - Microsoft) Hidden
        K-Lite Mega Codec Pack 18.4.8 (HKLM-x32...\KLiteCodecPack_is1) (Version: 18.4.8 - KLCP)
        Logi Options+ (HKLM...{850cdc16-85df-4052-b06e-4e3e9e83c5c6}) (Version: 1.82.618412 - Logitech)
        Logitech Unifying Software 2.52 (HKLM...\Logitech Unifying) (Version: 2.52.33 - Logitech)
        MakeMKV v1.17.7 (HKLM-x32...\MakeMKV) (Version: v1.17.7 - GuinpinSoft inc)
        Malwarebytes version 5.1.10.127 (HKLM...{35065F43-4BB2-439A-BFF7-0F1014F2E0CD}_is1) (Version: 5.1.10.127 - Malwarebytes)
        MediaInfo 24.03 (HKLM...\MediaInfo) (Version: 24.03 - MediaArea.net)
        MediaInfo Graph Plugin 23.10 (HKLM...\MediaInfo Graph Plugin) (Version: 23.10 - MediaArea.net)
        MEGAsync (HKLM-x32...\MEGAsync) (Version: - Mega Limited)
        Microsoft Office Professional Plus 2021 - en-us (HKLM...\ProPlus2021Retail - en-us) (Version: 16.0.18025.20104 - Microsoft Corporation)
        Microsoft Update Health Tools (HKLM...{C6FD611E-7EFE-488C-A0E0-974C09EF6473}) (Version: 5.72.0.0 - Microsoft Corporation)
        Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161 (HKLM...{5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4}) (Version: 9.0.30729.6161 - Microsoft Corporation)
        Microsoft Visual C++ 2010 x64 Redistributable - 10.0.40219 (HKLM...{1D8E6291-B0D5-35EC-8441-6616F567A0F7}) (Version: 10.0.40219 - Microsoft Corporation)
        Microsoft Visual Studio 2010 Tools for Office Runtime (x64) (HKLM...\Microsoft Visual Studio 2010 Tools for Office Runtime (x64)) (Version: 10.0.60910 - Microsoft Corporation)
        MKVToolNix 72.0.0 (64-bit) (HKLM-x32...\MKVToolNix) (Version: 72.0.0 - Moritz Bunkus)
        Mozilla Maintenance Service (HKLM...\MozillaMaintenanceService) (Version: 116.0.2 - Mozilla)
        MSI Afterburner 4.6.6 Beta 3 (HKLM-x32...\Afterburner) (Version: 4.6.6 Beta 3 - MSI Co., LTD)
        MSI Development Tools (HKLM-x32...{7AAC93B0-F3D7-6B24-6B37-9E74980C1C81}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        NVIDIA app 10.0.2.210 (HKLM...{B2FE1952-0186-46C3-BAEC-A80AA35AC5B8}_Display.NvApp) (Version: 10.0.2.210 - NVIDIA Corporation)
        NVIDIA FrameView SDK 1.4.10316.34570960 (HKLM...{B2FE1952-0186-46C3-BAEC-A80AA35AC5B8}_FrameViewSdk) (Version: 1.4.10316.34570960 - NVIDIA Corporation)
        NVIDIA Graphics Driver 561.09 (HKLM...{B2FE1952-0186-46C3-BAEC-A80AA35AC5B8}_Display.Driver) (Version: 561.09 - NVIDIA Corporation)
        NVIDIA HD Audio Driver 1.4.0.1 (HKLM...{B2FE1952-0186-46C3-BAEC-A80AA35AC5B8}_HDAudio.Driver) (Version: 1.4.0.1 - NVIDIA Corporation)
        NVIDIA PhysX System Software 9.23.1019 (HKLM...{B2FE1952-0186-46C3-BAEC-A80AA35AC5B8}_Display.PhysX) (Version: 9.23.1019 - NVIDIA Corporation)
        NZXT CAM 4.68.3 (HKLM...\ac0666ae-ee66-5310-ac01-9d6348133b2d) (Version: 4.68.3 - NZXT, Inc.)
        OBS Studio (HKLM-x32...\OBS Studio) (Version: 30.1.2 - OBS Project)
        Office 16 Click-to-Run Extensibility Component (HKLM...{90160000-008C-0000-1000-0000000FF1CE}) (Version: 16.0.18025.20104 - Microsoft Corporation) Hidden
        Office 16 Click-to-Run Licensing Component (HKLM...{90160000-007E-0000-1000-0000000FF1CE}) (Version: 16.0.18025.20104 - Microsoft Corporation) Hidden
        OpenVPN 2.5.5-I602 amd64 (HKLM...{ECDEB23C-E72D-F54F-081D-D2180DBF1497}) (Version: 2.5.028 - OpenVPN, Inc.)
        Patriot Viper DRAM RGB (HKLM...{1F9C282E-CCB4-4D8E-A5CB-7B74DFCD8C95}) (Version: 1.0.9.8 - Patriot Memory) Hidden
        Patriot Viper DRAM RGB (HKLM-x32...{55993b50-5bec-47c8-8b2b-1aecad927e48}) (Version: 1.0.9.8 - Patriot Memory) Hidden
        Patriot Viper M2 SSD RGB (HKLM...{8B4C0A3D-C135-4E1F-98D8-3926494B4D61}) (Version: 1.1.0.3 - Patriot Memory) Hidden
        Patriot Viper M2 SSD RGB (HKLM-x32...{6e0eff60-c502-43bb-8f56-360ca07e73d9}) (Version: 1.1.0.3 - Patriot Memory) Hidden
        PDF24 Creator 11.19.0 (HKLM...{81A6F461-0DBA-4F12-B56F-0E977EC10576}_is1) (Version: 11.19.0 - geek software GmbH)
        PHISON HAL (HKLM...{966E33F0-6786-4B38-AA29-C1B3F6C1955D}) (Version: 1.0.9.0 - PHISON Electronics Corp.) Hidden
        PHISON HAL (HKLM-x32...{549da357-1b81-456b-83f2-dcc47c41dfff}) (Version: 1.0.9.0 - PHISON Electronics Corp.) Hidden
        Pictures Thumbnails Maker by Scorp (remove only) (HKLM-x32...\Pictures Thumbnails Maker) (Version: - )
        PowerShell 7.4.5.0-x64 (HKLM-x32...{5c53f83f-8530-49bd-b1b9-c2e0a3f98507}) (Version: 7.4.5.0 - Microsoft Corporation)
        PowerShell 7-x64 (HKLM...{C1593F76-F694-448E-AD35-82DDD6203975}) (Version: 7.4.5.0 - Microsoft Corporation) Hidden
        PrimoCache 4.3.0 (HKLM...{7A37EA43-BF6F-4DB7-83DB-97AA19BF9408}_is1) (Version: 4.3.0 - Romex Software)
        Promontory_GPIO Driver (HKLM-x32...{B5512BCC-F4CD-4159-86A4-B2AD7D38FFA9}) (Version: 3.0.1.0 - Advanced Micro Devices, Inc.) Hidden
        Python 3.12.6 Add to Path (64-bit) (HKLM...{3C524136-E47A-45C7-BB2C-242EAC3F4C32}) (Version: 3.12.6150.0 - Python Software Foundation) Hidden
        Python 3.12.6 Core Interpreter (64-bit) (HKLM...{901B913C-FA63-48D2-9842-7D7676739378}) (Version: 3.12.6150.0 - Python Software Foundation) Hidden
        Python 3.12.6 Development Libraries (64-bit) (HKLM...{2F4E9933-7587-4D85-9BA1-F2903AFB36D8}) (Version: 3.12.6150.0 - Python Software Foundation) Hidden
        Python 3.12.6 Documentation (64-bit) (HKLM...{46673E63-1CA8-43EA-B73B-AC20DDD77C5A}) (Version: 3.12.6150.0 - Python Software Foundation) Hidden
        Python 3.12.6 Executables (64-bit) (HKLM...{537B2AF5-504B-4303-99CB-FDE56F47AA51}) (Version: 3.12.6150.0 - Python Software Foundation) Hidden
        Python 3.12.6 pip Bootstrap (64-bit) (HKLM...{1D520CE1-F09A-4A26-B110-52081FEA0AB9}) (Version: 3.12.6150.0 - Python Software Foundation) Hidden
        Python 3.12.6 Standard Library (64-bit) (HKLM...{1DAEF824-881A-49C6-B91E-1D28877FF18D}) (Version: 3.12.6150.0 - Python Software Foundation) Hidden
        Python 3.12.6 Tcl/Tk Support (64-bit) (HKLM...{08A1963D-07D1-4620-929C-385F6A307772}) (Version: 3.12.6150.0 - Python Software Foundation) Hidden
        Python 3.12.6 Test Suite (64-bit) (HKLM...{3334B843-864F-4F04-A635-5D2FD5840AD5}) (Version: 3.12.6150.0 - Python Software Foundation) Hidden
        Python Launcher (HKLM-x32...{FE223D83-99B9-41D5-99FC-FA3995D8F82D}) (Version: 3.12.6150.0 - Python Software Foundation)
        qBittorrent (HKLM-x32...\qBittorrent) (Version: 4.6.6 - The qBittorrent project)
        Quick Share from Google (HKLM...{6ED9B8D4-F32E-4C65-A292-0B9DAECEC07F}) (Version: 1.0.1724.0 - Google LLC)
        Realtek Audio Driver (HKLM-x32...{F132AF7F-7BCA-4EDE-8A7C-958108FE7DBC}) (Version: 6.0.9411.1 - Realtek Semiconductor Corp.)
        Realtek Ethernet Controller Driver (HKLM-x32...{8833FFB6-5B0C-4764-81AA-06DFEED9A476}) (Version: 11.4.1201.2021 - Realtek)
        Recuva (HKLM...\Recuva) (Version: 1.53 - Piriform)
        Redragon M686 RGB Gaming Mouse (HKLM-x32...{FB342B38-14EB-43D4-9A39-0E36110C22DF}_is1) (Version: 3.1 - Redragon)
        Revo Uninstaller 2.5.0 (HKLM...{A28DBDA2-3CC7-4ADC-8BFE-66D7743C6C97}_is1) (Version: 2.5.0 - VS Revo Group, Ltd.)
        Rockstar Games Launcher (HKLM-x32...\Rockstar Games Launcher) (Version: 1.0.92.2003 - Rockstar Games)
        Rockstar Games Social Club (HKLM-x32...\Rockstar Games Social Club) (Version: 2.3.3.1 - Rockstar Games)
        ROG Live Service (HKLM...{2D87BFB6-C184-4A59-9BBE-3E20CE797631}) (Version: 2.4.14.0 - ASUSTek COMPUTER INC.)
        ROGFontInstaller (HKLM...{605108C1-153E-43D8-8A67-7CE326B00ECA}) (Version: 1.0.0 - ASUS)
        Samsung Magician (HKLM-x32...{29AE3F9F-7158-4ca7-B1ED-28A73ECDB215}is1) (Version: 8.1.0.800 - Samsung Electronics)
        Samsung USB Driver for Mobile Phones (HKLM...{D0795B21-0CDA-4a92-AB9E-6E92D8111E44}) (Version: 1.7.61.0 - Samsung Electronics Co., Ltd.)
        SDK ARM Additions (HKLM-x32...{FCF9D89E-6F79-64FB-B08D-B0E69FF54DEE}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        SDK ARM Redistributables (HKLM-x32...{72DB07D6-E166-5A3F-B6E6-4664383781B8}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        Smart Switch (HKLM-x32...{74FA5314-85C8-4E2A-907D-D9ECCCB770A7}) (Version: 4.3.23123.1 - Samsung Electronics Co., Ltd.) Hidden
        Smart Switch (HKLM-x32...\InstallShield{74FA5314-85C8-4E2A-907D-D9ECCCB770A7}) (Version: 4.3.23123.1 - Samsung Electronics Co., Ltd.)
        Speccy (HKLM...\Speccy) (Version: 1.33 - Piriform)
        Steam (HKLM-x32...\Steam) (Version: 2.10.91.91 - Valve Corporation)
        Stellar Toolkit for Data Recovery version 10.2.0.0 (x64) - UZ1 (HKLM...{8B016FDB-7E9D-4086-9192-38DF4D03CFA0}_is1) (Version: 10.2.0.0 (x64) - UZ1 - UZ1)
        TAP-Windows 9.24.2 (HKLM...\TAP-Windows) (Version: 9.24.2 - OpenVPN Technologies, Inc.)
        TechPowerUp GPU-Z (HKLM-x32...{8B0F211E-5846-4FB2-B0B9-4EB31546FDF9}}_is1) (Version: 2.59.0 - TechPowerUp)
        TeraCopy (HKLM...{DF5325DF-1F43-4282-85D5-1CA3353E6B13}) (Version: 3.17 - Code Sector)
        Topaz Gigapixel AI (HKLM...{EAF52813-D9BB-481C-8FAA-469919B3FEDE}) (Version: 7.2.3 - Topaz Labs LLC)
        Topaz Photo AI (HKLM...{F4079521-7921-46D2-9F08-22E408D0703F}) (Version: 2.1.5 - Topaz Labs LLC)
        Topaz Video AI (HKLM...{6E02B535-46C1-415A-8533-5ACE0E69E5CA}) (Version: 5.2.2 - Topaz Labs LLC)
        Universal CRT Extension SDK (HKLM-x32...{4D69FB64-4443-F2DD-DE1C-F14FD98AAC59}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        Universal CRT Headers Libraries and Sources (HKLM-x32...{6B56745A-F6A4-C51C-933A-AD96C00683EA}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        Universal CRT Redistributable (HKLM-x32...{A57CD0A6-4297-FD30-34A4-34758B6F5F69}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        Universal CRT Tools x64 (HKLM...{CD06199B-41C1-AE6D-7567-984CC68792C3}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        Universal CRT Tools x86 (HKLM-x32...{BD75F257-50A4-E0CD-9942-C3550CA3E66A}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        Universal General MIDI DLS Extension SDK (HKLM-x32...{A7E95C47-B5F4-110C-D27A-DECB03412B96}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        Universal Holtek RGB DRAM (HKLM...{826388E4-E31F-4514-948B-3BB954FB3EAF}) (Version: 1.0.0.7 - PD) Hidden
        Universal Holtek RGB DRAM (HKLM-x32...{9a732423-e2f4-47d0-87ab-ef745c7dba69}) (Version: 1.0.0.7 - PD) Hidden
        VdhCoApp 1.6.3 (HKLM...\weh-iss-net.downloadhelper.coapp_is1) (Version: - DownloadHelper)
        VeraCrypt 1.25.9 (HKLM...{5DDDA84D-81B6-4C9C-B82B-9DB89244B547}) (Version: 1.25.9 - IDRIX)
        VGA (HKLM-x32...{0f87ebb7-aabb-43e5-9c5d-28744f517468}) (Version: 3.01.05 - ASUSTek Computer Inc.)
        Video Thumbnails Maker by Scorp (remove only) (HKLM-x32...\Video Thumbnails Maker) (Version: - )
        VPNetwork LLC - TorGuard - Online Privacy Protection Services (HKLM-x32...\VPNetwork LLC TorGuard) (Version: “4.8.20-build.257.1+ge098d29” - “VPNetwork LLC”)
        WD_BLACK AN1500 (HKLM...{085E2365-0A70-4230-B664-02D5E4FE7E9C}) (Version: 1.0.14.0 - ENE TECHNOLOGY INC.) Hidden
        WD_BLACK AN1500 (HKLM-x32...{e42c5874-37b0-4977-9e8d-70bf006e1f76}) (Version: 1.0.14.0 - ENE TECHNOLOGY INC.) Hidden
        WinAppDeploy (HKLM-x32...{2ADF1977-BF31-E127-B651-AC28A8658317}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        Windows Subsystem for Linux Update (HKLM...{F8474A47-8B5D-4466-ACE3-78EAB3BF21A8}) (Version: 5.10.102.1 - Microsoft Corporation)
        WinRAR 6.24 (64-bit) (HKLM...\WinRAR archiver) (Version: 6.24.0 - win.rar GmbH)
        WinRT Intellisense Desktop - en-us (HKLM-x32...{BCF7CA0F-E53C-2A4F-B128-A751EC9A1016}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        WinRT Intellisense Desktop - Other Languages (HKLM-x32...{B42BF427-AFDB-C00F-DB60-6F51395D74A1}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        WinRT Intellisense IoT - en-us (HKLM-x32...{3335615C-ABEB-960E-2226-4274CD28E046}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        WinRT Intellisense IoT - Other Languages (HKLM-x32...{216D5F47-257D-6284-5849-B51037875EFA}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        WinRT Intellisense Mobile - en-us (HKLM-x32...{443FF51E-16C3-F23B-18FC-0D1D66024B0B}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        WinRT Intellisense PPI - en-us (HKLM-x32...{15E29AFF-CB19-A20B-9A81-B0765A63115F}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        WinRT Intellisense PPI - Other Languages (HKLM-x32...{FF2B49B7-0254-3D6A-4BE0-EF4C59DBCC2B}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        WinRT Intellisense UAP - en-us (HKLM-x32...{0AF3B821-474B-1885-473A-6E3FB4F1CF71}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        WinRT Intellisense UAP - Other Languages (HKLM-x32...{8832F8ED-1035-9ABE-FD73-4E5ABAA84A5C}) (Version: 10.1.19041.685 - Microsoft Corporation) Hidden
        XnConvert (x64) (HKLM...\XnConvert (x64)_is1) (Version: 1.101.0.0 - Pierre-e Gougelet)
        [HEADING=1]Packages:[/HEADING]
        Adobe Acrobat Reader → C:\Program Files\Adobe\Acrobat DC [2024-06-14] (0)
        Armoury Crate → C:\Program Files\ASUS\AacAmbientHal [2024-09-17] (0)
        ARMOURY CRATE → C:\Program Files\WindowsApps\B9ECED6F.ArmouryCrate_5.9.9.0_x64__qmba6cd70vzyy [2024-09-25] (ASUSTeK COMPUTER INC.)
        Bluetooth® Profile Pack → C:\Program Files\WindowsApps\Microsoft.BluetoothProfilePack_0.23082.3.0_x64__8wekyb3d8bbwe [2024-07-19] (Microsoft Corporation)
        Chrome Remote Desktop → C:\Program Files\WindowsApps\remotedesktop.google.com-E49EA359_1.0.0.1_neutral__h2dphjv1brgng [2024-09-27] (remotedesktop.google.com)
        Copilot → C:\Program Files\WindowsApps\Microsoft.Copilot_1.0.4.0_neutral__8wekyb3d8bbwe [2024-09-27] (Microsoft Corporation)
        DTS Sound Unbound → C:\Program Files\WindowsApps\DTSInc.DTSSoundUnbound_2024.3.69.0_x64__t5j2fzbtdg37r [2024-09-26] (DTS, Inc.)
        Epson Print and Scan → C:\Program Files\WindowsApps\SEIKOEPSONCORPORATION.EpsonPrintandScan_1.1.0.0_x64__ezaqdwkaef94e [2024-02-23] (SEIKO EPSON CORPORATION)
        Ink.Handwriting.en-US.1.0 → C:\Program Files\WindowsApps\Microsoft.Ink.Handwriting.en-US.1.0_0.620.1635.0_x64__8wekyb3d8bbwe [2024-09-14] (Microsoft Corporation)
        Ink.Handwriting.en-US.1.0 → C:\Program Files\WindowsApps\Microsoft.Ink.Handwriting.en-US.1.0_0.620.1635.0_x86__8wekyb3d8bbwe [2024-09-14] (Microsoft Corporation)
        Ink.Handwriting.Main.en-US.1.0 → C:\Program Files\WindowsApps\Microsoft.Ink.Handwriting.Main.en-US.1.0.1_0.620.1635.0_x64__8wekyb3d8bbwe [2024-09-14] (Microsoft Corporation)
        Instagram → C:\Program Files\WindowsApps\www.instagram.com-E4B7766F_42.0.21.1_neutral__ysfa6mcnwr1rw [2024-09-27] (www.instagram.com)
        Messenger → C:\Program Files\WindowsApps\FACEBOOK.317180B0BB486_2150.23.211.0_x64__8xx8rvfyw5nnt [2024-09-13] (Meta) [Startup Task]
        Microsoft.WindowsAppRuntime.CBS → C:\Windows\SystemApps\Microsoft.WindowsAppRuntime.CBS_8wekyb3d8bbwe [2024-09-27] (Microsoft Corporation)
        Microsoft.WindowsAppRuntime.CBS.1.6 → C:\Windows\SystemApps\Microsoft.WindowsAppRuntime.vNext.CBS_8wekyb3d8bbwe [2024-09-27] (Microsoft Corporation)
        ms-resource://MicrosoftCorporationII.QuickAssist/resources/APP_WINDOW_NAME → C:\Program Files\WindowsApps\MicrosoftCorporationII.QuickAssist_2.0.32.0_x64__8wekyb3d8bbwe [2024-09-28] (Microsoft Corp.)
        ms-resource://MicrosoftWindows.CrossDevice/CrossDevice.Core/Resources/PackageName → C:\Program Files\WindowsApps\MicrosoftWindows.CrossDevice_1.24082.53.0_x64__cw5n1h2txyewy [2024-09-27] (Microsoft Windows) [Startup Task]
        ms-resource:app_name_ms_todo → C:\Program Files\WindowsApps\Microsoft.Todos_2.114.7122.0_x64__8wekyb3d8bbwe [2024-09-27] (Microsoft Corporation) [Startup Task]
        ms-resource:AppName → C:\Program Files\WindowsApps\MicrosoftCorporationII.WindowsSubsystemForLinux_2.2.4.0_x64__8wekyb3d8bbwe [2024-06-16] (Microsoft Corp.)
        ms-resource:AppStoreName → C:\Program Files\WindowsApps\Microsoft.AV1VideoExtension_1.2.2331.0_x64__8wekyb3d8bbwe [2024-09-04] (Microsoft Corporation)
        ms-resource:AppStoreName → C:\Program Files\WindowsApps\Microsoft.MPEG2VideoExtension_1.0.61931.0_x64__8wekyb3d8bbwe [2024-02-23] (Microsoft Corporation)
        ms-resource:AppStoreName → C:\Program Files\WindowsApps\Microsoft.RawImageExtension_2.3.2051.0_x64__8wekyb3d8bbwe [2024-08-07] (Microsoft Corporation)
        ms-resource:AppStoreName → C:\Program Files\WindowsApps\Microsoft.Windows.DevHome_0.1800.625.0_x64__8wekyb3d8bbwe [2024-09-17] (Microsoft Corporation)
        ms-resource:AppStoreName → C:\Program Files\WindowsApps\Microsoft.Windows.Photos_2024.11070.31001.0_x64__8wekyb3d8bbwe [2024-08-08] (Microsoft Corporation) [Startup Task]
        ms-resource:AppxManifest_DisplayName → C:\Windows\SystemApps\Microsoft.Windows.PrintQueueActionCenter_cw5n1h2txyewy [2024-04-25] (Microsoft Corporation)
        ms-resource:ClassicAppStoreName → C:\Program Files\WindowsApps\Microsoft.PhotosLegacy_2024.11070.10002.0_x64__8wekyb3d8bbwe [2024-07-19] (Microsoft Corporation)
        ms-resource:DisplayName → C:\Program Files\WindowsApps\HaukeGtze.77535DB761F2_1.1720.0.0_x64__6bk20wvc8rfx2 [2024-07-01] (ms-resource:PublisherDisplayName)
        ms-resource:DisplayName → C:\Program Files\WindowsApps\SAMSUNGELECTRONICSCoLtd.SamsungFlux_4.9.1203.0_x64__wyx1vj98g3asy [2024-07-19] (Samsung Electronics Co, Ltd.)
        ms-resource:LegacyPackageStoreName → C:\Program Files\WindowsApps\Microsoft.LegacyPhotosMediaEngineAdd-on_2022.2206.0.0_x64__8wekyb3d8bbwe [2024-02-23] (Microsoft Corporation)
        ms-resource:PackageDisplayName → C:\Program Files\WindowsApps\Microsoft.BingSearch_1.0.95.0_x64__8wekyb3d8bbwe [2024-07-23] (Microsoft Corporation)
        ms-resource:ProductPkgDisplayName → C:\Windows\SystemApps\MicrosoftWindows.Client.Core_cw5n1h2txyewy [2024-09-27] (Microsoft Windows)
        NVIDIA Control Panel → C:\Program Files\WindowsApps\NVIDIACorp.NVIDIAControlPanel_8.1.966.0_x64__56jybvy8sckqj [2024-09-17] (NVIDIA Corp.)
        Outlook for Windows → C:\Program Files\WindowsApps\Microsoft.OutlookForWindows_1.2024.911.200_x64__8wekyb3d8bbwe [2024-09-23] (Microsoft Corporation)
        Pandora → C:\Program Files\WindowsApps\PandoraMediaInc.29680B314EFC2_15.0.3.0_x64__n619g4d5j0fnw [2024-02-23] (Pandora Media Inc) [Startup Task]
        Quick Share → C:\Program Files\Google\NearbyShare [2024-07-02] (0)
        Reader Notification Client → C:\Program Files\WindowsApps\ReaderNotificationClient_1.0.4.0_x86__e1rzdqpraam7r [2024-02-23] (Adobe Systems Incorporated)
        Realtek Audio Control → C:\Program Files\WindowsApps\RealtekSemiconductorCorp.RealtekAudioControl_1.41.294.0_x64__dt26b99r8h8gj [2024-04-26] (Realtek Semiconductor Corp)
        Reddit → C:\Program Files\WindowsApps\redditTV.Reddit_1.0.1.0_neutral__99kbdge22ed1a [2024-08-02] (Reddit Inc.)
        ShowKeyPlus → C:\Program Files\WindowsApps\617231644CE58.ShowKeyPlus_1.1.18.0_x64__arc7y9yj6c41t [2024-02-23] (Superfly Inc.)
        Simple Screen Recorder → C:\Program Files\WindowsApps\19348RobertMikhayelyanApp.SimpleScreenRecorder_2.2.2.0_x64__vygss37gy0d0p [2024-02-23] (Robert Mikhayelyan Apps)
        Sonic Radar 3 → C:\Program Files\WindowsApps\A-Volute.28054DF1F58B4_3.16.23.0_x64__w2gh52qy24etm [2024-02-23] (A-Volute)
        Sonic Studio 3 → C:\Program Files\WindowsApps\A-Volute.SonicStudio3_3.16.23.0_x64__w2gh52qy24etm [2024-02-23] (A-Volute)
        Telegram Desktop → C:\Program Files\WindowsApps\TelegramMessengerLLP.TelegramDesktop_5.5.5.0_x64__t4vj0pshhgkwm [2024-09-14] (Telegram Messenger LLP) [Startup Task]
        TranslucentTB → C:\Program Files\WindowsApps\28017CharlesMilette.TranslucentTB_2024.1.0.0_x64__v826wp6bftszj [2024-09-13] (Charles Milette) [Startup Task]
        WhatsApp → C:\Program Files\WindowsApps\5319275A.WhatsAppDesktop_2.2438.5.0_x64__cv1g1gvanyjgm [2024-09-26] (WhatsApp Inc.) [Startup Task]
        Widgets Platform Runtime → C:\Program Files\WindowsApps\Microsoft.WidgetsPlatformRuntime_1.5.0.0_x64__8wekyb3d8bbwe [2024-09-14] (Microsoft Corporation)
        WinAppRuntime.Main.1.5 → C:\Program Files\WindowsApps\MicrosoftCorporationII.WinAppRuntime.Main.1.5_5001.214.1843.0_x64__8wekyb3d8bbwe [2024-08-14] (Microsoft Corp.)
        WinAppRuntime.Singleton → C:\Program Files\WindowsApps\MicrosoftCorporationII.WinAppRuntime.Singleton_6000.242.101.0_x64__8wekyb3d8bbwe [2024-09-05] (Microsoft Corp.)
        Windows Feature Experience Pack → C:\Windows\SystemApps\LKG\MicrosoftWindows.LKG.AccountsService_cw5n1h2txyewy [2024-09-27] (Microsoft Windows)
        Windows Feature Experience Pack → C:\Windows\SystemApps\LKG\MicrosoftWindows.LKG.DesktopSpotlight_cw5n1h2txyewy [2024-09-27] (Microsoft Windows)
        Windows Feature Experience Pack → C:\Windows\SystemApps\LKG\MicrosoftWindows.LKG.IrisService_cw5n1h2txyewy [2024-09-27] (Microsoft Windows)
        Windows Feature Experience Pack → C:\Windows\SystemApps\LKG\MicrosoftWindows.LKG.TwinSxS_cw5n1h2txyewy [2024-09-27] (Microsoft Windows)
        Windows Feature Experience Pack → C:\Windows\SystemApps\MicrosoftWindows.Client.FileExp_cw5n1h2txyewy [2024-09-27] (Microsoft Windows)
        Windows HDR Calibration → C:\Program Files\WindowsApps\MicrosoftCorporationII.WindowsHDRCalibration_1.0.152.0_x64__8wekyb3d8bbwe [2024-07-19] (Microsoft Corp.)
        Windows Package Manager Source (winget) → C:\Program Files\WindowsApps\Microsoft.Winget.Source_2023.1202.203.441_neutral__8wekyb3d8bbwe [2024-02-23] (Microsoft Corporation)
        WindowsAppRuntime.1.1 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.1_1005.616.1651.0_x64__8wekyb3d8bbwe [2024-02-23] (Microsoft Corporation)
        WindowsAppRuntime.1.1 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.1_1005.616.1651.0_x86__8wekyb3d8bbwe [2024-02-23] (Microsoft Corporation)
        WindowsAppRuntime.1.2 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.2_2000.802.31.0_x64__8wekyb3d8bbwe [2024-02-23] (Microsoft Corporation)
        WindowsAppRuntime.1.2 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.2_2000.802.31.0_x86__8wekyb3d8bbwe [2024-02-23] (Microsoft Corporation)
        WindowsAppRuntime.1.3 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.3_3000.934.1904.0_x64__8wekyb3d8bbwe [2024-02-23] (Microsoft Corporation)
        WindowsAppRuntime.1.3 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.3_3000.934.1904.0_x86__8wekyb3d8bbwe [2024-02-23] (Microsoft Corporation)
        WindowsAppRuntime.1.4 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.4_4000.1049.117.0_x64__8wekyb3d8bbwe [2024-02-23] (Microsoft Corporation)
        WindowsAppRuntime.1.4 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.4_4000.1082.2259.0_x64__8wekyb3d8bbwe [2024-02-23] (Microsoft Corporation)
        WindowsAppRuntime.1.4 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.4_4000.1136.2333.0_x64__8wekyb3d8bbwe [2024-02-23] (Microsoft Corporation)
        WindowsAppRuntime.1.4 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.4_4000.1309.2056.0_x64__8wekyb3d8bbwe [2024-09-10] (Microsoft Corporation)
        WindowsAppRuntime.1.4 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.4_4000.1309.2056.0_x86__8wekyb3d8bbwe [2024-09-10] (Microsoft Corporation)
        WindowsAppRuntime.1.5 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.5_5001.119.156.0_x64__8wekyb3d8bbwe [2024-05-06] (Microsoft Corporation)
        WindowsAppRuntime.1.5 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.5_5001.159.55.0_x64__8wekyb3d8bbwe [2024-06-11] (Microsoft Corporation)
        WindowsAppRuntime.1.5 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.5_5001.178.1908.0_x64__8wekyb3d8bbwe [2024-07-11] (Microsoft Corporation)
        WindowsAppRuntime.1.5 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.5_5001.214.1843.0_x64__8wekyb3d8bbwe [2024-08-14] (Microsoft Corporation)
        WindowsAppRuntime.1.5 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.5_5001.214.1843.0_x86__8wekyb3d8bbwe [2024-08-14] (Microsoft Corporation)
        WindowsAppRuntime.1.6 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.6_6000.242.101.0_x64__8wekyb3d8bbwe [2024-09-05] (Microsoft Corporation)
        WindowsAppRuntime.1.6 → C:\Program Files\WindowsApps\Microsoft.WindowsAppRuntime.1.6_6000.242.101.0_x86__8wekyb3d8bbwe [2024-09-05] (Microsoft Corporation)
        WinRAR → C:\Program Files\WinRAR [2023-11-23] (0)
        
        **** End of log ****

        Comment

        • Malnutrition
          PCHF Moderator
          • Jul 2016
          • 7045

          #5
          Might take me a couple days… I’ll get it for you tho. Not everything will be in the list for sure. Some things will have to be installed by you manually.
          (y)

          Comment

          • PeterOz
            PCHF Technical Response Team
            • Mar 2021
            • 4191

            #6
            Why are you using Bitdefender.
            As well as above you can also remove all the old drivers when you have disconnected from the internet
            and you are ready to change boards.
            Make sure you have all the drivers for the new board downloaded and installed before connecting to the internet.
            You could also try Macrium Reflect for workstation
            https://www.macrium.com/reflectfree#...ct-workstation - USD$65.00.
            https://reflect.macrium.com/help/v5/how_to/redeploy/redeploy_a_system_to_new_hardware.htm#:~:text=Macr ium%20ReDeploy%20searches%20the%20computer,server% 20version%20of%20Macrium%20ReFlect.

            Also, read this.
            Deploy Windows 10 system image to new hardware more easily? Here is a detailed guide to transferring your Windows to a new computer via EaseUS Todo Backup.

            Comment

            • Brandon_Byrnes
              PCHF Member
              • Jan 2017
              • 626

              #7
              I’m actually not using bitdefender. i was at one point, probably about 2yrs ago. I just use malwarebytes and Microsoft Defender now. After looking at the list again now there’s a couple apps on there that I uninstalled a while back but I guess it didn’t totally remove them. I use Revo Uninstaller now. After looking at that list maybe it is time for a fresh install.

              Comment

              • PeterOz
                PCHF Technical Response Team
                • Mar 2021
                • 4191

                #8
                If you do go for a reinstall.
                Install without the internet connected.
                Do not install any drivers.
                Install all programs.
                Make a system image.
                This will then be your Bare Bones image for any future hardware upgrades.
                Then install all Motherboard drivers.
                Make another system image. (not overwrite the old one)
                This will now be your disaster image incase you need a restore.
                Any new programs you install after this image you make a new disaster image.
                Any programs you install from the internet you keep the install files so that they can be used with the Bare Bones image.
                If possible, it is best to have 2 drives (if you can afford it) and have all windows and programs on C drive and all Data on D (or whatever) drive.
                That way you only have to back up your data and C drive only when you add new programs.

                Comment

                • Brandon_Byrnes
                  PCHF Member
                  • Jan 2017
                  • 626

                  #9
                  okay thanks Peter. I’ll do that. I do currently have my os and my data on separate drives. I always inevitably end up saving files to my desktop though,lol. I always make sure to change the location of Downloads, Documents, Videos, and Music to my storage drive. I think when I do this install I’ll also do some file cleanup on my storage drive. As you can see I’m a bit of a data hoarder.
                  [ATTACH type=“full” size=“1807x344”]14546[/ATTACH]

                  Comment

                  • Malnutrition
                    PCHF Moderator
                    • Jul 2016
                    • 7045

                    #10
                    Ok. 43 Programs, off your workload…(y)

                    There was plenty that did not make the list. There were some available and some not that did not make it, some were not updated and some the MD5 did not match the legit programs, so those were omitted from the list. I installed these on my test machine with a connection of 500 mbsps. Took exactly 20 minutes to install.

                    Here is your custom script. I also converted into a .exe for you, so all you will need to do to run it, is unzip it to your desktop on the new install and run as administrator.

                    As far as windows apps that will have to be done manually. I also should have taken note about what programs were not included but you can work that out by checking the list of installed programs when the install is completed.

                    I’d definitely suggest a reboot after completion and perhaps a new folder for all the icons created.
                    Code:
                    # Step 1: Set Execution Policy
                    Set-ExecutionPolicy Bypass -Scope Process -Force
                    
                    # Step 2: Enable TLS 1.2
                    [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
                    
                    # Step 3: Install NuGet Package Provider if not already installed
                    if (!(Get-PackageProvider -Name NuGet -ErrorAction SilentlyContinue)) {
                        Install-PackageProvider -Name NuGet -Force
                    }
                    
                    # Step 4: Define Chocolatey paths
                    $chocoPath1 = "C:\ProgramData\chocolatey\bin\choco.exe"
                    $chocoPath2 = "C:\ProgramData\chocolatey\tools\chocolateyInstall\choco.exe"
                    
                    # Step 5: Install Chocolatey if not already installed
                    if (!(Test-Path $chocoPath1) -and !(Test-Path $chocoPath2)) {
                        Write-Host "Installing Chocolatey..."
                        iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
                    } else {
                        Write-Host "Chocolatey is already installed."
                    }
                    
                    # Step 6: Refresh environment variables
                    $env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
                    
                    # Step 7: Verify Chocolatey installation and set the correct path
                    if (Test-Path $chocoPath1) {
                        $chocoExe = $chocoPath1
                    } elseif (Test-Path $chocoPath2) {
                        $chocoExe = $chocoPath2
                    } else {
                        throw "Chocolatey executable not found."
                    }
                    
                    Write-Host "Chocolatey version: $((& $chocoExe --version))"
                    
                    # Step 8: Install multiple Chocolatey packages
                    $packages = @(
                        "4k-stogram",
                        "4k-tokkit",
                        "4k-video-downloader",
                        "7zip.install",
                        "acronis-drive-monitor",
                        "audacity",
                        "duplicatefilefinder",
                        "chrome-remote-desktop-chrome",
                        "cpu-z.install",
                        "crystaldiskinfo",
                        "crystaldiskmark",
                        "defraggler",
                        "diskgenius",
                        "dokan-library",
                        "partitionmasterfree",
                        "epson-perfection-v33-scanner",
                        "eraser",
                        "firefox",
                        "fsviewer",
                        "ffmpeg",
                        "googledrive",
                        "handbrake.install",
                        "hwinfo.install",
                        "logitech-options",
                        "makemkv",
                        "malwarebytes",
                        "mediainfo",
                        "mkvtoolnix",
                        "obs-studio.install",
                        "openvpn",
                        "pdf24",
                        "powershell-core",
                        "python",
                        "qbittorrent",
                        "recuva",
                        "revo-uninstaller",
                        "samsung-magician",
                        "tapwindows",
                        "gpu-z",
                        "teracopy",
                        "veracrypt",
                        "winrar",
                        "xnconvert.install"
                    )
                    
                    
                    foreach ($package in $packages) {
                        Write-Host "Installing $package..."
                        & $chocoExe install $package -y
                        if ($LASTEXITCODE -eq 0) {
                            Write-Host "$package has been successfully installed." -ForegroundColor Green
                        } else {
                            Write-Host "Failed to install $package. Please check for any errors above." -ForegroundColor Red
                        }
                    }
                    
                    Write-Host "All installations completed." -ForegroundColor Cyan

                    Comment

                    • Brandon_Byrnes
                      PCHF Member
                      • Jan 2017
                      • 626

                      #11
                      VERY much appreciated. Thank s ton, that saves me a ton of work.

                      Comment

                      • Malnutrition
                        PCHF Moderator
                        • Jul 2016
                        • 7045

                        #12
                        No problem I like helping where I can.

                        Comment

                        • Malnutrition
                          PCHF Moderator
                          • Jul 2016
                          • 7045

                          #13
                          If you have any issues running the .PS1 Then download Powerrun
                          Unzip to your desktop.
                          Double click PowerRunX64
                          [ATTACH type=“full” alt=“1727874142894.webp”]14549[/ATTACH]
                          Then drag and drop your script, into the power run window.
                          Or from with in power run click File >> Add File >> Click the search or button with three Dots …
                          Select the All files option when searching.
                          Add the script.
                          Then from with in the power run window or user interface.
                          [ATTACH alt=“1727874239457.webp”]14550[/ATTACH]
                          Double click your script.
                          This will run the script elevated, bypassing the need to change any settings on your machine. (y)

                          Comment

                          • Brandon_Byrnes
                            PCHF Member
                            • Jan 2017
                            • 626

                            #14
                            I tried downloading that PowerRun but the link it takes me too ends up timing out.

                            Comment

                            • Malnutrition
                              PCHF Moderator
                              • Jul 2016
                              • 7045

                              #15
                              Direct link.

                              Comment

                              Working...