Windows is a family of client, server, and mobile operating systems, developed by Microsoft. If your question has nothing to do with Windows APIs or Windows-specific behaviour then do not use this tag, even if you are running on Windows.
0
votes
0answers
10 views
Why does dllMain overrides the control-word of my FPU?
I've seen here and here that dllMain changes the control-word of my FPU, and I need to:
_control87(_CW_DEFAULT, _CW_DEFAULT);
so it will return to normal. But no one states why it is done.
Does ...
0
votes
0answers
4 views
how to create directX dxtrans.lib
How can I build dxtrans.lib using VisualStudio 2010 on Windows-7 32-bit?
I've downloaded and installed DirectX, but can't find
dxtrans.lib and can't find a project to build it.
I need it for a ...
1
vote
3answers
26 views
How do I programmatically change CamelCase names to displayable names
I would like to take a class name or enumeration name that is camel case and display it in normal text for the user. How can I programmatically do this?
0
votes
0answers
5 views
Task Scheduler randomly not running scripts, reports them as complete
I have a windows server 2008 r2 virtual machine that is set up to run various tasks at night, it reads from a database creating CSVs and copies files to and from locations on other disks. All tasks ...
1
vote
1answer
6 views
Windows & Git Bash: Bash PATH to read Windows %PATH% system variable
I've recently added a directory to the Windows PATH manually by going into Control Panel -> System -> Advanced system settings -> Environment Variables -> User variables -> PATH. (Windows 7, 64-bit.)
...
0
votes
0answers
6 views
get rid of transparency of selected part of png using imagemagic
I have this png image with transparency http://s18.postimg.org/d2h2m4yl5/flatten_canvas2.png
I want to get rid of transparency using imagemagick, but only of the selected part and not the whole ...
0
votes
0answers
11 views
Windows composer install issue
I'm trying to install composer via the composer-setup.exe from http://getcomposer.org/download/ and I'm getting the following error:
Connection Error [ERR_CONNECTION]: Unable to connect to ...
-2
votes
0answers
42 views
My .exe file is considered a threat on other computers .. Why? [closed]
When someone downloads my program it is considered a virus (even IE9 thinks it is a harmful application) though on my computer it isn't.
Why is that?
0
votes
2answers
10 views
Slow down / speed up any arbitary process
Is it possible on windows, to slow down and/or speed up a process as and when i see the need arise (One way i can think of is to dynamically change how much processor time a process gets). Please ...
0
votes
0answers
12 views
PsExec & Process Through C# Not Showing Output
Apparently PsExec is working. This code works. When executed, it never returns errors. But only SOMETIMES does it return output, and when it does return output, it is always~ the first line.
And the ...
1
vote
1answer
18 views
How to unsign an APK via command line in Windows
I work in a QA department that receives APKs signed with development keys. When we want to sign one of these builds for purchase testing, I typically use 7zip to open the APK and delete the META-INF ...
0
votes
0answers
13 views
how to get access after hide the drive with Diskpart Command-Line Utility
I want to hide the drive from user with Diskpart Command-Line Utility .
I use remove letter command and the drive becomes hidden .
But I want to use the data of that drive for example in my program ...
0
votes
0answers
4 views
How to debug windows device driver and what to debug if driver is installed on VM?
I'm using VS 2012 and VM on same machine.
Host Win7_x64 and VM on same machine is again Win7_x64
Debug using VS 2012, i.e using VS and pipe serial connection on VM.
Everything is proper. I'm able to ...
0
votes
1answer
22 views
How to read input/output from the command prompt that has been launched by a user
I have a training and testing application that tells gives users certain tasks and then programmatically determines whether they have been performed. One of the tasks is typing something in the ...
-2
votes
2answers
67 views
Windows variable in C# [duplicate]
How to get windows environment variabe in the C# code.
I have a windows startup script to set the environment variables.
I need to pass this variable to C# code..something like %var%
e.g. in the ...