What is the equivalent of this code in PowerShell? -


what equivalent of 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 

 $env:path=$env:path+";d:\oracle\frhome_1\dcm\bin\;d:\oracle\frhome_1\opmn\bin\;d:\oracle\frhome_1" 

ps: should try learn powershell, rather asking equivalent lines of code.


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -