windows

Accessing shared memory while impersonating a client

I'm trying to access global shared memory from an ASP.NET web method while impersonating a client, but I get access denied when trying to open the handle. As an example: [WebMethod] public string Testing() { string result = null; using (var ctx = WindowsIdentity.Impersonate(IntPtr.Zero)) { IntPtr p1 = NativeMethods.OpenFileMa...

Path for Command Line Prompt Across Windows OS

this question might seem counter-useful. the path for the windows command line prompt is different across several windows OSes. i'd like to know if there is a command i can enter in the command line prompt that will output the path of the command line prompt. ...

Open online file with desktop applications?

I want to let the user click on a file (let's say a .doc link) in the browser and it will open the native desktop application (microsoft word in this case). And when the user saves the document it will be saved in the web. Is there a way doing this with Javascript/HTML 5 or does the user have to download the file to be able to open it ...

ec2: cannot open port 5080 on windows instance

Hi there, I'm pretty new with ec2, firewall settings etc, so I might be missing something obvious, but: I've created a 'getting started with windows' instance with a security group that has 5080 specified and is associated with an elastic ip On the instance I have a red5 server running. when I run the server it on 127.0.0.1:5080, i ...

How to get **all** IP addresses of a domain?

I built the getaddrinfo() sample provided at http://beej.us/guide/bgnet/output/html/multipage/syscalls.html#getaddrinfo When I run it on an example domain, such facebook.com it lists three (3) IP address: IPv4: 69.63.189.11 IPv4: 69.63.189.16 IPv4: 69.63.181.12 I know, however, that there are quite a few more addresses (at leas...

Please recommend books on capture/parsing network video stream(including mjpeg) in windows

I'm not stuck by this subject, can you recommend a book really good on this? UPDATE Actually I tried using curl to fetch a snapshot out of mjpeg stream,but fails,the programe continues to output,can't stop: curl_easy_setopt(curl, CURLOPT_URL, "network path to mjpeg"); res = curl_easy_perform(curl); printf("%s", res); curl_easy_cleanup...

Oracle 11g R2 Install Guide

Hi, I have a need to install Oracle 11g R2 on Windows Server 2008 R2. I have downloaded the two files from Oracle (win64_11gR2_database) and the client (win64_11gR2_client). Does anyone have a guide or step by step to sucessfully setup Oracle? My goal is to connect to the database from Visual Studio 2010. Thanks ...

Variable included in a set

There is a way with the IF command to include a variable in a set of values? What I mean is: IF %%i in (abc 123 opl) echo first set IF %%i in (xyz 456 bnm) echo second set ...

Updating path to include Android tools directory?

Total noob here. Just installed eclipse and SDK. I was instructed to "To update your PATH variable to include the Android tools directory, right-click Computer and choose Properties. In Vista, you also need to click Advanced System Settings. You continue by clicking the Advanced tab of the System Properties dialog and clicking the Envir...

what is this icon?

In our university computers,there is an icon in form of a "head of a sheep" in menu bar. It didn't clicked so i can't know wat is it? Because i'm a guest i can't upload it's image. ...

Graphics Driver for Intel D865GVHZ motherboard comapatible With windows 7

I just installed Windows 7 .My motherboard is Intel D865GvHZ . The Realtec Audio Driver which i used for XP is working but the Intel Extreme Graphics Driver is not getting installed. I checked Intels site and my motherboard is in discontinued board list.So there is no drivers available for Windows 7 . What should i do ?? can i use any...

C\C++ LINPACK source code for window free for commercial use?

Hello! I need run benchmark to test my cpu FLOPS and compare this with raitings such as top500 org. I known Linpack is are standart for measure CPU perfomance. But i can find source code for windows on C\C++ without not free librarys like Intel MKL library, etc Maybe someone know where i can find C\C++ LINPACK source code for window free...

Windows Explorer

What are the different operations involved in using the Windows Explorer? Explain each operations. ...

How to run a batch file over a period of time repeatedly : Scheduling a task

I've a task(.bat file) which should be performed/executed after every 15mins. I don't know where to make its entry so that it'll be scheduled? With this, I want to see the execution(progress) of the task running(in command prompt). ...

AF_INET for IPC in windows

I wish to know that If protocol family AF_INET is used for local communication (IPC) in windows systems. (with loopback interface) will it be able to give performance same as AF_UNIX in unix. I tried for Named pipe in windows but it doesn't seems to me working for my case. AF_INET when used it will go through the TCP/IP stack. which wil...

Is there a command line utility equivalent to wmctrl on Windows

I'm trying to write a remote window manager so that I can control my open windows via bluetooth using anyremote. There's wmctrl for Linux that manages windows from the command line. Is there similar tool in Microsoft Windows? I.e. A command line based window manager for Microsoft Windows. If there are existing command line hacks that I ...

What is RtlPcToFileHeader?

I am profiling an application using VerySleepy 0.7. The application is written in C++ with Qt 4.6.x, compiled with VS 2005 and is running on Windows 7 Ultimate x64. The highest usage by far is a call to RtlPcToFileHeader Exclusive Inclusive %Exclusive %Inclusive Module 33.67s 33.67s 15.13% 15.13% ntdll It is not clear t...

Must I CloseHandle() on a thread handle ?

_beginthreadex returns a handle to a thread: m_hStreamStatsThread = (HANDLE) _beginthreadex( NULL, 0, StreamStatsThread, this, 0, NULL ); This handle may be used if you need to refer to the thread in calls like TerminateThread(..) for example. According to the MSDN page on _beginthreadex, _beginthreadex won't always return a valid ha...

Python: getting an object's “attribute/method/property” either as a parameter to a method or as a property.

In the WMI module (yeah, my boss wants me to program in Windows — but at least it’s not in COBOL), it seems that you can access a WMI value either by passing it’s name as a string parameter of a method, blabla=wmithingy().getvalue('nameOfValue') or as a property/method: blabla=wmithingy().nameOfValue() Am I dreaming, smoking bad w...

Program to automate reset of password on Windows Server

Program to automate reset of password on Windows Server I would like to be able to automate the reset of user password (and possibly change password to a default value) based on an email received from a user within the company For this I would require a program to change password account and a way to trigger a program based on an ema...