P
Paul
I tried running update again with no luck. Also, the 8200
has a yellow triangle with a question mark on the bottom
right hand side of the screen from time to time. I tried holding
the mouse over it and clicking it to see what it was but neither
worked.
I checked device manager and it was all good.
I searched again for ngen.exe, this is what I have:
C:\WINDOWS\ Prefetch executequeueditems
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\ngen.exe executequeueditems
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ngen.exe executequeueditems
C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\ngen.exe executequeueditems
I open up the command prompt and did the first one:
It came back with this:
Display the ngen state
ngen executeQueuedItems [1:2:3]
Executes queued complilation jobs.
If priority is not specified all queued compilation jobs are done.
If priority is specified all queued compilation jobs with greater or equal
prority than the specified are done. <short form: eqi>
negen queue [pause: continue: status]
Allows the user to pause and continue the NGen Service, and to
query its status.
Scenarios:
/Debug - Generate images that can be that can be used under a debugger
/Profile - Generate images that can be that can be used under a profiler
- Generate the minimal number of native images
required by this scenario
Config:
/ExConFig:<path to exe> - Use the configuration of the specified
/AppBase:<path to appbase directory> - Use the specified directory as
the appbase
Thoughts/Suggestions
Robert
Your first result, suggests the first item on the command
line was ignored, and the Command Prompt window tried to execute
"executequeueditems" instead.
There should be only one space character in the command line. It's
not like the path has a space in it.
C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\ngen.exe executequeueditems
It the path had a space character, you could try
surrounding the command portion in double quotes, like this.
"C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\ngen.exe" executequeueditems
Some of the program shortcuts are done that way.
There are no spaces at the beginning of the command at all.
The C: portion, you enter that right next to the command prompt.
I don't thing the parameter "executequeueditems" has any
forward or backward slash in front of it, nor any hyphen
character. It should just be the word itself.
Paul