Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the equivalent of this code in PowerShell?

@echo off

SET PATH=%PATH%;D:\oracle\FRHome_1\dcm\bin\;D:\oracle\FRHome_1\opmn\BIN\;D:\oracle\FRHome_1

\opmn\BIN

Best regards

share|improve this question

1 Answer

up vote 1 down vote accepted
 $env:PATH=$env:PATH+";D:\oracle\FRHome_1\dcm\bin\;D:\oracle\FRHome_1\opmn\BIN\;D:\oracle\FRHome_1"

PS: You should try to learn some Powershell, rather than just asking for equivalent lines of code.

share|improve this answer
Thanks man .. what about "@echo off"? – Mahmoud AL-saadi Oct 9 '11 at 7:11
@MahmoudAL-saadi - Do you know what `@echo off does? If not, I recommend you to learn about it, and see if what it solves is needed in Powershell or not. – manojlds Oct 9 '11 at 7:13
@manojlds - I would argue that asking for equivalents is learning. Albeit an inefficient way. – Preet Sangha Oct 9 '11 at 7:14
@PreetSangha - If you keep converting lines ( this based on his another question just few minutes back ), you only do the same thing you did in bat in powershell, with just the syntax changed. The whole script might be written differently in Powershll. – manojlds Oct 9 '11 at 7:17
am learning .. i finished my code .. just the things I did't find the answer for it its written here – Mahmoud AL-saadi Oct 9 '11 at 7:20
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.