Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
170 views

rename computer programmaticaly c# .net

I need to rename my computer via .net application. I have tried this code : public static bool SetMachineName(string newName) { MessageBox.Show(String.Format("Setting Machine Name to '{0}'...", ...
5
votes
3answers
315 views

Do I need to pin an anonymous delegate?

I am calling CopyFileEx from a C# application with an anonymous delegate being passed into the LPPROGRESS_ROUTINE parameter in order to get notifications on the file copy progress. My question is, ...
3
votes
5answers
603 views

CreateProcess such that child process is killed when parent is killed?

Is there a way to call CreateProcess such that killing the parent process automatically kills the child process? Perhaps using Create Process Flags? Edit The solution is to create a job object, ...
3
votes
2answers
243 views

Any difference between kernel32.dll Sleep and Thread.Sleep()

Is there any difference(performance, implementation. .whatever) between the following: i) DllImport("kernel32.dll")] public extern static void Sleep(uint msec); ..then call Sleep function ...
3
votes
1answer
199 views

P/Invoke call just stops

I'm trying to write data to a serial port via P/Invoke (explicitly not with the SerialPort-class). Here's what I have so far: [DllImport("kernel32", SetLastError = true)] static extern IntPtr ...
3
votes
1answer
586 views

CreateFile in Kernel32.dll does not allow me to open a physical disk

I am trying to use the following code to get the MBR from PhysicalDrive0 private static byte[] ReadMbr(string lpFileName) { SafeFileHandle drive = CreateFile( lpFileName: ...
3
votes
4answers
759 views

C# GetProcAddress Returns Zero

For some reason, whenever my C# .NET 2.0 application makes a call to GetProcAddress it always returns zero. public class MyClass { internal static class UnsafeNativeMethods { ...
3
votes
2answers
495 views

Low-Level C++ App Crashes on Windows Vista/7 Unless Run in XP Compatibility Mode

I have a low-level (like really low-level, it's basically all IOCTL calls and several calls to enumeration APIs) that crashes sporadically on Windows Vista/7 on clients' machines. Unfortunately, I ...
2
votes
1answer
72 views

can we rebase kernel32.dll ? such that load address is different for two processes

specifically i want to know if kernel32.dll load address can be different for two processes within the same session ? I want to use createremote thread so just wanted to know if kernel32 load address ...
2
votes
1answer
59 views

GetProcAdress returns always zero

I encountered a really mysterious problem. Using the function GetProcAddress, I always get zero. Debug.Print(GetProcAddress(LoadLibraryExA("kernel32"), "CreateProcess")) This line returns always ...
2
votes
1answer
373 views

status failed for LdrLoadDll

I'am trying to work-out the LdrLoadDll function and am having no luck with that..i also googled for some examples there is no much documentation or correct example about this.I know what it exactly ...
2
votes
3answers
685 views

How do you call Win32 API functions from inline assembler?

Would somebody please tell me whats wrong with this code I am just calling a Sleep function from the kernel32.dll What's wrong? I am using Visual Studio 2008. Any help would be grateful. Thank you ...
2
votes
1answer
427 views

how to get Processor ID using Kernel32.dll

I want to know if there is an Entry point for kernel32.dll , that is related to any processor data (ID , Serial , etc ... ) and I tried to Google it but I didn't find good results . Note: I already ...
1
vote
4answers
218 views

ReadFile Kernel32 Maximum Buffer Size

I am reading directly from a disk using C# and pinvoking the kernel32 ReadFile method. I notice that with larger reads (currently only reading in single chunks) the buffer size is out of range. Does ...
1
vote
1answer
28 views

Best method to access the Console object in a Windows Forms application?

I am attempting to make my GUI app have a CLI frontend (not the opposite). I have been able to process arguments without an issue (thanks to System.Environment.GetCommandLineArgs()), but I am curious ...
1
vote
1answer
149 views

GetProductInfo on an XP system

GetProductInfo(API function) seems to crash on XP Professional, while it works perfectly on Windows 7 Ultimate. What is an alternative to it?
1
vote
1answer
297 views

Excel VBA: How pass a string as pointer to a procedure to append the string?

I want to pass a String as in/out parameter to a procedure. I know this is not like VBA usually works but this is because of a special case. I have an already existing code generator tool - generating ...
1
vote
2answers
154 views

Setting custom interface written in C++/CLI to null may causes program to crash

I have a custom .Net interface written in C++/CLI: public interface class IBackgroundExtractor { }; In my C# application, the interface is used by: private IBackgroundExtractor extractor = null; ...
1
vote
3answers
124 views

Are there c# versions available of common DLLImport declarations?

There are many win32 api calls / libraries like kernel32 or shell32 that may be usefull to call from c#. A common method of using them is looking up the method definition on the pinvoke.net website, ...
1
vote
3answers
1k views

Unable to find an entry point named 'InterlockedIncrement' in DLL 'kernel32.dll' - VS2005@Win7 64 bit

I have a problem with my Visual Studio 2005 C# project. I have been using it under Windows XP, since Monday. Then my laptop broke down and on my new one I have Windows 7 64 bit and I am still using VS ...
1
vote
2answers
323 views

setting the system time with C#.NET without using kernel32.dll

Is there a way to set the system time in C#.NET without using kernel32.dll? I'm on a 64 bit system and calling the set time function seems to return "false" for me.
1
vote
1answer
189 views

Example of System call

Where can you find a list or example of system calls which execute in kernel mode on Windows NT 5.1?
1
vote
3answers
827 views

Unresolved external symbols in compiling 32 bit application in Windows 64

So I am trying to compile legacy app from 32 bit to 64 bit.. I re-compiled all of the libs it used and made it look into WIN SDK6.0A x64 bit for libs.. I am using: Visual Studio Professional ...
1
vote
1answer
77 views

Why does handling cancel closing make my .NET application crash?

I used the answer from this thread: http://stackoverflow.com/questions/474679/capture-console-exit-c Whenever I close the console, I get a "--- has stopped working." from Windows 7. Any idea?
1
vote
2answers
358 views

what is the difference between ZwOpenFile and NtOpenFile?

ZWOpenFile and NtOpenFile are both the functions of nt dll..ZwOpenFile is implemented as same as NtopenFile..but I dont understand why ZWopenFile is included in nt dll function.Can anyone please ...
1
vote
4answers
946 views

C# - Possible to use IOCTL

I'm trying to code for a Point Of Sale system which allows for a "Cash Drawer" attachment. Code is provided in the manual for opening the cash drawer (in C++ using IOCTL). Since I am coding in C# ...
1
vote
2answers
173 views

Why does my windows console application leak when idling? (And why does the smoking gun point at kernel32.dll??)

I have a windows multi-threded console application that appears to be leaking approximately 4kb private memory every minute or so. In an effort to localise the leak, I have gradually suspended each ...
0
votes
0answers
16 views

Creating a windows named pipe with security permissions

I want to create a named pipe from a java process and give full permissions to a user from different security group to connect to the pipe and use it. The way i create the pipe is: INSTANCE = ...
0
votes
0answers
101 views

Visual C++ Windows Forms Application kernelbase.dll error

Well i'm new at Visual C++. this is my first program. so i share it with few people.it works perfectly for few people, but many of them get stopped working Description: Stopped working Problem ...
0
votes
1answer
129 views

List of Kernel32.dll versions that ship with various Windows versions?

I'm trying to find out the true Windows version. For some reason my Wise installer sometimes reports the an XP version # on Windows 7. One solution is to look at the kernel32.dll version as mentioned ...
0
votes
0answers
55 views

Run a thread within DLL initialization routine (Win32 assembler)

I need to create (and run!) a thread within (and not outside) the initialization procedure of a specific dll (LoadLibrary). But... "During process startup and DLL initialization routines, new ...
0
votes
3answers
94 views

Win32 Kernel32.CreateThread from assembler

Hi to all.... //////////////////////////////////////////// PUSH 214D84DD // thread id address out PUSH 0 PUSH 0 PUSH 214D84CD // my function address to run in the thread PUSH 0 PUSH 0 CALL DWORD ...
0
votes
1answer
155 views

required root permissions to an android application

I am writing an application to access the many of the system device nodes. To open the device nodes, I wrote native methods, When I am trying to execute it, I am unable to open the device node as ...
0
votes
0answers
61 views

JNA - how can i set timeout for read/write from/to pipe operations

I create a pipe using 'CreateNamedPipeA' method of the kernel32 library. How can i set, in java, a timeout for read from pipe and write to pipe operations. I tried to do the following but it does ...
0
votes
1answer
114 views

How to create exported functions in Mono.Cecil?

What am I doing wrong? I'm trying to create an exported function of LoadLibraryA and inject it into an assembly. TypeReference stringType = asm.MainModule.Import(typeof(String)); TypeReference ...
0
votes
2answers
247 views

Windows CreateFile in C# Returns Invalid Handle

I am trying to invoke the CreateFile method from Kernel32.dll in a C# application, and it is returning an invalid handle everytime. I've looked all over and can't find a solution to this problem. Here ...
0
votes
2answers
140 views

How to remote control a cmd.exe process in C#

I'm really stuck with a problem (for 7 days now) and before I go crazy I thought I'll just ask for advice. Want I want to do is basically to start and remote control a cmd.exe process. However the ...
0
votes
2answers
88 views

.NET mscorlib.dll and Kernel32.dll relation

As far as I understand it, applications that want input/output functionalities must speak to the Kernel32.dll which in turns sends the request on to the kernel itself. In .NET however, the console ...
0
votes
1answer
223 views

PInvokeStackImbalance was detected on WriteFile kernel32.dll

After i migrated from Framework 2 to framework 4, i get an error when i run the WriteFile function. [DllImport("kernel32.dll")] public static extern bool WriteFile(SafeHandle hFile, ...
0
votes
2answers
293 views

ASLR and Windows System DLLs for non-aware executables?

From a Microsoft article: Address Space Layout Randomization (ASLR) ASLR moves executable images into random locations when a system boots, making it harder for exploit code to operate ...
0
votes
1answer
254 views

Why does ReadProcessMemory always return zeros?

Given the code below, ReadProcessMemory always returns an array of zeros. I'm trying to locate a string (which may be numeric) in a running process and identify all the locations where that string ...
0
votes
0answers
109 views

(Desperate for help!) How to link WINE's kernel32.dll.so with XCode 3.2 framework?

I can't take this anymore, somebody please tell me how to do this... I created a test framework which uses the GetCurrentDirectoryA() function defined in WINE's windows.h, set the headers and ...
0
votes
0answers
117 views

Dynamic API Call

I wanted to use some functions of the kernel32.dll and couln't define more than 5 functions or my AntiVirus program pops up for no reason(Avira). So I thought that I could use a trick and call the API ...
0
votes
1answer
296 views

EnumResourceNames issue - unknown error

I was recently working with resources from secondary libraries/binary modules and encountered a strange error. I have two native WinAPI references: [DllImport("kernel32.dll", SetLastError = true)] ...
0
votes
1answer
86 views

Getting the symbols of kernel32

Is the Symbol Server the only way to get the symbols of kernel32.dll in C++/Windows? thanks:)
0
votes
1answer
718 views

Send data to LPT on windows XP

I want to send data to a printer on LPT1 and i trying exactly this but my CreateFile returns -1 (The system cannot find the file specified.Exception from HRESULT:0x80070002). How to open LPT1 port ...
0
votes
1answer
91 views

VS2008 debugger and kernel32.dll

I've been just debugging a process (in C++/windows) which uses "GetThreadContext" which is in kernel32.dll. I noticed that I could get it's address with unsigned long address = (unsigned ...
0
votes
2answers
800 views

VB.NET - Calling Kernel32.DLL's Wow64DisableWow64FsRedirection

Looking at Microsoft's page on Wow64DisableWow64FsRedirection, I see some C code. What if you want to call this function and it's revert from VB.net? So far I have done this: ...
0
votes
1answer
919 views

Faulting application <app_name>, version <version number>,faulting module kernel32.dll

I have one windows application built using C# and .net framework 2.0 and its installed on Windows Server 2003. I have tested application on my machine and it works perfectly on my machine. Only ...
0
votes
2answers
855 views

C# EntryPointNotFoundException Unable to find an entry point named 'SetDllDirectory' in DLL 'kernel32.dll'

I am trying to use several functions from kernal32.dll. However, when my application tries to call the first function it throws an EntryPointNotFoundException Unable to find an entry point named ...

1 2