Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What command could I use to enable NTVDM?

Tags:

ntvdm

I try to enable windows NTVDM feature to run 16-bit application on my windows 8 virtual machine .
I know how to enable NTVDM by windows control panel .
But I have no idea how to use command (wmic ? vb script ? ) to enable it in my batch file.
I appreciate your help , thanks .

like image 451
user2740605 Avatar asked Sep 02 '13 17:09

user2740605


People also ask

How do I fix NTVDM exe has stopped working?

To troubleshoot this issue, run System File Checker (SFC) scan on your computer. In addition, ensure that your computer has all the latest updates. Visit the support section of your computer manufacturer's website and check for all the updates.

Where can I find NTVDM exe?

Ntvdm.exe is located in the C:\Windows\System32 folder.

How do I run 16 bit programs on Windows 10 64 bit?

To do so, press Windows key + R, then type: optionalfeatures.exe then hit Enter. Expand Legacy Components then check off NTVDM and click OK. The add feature wizard for NTVDM will launch. Click Install this feature to complete the installation.

What is the file NTVDM exe?

What is Ntvdm.exe? Ntvdm.exe is a legitimate file. It is also known as Windows NT Dos Virtual Machine which belongs to Microsoft Windows Operating Systems. It is used to provide an Environment for 16 bit process to execute on a 32 bit platform. It is commonly stored in C:\Windows\System32.


1 Answers

Windows 8.1

To enable the Feature type:

dism /online /enable-feature /all /featurename:NTVDM

To disable the Feature type:

dism /online /disable-feature /featurename:NTVDM
like image 185
N-iceman Avatar answered Nov 14 '22 05:11

N-iceman