How can I know the OS type XP profession ox XP embedded

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear Sir:

I have a question.
How can I know the OS type XP profession ox XP embedded?


David
 
sorry, this is the right thread:

how about test the env var %RUNTIMESKUCODE%

Zirong
 
Zirong:

How to test the env var.
And ,
Can I see the var directly


David
 
I am very surprised by your question. anyway,
in a .bat script, you can use:
---------------
if /I "%RUNTIMESKUCODE%"=="" (
echo XP Professional
) else (
echo XP embedded
)

in C, getenv
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top