Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation since 03/14/26 in Posts

  1. I’d like to share a detailed solution for anyone struggling with the Sensor Panel moving, resizing, or resetting when using a secondary display with different scaling or resolution. This is a common pain point discussed by users like scotts, supes, WeakLaugh, and Atila on the official AIDA64 forums, where many report that the panel resizes itself or jumps between monitors after rebooting or reconnecting displays. (https://forums.aida64.com/topic/7580-sensor-panel-resized-itself-after-connecting-new-monitor-now-i-cant-fix-it/) Goal Lock your Sensor Panel on a secondary monitor with fixed size/position and make it launch reliably with Windows — even if monitors disconnect/reconnect or have different DPI scaling. 1) Edit the AIDA64 configuration file (AIDA64.ini) Close AIDA64 entirely. Open Notepad as Administrator. Locate your AIDA64.ini file: %localappdata%\FinalWire\AIDA64\AIDA64.ini or in your installation folder. Find the [SensorPanel] section or add it at the end if it doesn’t exist. Replace or set the following values according to your monitor setup: [SensorPanel] Active=1 FixedSize=1 Width=1280 Height=400 PositionX=-1600 PositionY=1040 LoadLayout=1 LayoutFile=C:\AIDA64\SensorPanel_Fixed.spzip [Display] AutoAdjustDPI=0 AutoAdjustResolution=0 What to change for your setup: Width / Height → set these to the exact resolution of your Sensor Panel window. This locks the panel size. PositionX / PositionY → coordinates of the panel on your screen: PositionX = horizontal offset relative to the primary monitor; multiply by the primary monitor’s DPI scaling if it differs from 100%. PositionY = vertical offset from the top of the virtual desktop; usually PrimaryMonitorHeight - SecondaryPanelHeight if the panel sits at the bottom. LayoutFile → point to the .spzip or .a64sp layout you saved. Use the full path, without quotes. [Display] section prevents AIDA64 from automatically adjusting DPI or resolution when monitors reconnect. 2) Create an automatic startup script (.bat) This ensures AIDA64 opens after Windows has initialized monitors, preventing resizing or jumping. Open Notepad. Paste: @echo off REM Close AIDA64 if already running taskkill /f /im aida64.exe >nul 2>&1 REM Wait 8 seconds for Windows to arrange displays (adjust if your monitors need more time) timeout /t 8 /nobreak >nul REM Start AIDA64 start "" "C:\Program Files (x86)\AIDA64 Extreme\aida64.exe" What to change for your setup: timeout /t 8 → increase if your secondary display takes longer to initialize. Path to aida64.exe → replace with the actual path where AIDA64 is installed on your PC. Save as AIDA64_Startup.bat (type: All Files, not .txt). Create a shortcut to this .bat and place it in the Startup folder: Win + R → type shell:startup → paste shortcut. Optional: In the shortcut properties → Run: Minimized, so the console window doesn’t appear. What This Fix Solves Locks Sensor Panel size & position on your secondary monitor Prevents Windows DPI scaling from resizing it unexpectedly Ensures AIDA64 launches after monitors are ready Stops AIDA64 from jumping to the primary display on reboot or after connecting virtual monitors Why This Is Needed Many users report that the Sensor Panel keeps resizing or moving after disconnects, restarts, or when DPI scaling differs between monitors — even with “Lock panel size/position” enabled in preferences. (https://forums.aida64.com/topic/7580-sensor-panel-resized-itself-after-connecting-new-monitor-now-i-cant-fix-it/) Credits & References Thanks to users across the AIDA64 community (e.g., scotts, supes, WeakLaugh, Atila) for identifying that the core issue relates to panel resizing on monitor changes and scaling, which inspired this workflow. (https://forums.aida64.com/topic/7580-sensor-panel-resized-itself-after-connecting-new-monitor-now-i-cant-fix-it/) Disclaimer Text created using ChatGPT, as English is not my native language. It is strongly recommended to make a backup of your .ini file before editing anything. No responsibility is assumed for unexpected malfunctions; use at your own risk. EDIT: Tested and working with version 8.25.8200 of the program
    8 points
  2. After Flip Clock, I am excited to share something experimental: The "Butter" Glide Dynamics approach: Add buttery gauge physics (removes crossfade ghosting) to your custom gauges and they will feel sliding. Please see and share your thoughts if you feel any difference: ❤️ This lovely panel was shared by @BHSY 😍 Screen Recording 2026-03-17 172945.mp4 @Loyd I have now fixed the issue where new sensors/items were added to the bottom of the list and changing there position up was not getting saved.
    5 points
  3. What do you think based on your design?
    5 points
  4. My firs Panel 1920 x 1280 Grabación de pantalla 2026-03-13 164727.mp4
    5 points
  5. Oh Wow! 😍 This Butter Glide Dynamics is a huge game-changer. I love it. Awaiting for your next update.
    3 points
  6. KILLNAGATHUL PANEL.spzip BEBASNEUE-REGULAR.rar
    3 points
  7. Enter the CyberCurrent with “Voltaris Nexyra | D-6”! Where energy finds form, and precision becomes art. Size: 1920x480 Need a custom fit? Your panel, your way - tailored dimensions on request: 3840x1100 | 1280x800 | 1024x768 | 1920x720 | 1920x1080 & more! Precision > Futuristic: Temperature: CPU · GPU · RAM · VRAM: 100 State Utilization: CPU · GPU · RAM · VRAM: 100 States Clock: CPU · GPU: 60 States Note: Requires AIDA64 v7.70.7500 or Beta v7.99.7829 or above. Please click here to send me a PM to claim your exclusive Sensor Panel. Rise Beyond Limits - Where your system speaks in light, motion, and soul. Explore more on my webpage: Surjeet Skins From Reading Data to Experiencing It.
    2 points
  8. AIDA64 SensorPanel Watcher – Complete Guide Introduction The AIDA64 SensorPanel can sometimes open in the wrong position or size, especially on multi-monitor setups. This Watcher system ensures the panel always opens in the correct location and size, using a master .ini file as reference. Features: Automatically runs when Windows starts Monitors the AIDA64 .ini file every few seconds Fixes the SensorPanel window position and size Runs silently in the background The system uses: Master .ini file – your reference configuration PowerShell Watcher script – monitors the .ini file and fixes the window Hidden VBS launcher – runs the batch silently with admin rights Optional batch file – copies the master .ini file and restarts AIDA64 Step 1: Prepare the Master .ini File Create a folder to store your reference .ini file. Example: C:\Path\To\Master\aida64.ini Copy your desired AIDA64 .ini file into this folder. This is the file the watcher will use as a reference. Step 2: Create the Batch File Open Notepad and paste: @echo off taskkill /f /im aida64.exe >nul 2>&1 timeout /t 5 /nobreak >nul copy /y "C:\Path\To\Master\aida64.ini" "C:\Program Files\FinalWire\AIDA64 Extreme\aida64.ini" >nul start "" "C:\Program Files\FinalWire\AIDA64 Extreme\aida64.exe" Save as AIDA64_Fixed_SensorPanel.bat. Note: Replace the paths with your master .ini file path and AIDA64 installation folder. Step 3: Create the Hidden VBS Launcher Open Notepad and paste: Set objShell = CreateObject("Shell.Application") If WScript.Arguments.Length = 0 Then objShell.ShellExecute "wscript.exe", """" & WScript.ScriptFullName & """ runas", "", "runas", 1 WScript.Quit End If batPath = "C:\Path\To\Watcher\AIDA64_Fixed_SensorPanel.bat" Set WshShell = CreateObject("WScript.Shell") WshShell.Run """" & batPath & """", 0, False Save as AIDA64_Fixed_SensorPanel_Hidden.vbs. Note: Replace batPath with the path to your batch file. Step 4: Create the PowerShell Watcher Script Open Notepad and paste: $master = "C:\Path\To\Master\aida64.ini" $install = "C:\Program Files\FinalWire\AIDA64 Extreme\aida64.ini" $vbs = "C:\Path\To\Watcher\AIDA64_Fixed_SensorPanel_Hidden.vbs" $SensorPanelClass = "TForm_HWMonitoringSensorPanel" if (-not ("WinAPI" -as [type])) { Add-Type @" using System; using System.Runtime.InteropServices; using System.Text; public class WinAPI { public delegate bool EnumWindowsProc(IntPtr hWnd, IntPtr lParam); [DllImport("user32.dll")] public static extern bool EnumWindows(EnumWindowsProc lpEnumFunc, IntPtr lParam); [DllImport("user32.dll", SetLastError=true)] public static extern int GetClassName(IntPtr hWnd, StringBuilder lpClassName, int nMaxCount); [DllImport("user32.dll")] public static extern bool IsWindowVisible(IntPtr hWnd); [DllImport("user32.dll")] public static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint); } "@ } $global:foundHandles = @() function Get-FileHashMD5($file) { if (Test-Path $file) { return (Get-FileHash $file -Algorithm MD5).Hash } else { return "" } } function Fix-SensorPanel { $global:foundHandles = @() $callback = { param($hWnd, $lParam) if ([WinAPI]::IsWindowVisible($hWnd)) { $classSb = New-Object System.Text.StringBuilder 256 [WinAPI]::GetClassName($hWnd, $classSb, $classSb.Capacity) | Out-Null if ($classSb.ToString() -eq $SensorPanelClass) { $global:foundHandles += $hWnd } } return $true } $delegate = [WinAPI+EnumWindowsProc]$callback [WinAPI]::EnumWindows($delegate, [IntPtr]::Zero) | Out-Null foreach ($hWnd in $global:foundHandles) { for ($i=0; $i -lt 10; $i++) { [WinAPI]::MoveWindow($hWnd, -1280, 1040, 1280, 400, $true) Start-Sleep -Milliseconds 200 } } } while ($true) { if (Get-FileHashMD5($master) -ne Get-FileHashMD5($install)) { Start-Process "wscript.exe" -ArgumentList ('"' + $vbs + '"') -Verb RunAs } Fix-SensorPanel Start-Sleep -Seconds 5 } Save as AIDA64_Watcher.ps1. Note: Update paths to your master .ini file, installation folder, and VBS file. Step 5: Create a Hidden Scheduled Task Open Task Scheduler (Win + S → Task Scheduler) Click Create Task… General Tab: Name: AIDA64 Sensor Panel Watcher Check Run only when user is logged on Check Run with highest privileges Configure for: Windows 10 Triggers Tab: New → Begin task: At log on → OK Actions Tab: New → Action: Start a program Program/script: powershell.exe Add arguments: -WindowStyle Hidden -ExecutionPolicy Bypass -File "C:\Path\To\Watcher\AIDA64_Watcher.ps1" Settings Tab: Allow task to run on demand Run task as soon as possible after a missed start Restart task if it fails (1 min interval, 3 attempts) Click OK → Enter password if requested How it Works The Watcher checks the installed .ini file against the master .ini file If differences are detected, it runs the batch file silently to update AIDA64 The PowerShell script searches for the Sensor Panel window by class name Moves it to the correct monitor and resizes it Runs invisible in the background with very low resource usage Resource Usage: The Watcher uses minimal CPU and memory (typically <5 MB RAM, negligible CPU). Disclaimer Text created using ChatGPT, as English is not my native language. It is strongly recommended to create a Windows system restore point before editing anything. No responsibility is assumed for unexpected malfunctions; use at your own risk.
    2 points
  9. 1280 * 480 - For Star Wars fans and supporters of the Galactic Empire. Long Live the Emperor. StarWars-Empire-1280x480.spzip
    2 points
  10. My preliminary version of the Asus Armoury Crate theme skin. 1024x600. Asus_AC.spzip ROGFonts-Regular_0.otf OCRAEXT.TTF
    2 points
  11. @Skinny12 @Kleimo @Tanis53 @braintez @ParisV We've implemented support for Thermal Grizzly WireView Pro II in the latest AIDA64 beta update available at: https://www.aida64.com/downloads/latesta64xebeta
    2 points
  12. Estou a alguns dias aprendendo a mexer no painel em uma tela de 600x1024, uma grande luta até entender o funcionamento, mas consegui até um bom resultado e fiz alguns temas diferentes usando partes de alguns daqui... isso é muito viciante de mexer hehe.
    2 points
  13. 1920x480 2026-03-07.spzip
    2 points
  14. By looking for a solution for anyone still having issues with the SensorPanel moving, changing size, or restarting when using a secondary display with a different scale or resolution on Windows (as me, running latest AIDA64 8.25 version), and coming from this: I would like to introduce y'all: AIDA64 SensorPanel Watcher AIDA64 SensorPanel Watcher is a light script in refinement phase (but actually working) that checks if the AIDA .ini configuration file has changed and automatically readjust the position and size of the SensorPanel if they have changed as well. Note: The full script has been shared, but the Position and Size of the SensorPanel have to be changed according to users' preference.
    1 point
  15. @MoonTime622 @Movingon007 @slipkidOG Check this out!
    1 point
  16. @Mice007 I’m trying to understand which lines in the AIDA64 ini file actually define the size and position of the Sensor Panel. I’ve noticed that some settings like enabling the context menu are saved, but the width, height, and position don’t seem to be applied from the ini. The reason I ask is that I’ve created a script acting as a ‘watcher’ to always copy a master ini to the installation folder if it detects changes. If I can determine which ini parameters control the size, it would allow me to partially fix the panel misalignment... EDIT: Nevermind, I am programming a basic "Watcher" that checks the size and position of the SensorPanel every 5 seconds, and adjusts it if there have been changes EDIT 2: Watcher launched (working but still in refinement process). See below
    1 point
  17. They should be there as Temperature #1 and Temperature #2 in your case.
    1 point
  18. I wanted to create something that wasn’t techno-aggressive. An image from the internet + ChatGPT, and the new dashboard 1024x600 is ready.
    1 point
  19. How about Virtual Sensors, a sensor that can be defined arithetically from other sensors? E.g. the mean value of 16 core temperatures or the max value of CPU and GPU powers etc. I'd actually prefer one traffic light for the maximum temperature of 5 SSDs instead of 5 different diagrams.
    1 point
  20. We've implemented a workaround to mitigate this issue. Please check it out: https://www.aida64.com/downloads/latesta64xebeta
    1 point
  21. That’s wonderful. May I ask you to share it?
    1 point
  22. Enter the Electric Future with “Sci-Fi IonWire | I-9” A fusion of energy, signal, and precision - crafted for those who see beauty in every byte. Size: 1920x480 Need a custom fit? Your panel, your way - tailored dimensions on request: 3840x1100 | 1280x800 | 1024x768 | 1920x720 | 1920x1080 & more! Precision > Perfected: Temperature: CPU · GPU: 100 States Utilization: CPU · GPU · RAM · VRAM: 100 States Note: Requires AIDA64 v7.70.7500 or Beta v7.99.7829 or above. Please click here to send me a PM to claim your exclusive Sensor Panel. Forge Tomorrow - Precision engineering for minds that dare. Explore more on my webpage: Surjeet Skins Turning Every Byte Into Beauty.
    1 point
  23. Wonderful, your advice seems to work fine! Thanks a lot! //Nils
    1 point
  24. Take a look — I added a recording studio background to better match the image. You might try adding something that relates more to your theme. It’s just an idea, but I hope it helps you get the result you’re looking for. ✨
    1 point
  25. Beautiful, can you share it ?
    1 point
  26. Thank you! I will try to reproduce the issue and see if anything can be done here Looking absolutely amazing! The clean panel design and the way SynQPanel has been used really stand out. We’ll take care of the remaining issues step by step… slowly but surely. It’s truly encouraging to see the download numbers growing and people being curious enough to try something new. That kind of support means a lot ❤️ 🙏
    1 point
  27. Thank you, GaHile, and well done for getting the flip‑clock feature working.👍 It's not a fancy design, but I’ve put together a simple 1920x515 flip‑clock with a weather forecast panel for my personal use. Now, I have my fancy system stats sensor panel (2560x720) underneath my monitor and a weather forecast with a flip-clock panel inside my PC case. 💪 Today's weather will be very hot, and the humidity is always high. ☹️ Note: The month, day, and week use normal custom gauge sensors.
    1 point
  28. My first AIDA64 sensor panel, something simple even though it was my first time. The resolution is 1920x1080
    1 point
  29. Arc Raiders ftw a little bit of goooop
    1 point
  30. I have created two minimalist designs that are suitable for my idle iPhone
    1 point
  31. I have the hardest time trying to decide on a good design based on the 5 panels I did so far. So, I asked my wife which one she preferred. This is the one she picked. Not as busy as some others, but since my prime concern is really overheating something, this one does all I really need. If the logo at the top is unfamiliar this panel goes on a "Taichi Lite" based unit. trial 5.spzip
    1 point
  32. Criando uma versão 480x320, ainda falta vários ajustes...
    1 point
  33. 1920 x 480 Font is Future Z which you can find on a number of previous panels. EDIT: See below for update Cheers👍
    1 point
  34. 1920 x 480 Fonts & panel in zip. EDIT: If anyone has problems loading the sensorpanel from the included zip folder. Please use the newer non compressed Vim8 version down below. Thanks for looking 👍 Vim 8.zip
    1 point
  35. 1920 x 480 Panel and fonts in zip Thanks for looking 👍 DX.zip
    1 point
  36. Hello everyone! I'm excited to share my custom redesign of the Core Template. I really liked the original layout, but wanted something cleaner and better-looking. This one shows more info and even has space for a personal logo! I made it for my Jonsbo D41 Screen with a resolution of 1280x800. If you're using the same display, feel free to try it out! Here's the file: Vantic1.sensorpanel Feedback and suggestions are always welcome! P.S. Since I used Figma for the design, it would be really easy to share the project for anyone to customize and adjust for their own needs. Let me know.
    1 point
  37. 1 point
  38. Hi All So after taking a little here, a little there and spending a day on it I finally have what I personally want to have out of my sensor panel. This is a white version and its 1920x480 I dont plan on making any other sizes. It uses the Geforce font included in the zip file Please be kind. This is my 1st panel and in future I might get a little better at it ToxicAngel.zip
    1 point
  39. 1920 x 480 Panel and fonts in zip Thanks for looking G3Vimy.zip
    1 point
  40. 1920 x 480 Panel and font in zip Cheers Vimy.zip
    1 point
  41. 1920 x 480 If anyone needs the Asus logo taking out and replacing with MSI for instance, or just blank. Let me know... Font is Future Z which you can easily find on any past upload. Thanks for looking HUDBclock23 Vimy.sensorpanel
    1 point
  42. after about 2 days of setting everything to my liking, I present to you a 1280x400 sensor panel
    1 point
  43. Yihaa, finished my Matrix panel to my hyte. Flying Neo gauge + pill offering morpheus looks awesome! What you guys think?
    1 point
  44. Size 1280 x 800 I created this special for Jonsbo D31, Jonsbo D41, Jonsbo DS8 Hi everyone, hope you like it. Thanks for looking. Download XYZCAM.zip
    1 point
  45. Size 480 x 320 Suitable for AX206 LCD Extensions .axlcd & .sensorpanel Hi everyone, hope you like it. Thanks for looking AX206.zip
    1 point
  46. I modified a previous custom sensor panel for 1280x400 and added a few things.
    1 point
×
×
  • Create New...