This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
As far as I understand, Windows Runtime is the new infrastructure through which Windows exposes its APIs. My question is simple: how can I use that from pure C code? I don't mind writing more code, I just want to understand how things link together. Let's take for example the [...] read more
I am writing a powershell script with robocopy to copy "full" unc/file name paths from a list. The issue I am experiencing is that robocopy appears to be adding a \ to the end of my source paths. I have a C:\temp\list.txt that lists the UNC paths with file names [...] read more
I am trying to identify memory leak in a process(C++ Application) I am using Windbg tool to identify the memory leak. 0:000> !heap -stat -h 02e10000 heap @ 02e10000 group-by: TOTSIZE max-display: 20 size #blocks total ( %) (percent of total busy bytes) 40 95857 - 25615c0 (60.70) 953130 1 [...] read more
I'm trying to understand what the AddressOfEntryPoint in the COFF header. I have a "nothing" .NET exe: class Program { public static void Main() { } } (I've compiled it as an x86 application) The values I get for the standard fields in the COFF header are: COFF - Optional [...] read more
Im currently running the task of putting a start up script that i have on every computer on the network using powershell and this is what i have so far robocopy "S:\03 - Section Folders\04 - SCM\scripts\startupscript.vbs" "$cheese\c$\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup" /r:1 /w:0 so far when i run it i get an [...] read more