

InterviewSolution
Saved Bookmarks
1. |
Solve : Using the Path in Windows 7 doesn't like (x86)? |
Answer» <html><body><p>Can someone tell me how to add something to the path in a <a href="https://interviewquestions.tuteehub.com/tag/windows-22662" style="font-weight:bold;" target="_blank" title="Click to know more about WINDOWS">WINDOWS</a> 7 (x64) that <a href="https://interviewquestions.tuteehub.com/tag/contains-11473" style="font-weight:bold;" target="_blank" title="Click to know more about CONTAINS">CONTAINS</a> (x86).<br/>It craps out and I cannot find a command to change the contents to 16 bit versions.Here is some more information.<br/>I need to add the Oracle_home variable to the users path and then take it away once they leve the application.<br/>The <a href="https://interviewquestions.tuteehub.com/tag/problem-25530" style="font-weight:bold;" target="_blank" title="Click to know more about PROBLEM">PROBLEM</a> is the existing PATH has "Program <a href="https://interviewquestions.tuteehub.com/tag/files-20889" style="font-weight:bold;" target="_blank" title="Click to know more about FILES">FILES</a> (x86)" in it...and the '(' are causing an error.<br/><br/>REM Setup path for Oracle<br/>if {%DATABASE%}=={ORACLE} (<br/> set OLDPATH=%PATH%<br/> set PATH=%ORACLE_HOME%\bin;%PATH%<br/>)<br/><br/>Well I found the solution on another site.<br/>For all those who are going to have the same problem here it is.<br/><br/>Add <a href="https://interviewquestions.tuteehub.com/tag/quotes-1175233" style="font-weight:bold;" target="_blank" title="Click to know more about QUOTES">QUOTES</a> around the PATH=... statement.<br/><br/>REM Setup path for Oracle<br/>if {%DATABASE%}=={ORACLE} (<br/> set "OLDPATH=%PATH%"<br/> set "PATH=%ORACLE_HOME%\bin;%PATH%"<br/>)<br/><br/>Well done!<br/></p></body></html> | |