I know disable warning in vc++ with #pragma warning(disable, xxxx)
how can I disable assembling & linker warning with command line with ml and link16.
you can get all the ML and LINK switches by using /?
ML /?
LINK /?
not sure if you can disable warnings altogether
but, you can redirect the output to a text file
ML ...... >SomeFile.txt
LINK ....... >>SomeFile.txt
as for PRAGMA, you might try using that in a resource file
Set Warning Level (http://msdn.microsoft.com/en-us/library/ms937402.aspx)