Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I've just had exactly the same message, and struggled for an hour to resolve it, before I had a brainwave and read the error msg ;-).</p> <p>The solution to my problem was simply to add the ".rc" file to my project, and then re-build. Looking back it is fairly obvious, but it had me stumped for a while.</p> <p>Hope this helps.</p> <hr> <p>Edit - 4th Feb Ok, not too sure if I know what your problem is, but the following batch script is how I did it all. Good luck.</p> <pre><code>rem ------------------------------------------------------------------- rem Do all of this from the project directory rem ------------------------------------------------------------------- rem Generate Header and Resource - remove the ReadOnly attrib to "help" it along attrib -r MyModuleTracing.h mc.exe -um MyModuleTracing.xml rem This generates MyModuleTracing.h and MyModuleTracing.rc, add both to your project rem ------------------------------------------------------------------- rem ** Now build the project ** rem ------------------------------------------------------------------- rem Register MyModule Tracing with the system if exist MyModuleTracing.xml ( wevtutil um MyModuleTracing.xml copy MyModuleTracing.xml Release cd Release copy MyModule.dll %SystemRoot%\System32 wevtutil im MyModuleTracing.xml ) rem ------------------------------------------------------------------- rem Do a capture, and also export the results to an XML file. xperf -start MyModuleSession -on [REPLACE_WITH_YOUR_GUID] -f MyModuleSession.etl xperf -on base -f Kernel.etl rem Run the app, wait until exit, and then stop the capture start /wait MyModule.exe xperf -stop xperf -stop MyModuleSession xperf -merge MyModuleSession.etl Kernel.etl MyModuleSessionMerged.etl tracerpt MyModuleSessionMerged.etl -o MyModuleSessionMerged.xml -of XML </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload