TvE > 2022-12-31 07:03
choco install qap
Jean Lalonde > 2022-12-31 11:04
TvE > 2023-01-01 06:54
(2022-12-31 11:04)Jean Lalonde Wrote: No, this is not the normal behavior and this type of issue has not been reporter before. I don't know if this could be related to the Chocolatey installation. I'll ask the user who registered QAP to take a look at this in case this is related.
If you uninstall QAP and re-install it using the normal Easy Setup file, do you get the same issues?
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'https://www.quickaccesspopup.com/download/archives/quickaccesspopup-setup-11_5_10.exe'
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $toolsDir
fileType = 'EXE'
url = $url
softwareName = 'Quick Access Popup'
checksum = '39dbbb2c5886f8203447d8e4b399677d'
checksumType = 'md5'
validExitCodes= @(0, 3010, 1641)
silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
}
Install-ChocolateyPackage @packageArgs
Jean Lalonde > 2023-01-01 08:50
TvE > 2023-01-01 09:19
Horst > 2023-01-01 09:37
(2023-01-01 09:19)TvE Wrote: - Windows was fully up to dateI suggest disabling the QAP database which you don't need for normal usage.
- A reboot made no difference
The symptoms are the same - BUT I have now explored further and see a periodic (not intermittent) pattern:
- Launch QAP
- Open OPTIONS
- Observe (no user interaction)
Every 60 seconds (thus periodic!) QAP changes to the "Not Responding" state for 15 seconds (AND focus changes from the OPTION to the CUSTOMIZE window). This pattern repeated 5-10 times before I exited QAP.
I also made another test, where I continously scroll in a text document, the scrolling speed decreases to ~10% at the exact same time of the QAP in "Not Responding" state (though the too-slow scrolling was only in effect for ~5s).
After exiting QAP there is no longer imposed a decrease of scroll speed in "my scroll test"
Are there any periodic background tasks occuring every minute that are polling something???
While clicking in the different sections in the OPTIONS I also encountered this strange rendering of the GUI (might give a hint to what goes on behind the scenes:
https://freeimage.host/i/2023-01-01-1512...gs.HuMOh8l
If needed I can generate a video of the behavior...
Jean Lalonde > 2023-01-01 11:09
TvE > 2023-01-01 17:11
Jean Lalonde > 2023-01-01 20:42
TvE > 2023-01-02 11:14
Jean Lalonde > 2023-01-02 11:32
TvE > 2023-01-03 02:06
(2023-01-02 11:32)Jean Lalonde Wrote: > Is there any way to get debugging data out of QAP, perhaps a debug version that logs the time of the calls and maybe also provide hints to the root cause of this isue I'm facing (which may or may not be a QAP issue)
There was at some point when developing the database but it has been removed after debugging was finished.
You could try to see how a SQLite application like DB Browser for SQL Lite (https://sqlitebrowser.org/) behaves on your PC-1.
Execution finished without errors.
Result: 147 rows returned in 4ms
At line 1:
select * from Usage
joeNOR > 2023-01-03 08:04
Jean Lalonde > 2023-01-03 09:38