168,002 questions
1
vote
1
answer
23
views
Uninstalling an app doesn't delete all the files if the app is running. How do I solve this problem?
I'm building a Windows app, and it was rejected by Microsoft App Store because it didn't delete all the files after uninstalling.
The app is packaged using Java's jpackage and an MSI file. The ...
0
votes
0
answers
30
views
I am running Ollama (a local LLM service) on Windows and need to programmatically detect which port it's currently listening on
What I've tried:
Using Get-NetTCPConnection but it returns too much information and I can't reliably filter for Ollama:
Get-NetTCPConnection -State Listen | Where-Object {$_.LocalPort -gt 11400}
...
0
votes
0
answers
23
views
fabric.js canvas.loadFromJSON hangs indefinitely on one Windows machine but works on another (Node.js + node-canvas)
TL;DR
I’m using fabric.js + node-canvas to export a very large canvas (6600×108000) from a FabricJS JSON.
On one Windows machine,
await canvas.loadFromJSON(fabricJSON) hangs forever:
no error
no CPU ...
-1
votes
0
answers
67
views
How to bind SelectedItems in ListBox to ViewModel (Behaivor problem) [duplicate]
I have a ListBox
<ListBox
BorderBrush="Transparent"
FontSize="{Binding ExplorerElementsHeight}"
ItemsSource="{Binding CurrentExplorerContent}"
...
-3
votes
1
answer
75
views
Windows: how to access final framebuffer and write pixels to it without window? [closed]
I'm developing an app/driver for a custom hardware accessory. The hardware accessory depends on certain things being displayed on the screen on top of the actual application content that's being used. ...
1
vote
0
answers
33
views
How to build a static Highway lib on Windows [duplicate]
I'm attempting to build a static library from https://github.com/google/highway on Windows. The README says to that BUILD_SHARED_LIBS should control this, but when I run the following in windows-...
1
vote
1
answer
77
views
Source path does not exist during folder migration from one Windows PC to another using Python script
I wish to migrate a folder tree structure from one Windows PC to another by running a python script on the destination PC. Here is the code I am using:
import shutil
import os
import sys
import ...
1
vote
0
answers
108
views
Bypass Windows global lock in NtUser* functions?
We are using Windows 11 24H2 in our test system. There we start multiple instances of our GUI application (WinForms, .NET Framework 4.8) on each machine. The application is controlled via COM scripts ...
-3
votes
0
answers
55
views
Podman server containers not accessible over network or host IP on Windows [closed]
I'm trying to run server applications from containers running on Podman on Windows. I have mostly succeeded: I get the containers up and running and can access them over localhost/127.0.0.1, but I'm ...
-3
votes
0
answers
35
views
Windows File Explorer "Sharing" Tab continues to show "Network Path" after sharing is removed [closed]
I have shared a folder to network, and after sharing is removed, the full network path is still visible for all folders on directory.
After removing sharing permissions and restarting, the full ...
-2
votes
0
answers
117
views
How to get fixed storage media type (HDD or SSD) using winapi?
As a disclaimer, I have successfully used DeviceIoControl with IOCTL_STORAGE_QUERY_PROPERTY to get a STORAGE_DEVICE_DESCRIPTOR structure that contains the BusType enum, such as SATA or NVMe for fixed ...
0
votes
0
answers
129
views
gem 'ruby-vips' on Windows: non-compatible forward slashes in the vips-module path
After upgrading Rails from 8.0 to 8.1 and running rails s on Windows, I get VIPS warnings, for example:
unable to load "C:\Ruby34-x64\msys64\ucrt64/lib/vips-modules-8.17\vips-heif.dll"
...
0
votes
0
answers
53
views
Renesas e² studio / SSP install fails on macOS and Windows ARM VM (GetLastError 317)
I’m trying to develop and flash firmware for a Renesas Synergy DK-S7G2 board, but I’m completely blocked by tooling issues across macOS and Windows on ARM (VM). For context, I am using an M4 MacBook ...
Advice
0
votes
2
replies
116
views
Compile C++ .NET SDK into apk Android app. Is this possible?
I am working on a Windows application with Windows Forms in Visual Studio using C++/CLI SDK.
This is easily compiling to an .exe file, and it works perfectly on Windows.
But what about Android or iOS? ...
-2
votes
0
answers
106
views
How to make Windows file processing go at a bearable speed? [closed]
I am building a music player and I need to load in a music library, so naturally I need to process a large quantity of files quickly. I only need a small portion from the beginning of each music file, ...