168,078 questions
0
votes
0
answers
3
views
"RuntimeError: PdhAddEnglishCounterW failed" in python psutil module
I try to get free memory and swap amounts on Windows 7 64bit machine with psutil python module. Virtual memory info works normally, but getting swap information failed:
Python 3.8.6 (tags/v3.8.6:...
-1
votes
1
answer
54
views
Why is the cURL command not working from the batch file? [closed]
I need to use cURL from the batch file (.bat) in Windows. My script is the following:
@echo off
curl "https://...url1..." -o "D:/path/file1.htm" "https://...url2..." -o &...
3
votes
0
answers
105
views
Why does setting a slightly smaller resolution(e.g., 1900×1080 instead of 1920×1080) drastically improve USB camera performance in OpenCV on Windows
I'm using OpenCV-Python on Windows 11 to capture video from a USB camera for object detection tasks. However, I noticed that the camera’s frame rate is extremely low — maybe only about 1 FPS, even ...
0
votes
1
answer
71
views
Python gets stuck in an infinite loop restarting multiprocessing pool workers on error in initilization routine
I am trying to setup a multiprocessing Python task on Windows 10, Python 3.13. I have "main.py" module, containing the main entry, "orchestration.py" module with worker ...
-3
votes
1
answer
58
views
Python was not found error when running python script from cmd prompt [closed]
I can run a python script line by line successfully in VSCode
But when I try to run it from prompt using python .\test.py I receive the error:
Python was not found; run without arguments to install ...
2
votes
0
answers
31
views
How to use ITaskbarList3::SetProgressState and ITaskbarList3::SetProgressValue in Go? [duplicate]
I make a software in Go. Because it made a long process, it displays a progression bar. I show one with a *fyne.widget.ProgressBar, and I would like to add another one directly on the taskbar button ...
-5
votes
0
answers
26
views
Face problem to deploy agent of wazuh agent in window machine [closed]
I face a problem to deploy the wazuh agent from VM WARE into my window machine. I read too much blogs and articals through out the internet. I run the wazuh agent.ova file in my VM Ware. The .ova file ...
-5
votes
0
answers
44
views
Windows Server File Replication Challenge: Replacing Robocopy for Highly-Available, Eventually Consistent Data [closed]
We are running a critical web application on Windows Server with an Active/Passive failover setup. Data integrity and high availability are non-negotiable requirements.
The Current Architecture
...
0
votes
1
answer
115
views
C# Https call using HttpClient does work in Windows 7, but not in Windows 10
In Windows 7 32-bit, on .NET 4.6.1, this code works fine and the remote server is returning data:
using (HttpClient client = new HttpClient())
{
client.Timeout = TimeSpan.FromSeconds(3);
...
-3
votes
0
answers
21
views
Simulation SHJ solar cell with Silvaco [closed]
I wanna to simulate an SHJ solar cell with Silvaco and I need the related code to get J-V curve in this regard.
Could you please help me?
0
votes
2
answers
62
views
unable to install pytidycensus
I tried to install pytidycensus per these instructions: https://mmann1123.github.io/pytidycensus/index.html
pip install pytidycensus
OS Windows 11, current as of 10/31/2025, with Python 3.13.7 ...
0
votes
1
answer
67
views
Does integer zero division always raise exception on 64-bit Arm on Windows?
When I perform integer division by zero on Windows 11 on Arm64, it raises a SEH exception.
That is rather surprising, considering Arm by default does not trap zero division.
My question is: does the ...
-4
votes
0
answers
64
views
Debugging python code without any fancy hand-holding IDE or fumbling around in the MS-DOS interface that I hate [closed]
Not sure if there is a precedent for this query here, or what search keys might help me find it.
Running Windows 11 on a Metabox laptop. Recently I made a small change to some Python code that already ...
Advice
0
votes
0
replies
40
views
The difference between Credential Manager and Windows Vault
I'm confused with the difference between Credential Manager and Windows Vault.
Windows says
Credential Manager lets users store credentials relevant to other systems and websites in the secure ...
0
votes
3
answers
85
views
How to get from a url string the path to a file with a FOR loop in a Windows batch file?
Given is a string which is a url of a file, e.g. http://url.com/file.zip. I want to extract the path without the file name, i.e. http://url.com/.
My idea for doing this was to break down the string ...