1.

Solve : REG ADD Batch?

Answer» <html><body><p>Quote from: nothlit on October 27, 2010, 06:37:17 PM</p><blockquote>If left as CMD it goes to what I would consider the normal global run without the Wow6432Node. <br/><br/>Would anyone know why?<br/><br/>Is it because the converter is 32bit and the OS is 64bit? Just trying to make sense of it. Thanks.<br/></blockquote> <br/>You do know there are two cmd.exe versions <a href="https://interviewquestions.tuteehub.com/tag/present-1163722" style="font-weight:bold;" target="_blank" title="Click to know more about PRESENT">PRESENT</a> in 64 <a href="https://interviewquestions.tuteehub.com/tag/bit-239224" style="font-weight:bold;" target="_blank" title="Click to know more about BIT">BIT</a> Windows? One 64 bit and one 32 bit?<br/><br/>64 bit... %windir%\system32\cmd.exe<br/>32 bit... %windir%\SysWoW64\cmd.exe<br/><br/>Below you can see I go from 64 to 32 bit cmd and back again. You can see how to check the version...<br/><br/> Code: <a>[Select]</a><a href="https://interviewquestions.tuteehub.com/tag/c-3540" style="font-weight:bold;" target="_blank" title="Click to know more about C">C</a>:\Users\Mike&gt;%windir%\system32\cmd.exe<br/>Microsoft Windows [Version 6.1.7600]<br/>Copyright (c) 2009 Microsoft Corporation.  All rights reserved.<br/><br/>C:\Users\Mike&gt;echo %programfiles%<br/>C:\Program Files<br/><br/>C:\Users\Mike&gt;%windir%\syswow64\cmd.exe<br/>Microsoft Windows [Version 6.1.7600]<br/>Copyright (c) 2009 Microsoft Corporation.  All rights reserved.<br/><br/>C:\Users\Mike&gt;echo %programfiles%<br/>C:\Program Files (x86)<br/><br/>C:\Users\Mike&gt;exit<br/><br/>C:\Users\Mike&gt;echo %programfiles%<br/>C:\Program Files<br/><a href="http://www.tipandtrick.net/2008/how-to-open-and-run-32-bit-command-prompt-in-64-bit-x64-windows/">http://www.tipandtrick.net/2008/how-to-open-and-run-32-bit-command-prompt-in-64-bit-x64-windows/</a><br/><br/>Thanks for that Salmon <a href="https://interviewquestions.tuteehub.com/tag/trout-661901" style="font-weight:bold;" target="_blank" title="Click to know more about TROUT">TROUT</a>. Good information, I had run across the separation before that windows had the two environments but during this whole <a href="https://interviewquestions.tuteehub.com/tag/thing-25656" style="font-weight:bold;" target="_blank" title="Click to know more about THING">THING</a> I really didn't think about it. Live and learn I suppose.</body></html>


Discussion

No Comment Found