167,943 questions
-3
votes
0
answers
60
views
How can I check CPU usage and Disk space without polling with c# (Windows 10) [closed]
I want to improve my system resource check on Windows 10. Currently I use the PerformanceCounter to get the core values. I read the information every second and show a little message when the usages ...
1
vote
1
answer
53
views
Custom x64 Windows PE Not Running
I was trying to manually craft my own windows pe and for some reason cant seem to find out why my program isnt running, ive crossed checked all my alignments, file alignments, section alignments and ...
Advice
0
votes
3
replies
75
views
How to change wallpaper on all virtual desktops (multiple desktops) in Windows 11 programmatically using Python?
I'm trying to write a Python script that changes the desktop wallpaper. Currently, I can change the wallpaper for the current virtual desktop using ctypes and the Windows Registry:
import ctypes
...
0
votes
0
answers
41
views
How to pass commands from Git Bash to a new command prompt window? [closed]
From Git Bash, is there a way to launch a new command prompt window and pass commands to it?
-3
votes
0
answers
43
views
How to detect Command & Control (C2) communication on Windows? [closed]
How can I detect C2C communication on Windows?
I want to understand what kind of behavior or patterns should be monitored to identify possible C2C activity.
0
votes
0
answers
58
views
IStream audio output data routed from ISpVoice is glitchy [duplicate]
I've managed to stream raw PCM audio data from Microsoft's text to speech engine. The main implementation is here (included below): https://gitlab.com/bgc-nz/windows-com-programming-showcase/-/blob/...
4
votes
1
answer
29
views
PyGObject + GTK3 installation
I'm trying to install PyGObject to work with GTK3 and I'm running into:
ImportError: DLL load failed while importing _gi: The specified module could not be found.
I've run the following commands in ...
0
votes
1
answer
28
views
docker compose build fails: 'unable to prepare context: unable to evaluate symlinks in context path: The system cannot find the path specified.'
I have a basic python application that I'm running through docker compose. I've been using it for a while now and has been fine, however recently, I have not been able to run docker compose with the --...
-1
votes
0
answers
15
views
Issue trying to reverse proxy from Apache (on Windows) via a Unix Domain Socket to Tomcat [closed]
Running Apache 2.4.57 & Tomcat 11.0.18, both on Windows 11.
I'm trying to get Apache to reverse proxy to Tomcat over a Unix Domain Socket. I've tested this out on Ubuntu and it works. I'm not sure ...
-1
votes
0
answers
35
views
How to prevent Windows 11 from considering drive letters mapped to local folders as "Internet"? [closed]
For historic reasons (mainly because I had once mapped a network drive as my home directory on two different computers to keep them automatically "in sync") I maintained the habit of using a ...
3
votes
1
answer
159
views
How to load native libraries with a long path?
My Java application is installed to another application's "test area", resulting in longer absolute file paths than usual.
I can load native libraries from a short file path:
System.load(&...
Advice
0
votes
1
replies
72
views
OpenAI Codex CLI isnt available on Windows yet, is there any other way i can have access to it?
I want to use OpenAI Codex (CLI/app), but it appears that it is not officially available for Windows.
I checked the official documentation and release pages, and I couldn’t find a Windows installer or ...
0
votes
1
answer
43
views
Mongoose querySrv ECONNREFUSED with Node v22.22.0 on Windows - Works on Render but fails locally
I'm facing a persistent connection issue with Mongoose and MongoDB Atlas ever since I updated/reinstalled Node.js to version v22.22.0. Interestingly, the exact same code works perfectly when deployed ...
-3
votes
0
answers
35
views
COM or Moniker or DCOM [closed]
which mechanism handles the "object linking" in OLE by maintaining a persistent connection to a remote server's CSLID
I want know that which mechanism handles the object linking in OLE is it ...
2
votes
1
answer
72
views
Setting FILE_ATTRIBUTE_PINNED / UNPINNED makes file Hidden and System
I am using Delphi Alexandria (Win64) and I need to programmatically Pin and Unpin OneDrive files.
I am attempting to use GetFileAttributes() and SetFileAttributes() with FILE_ATTRIBUTE_PINNED and ...