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
Post a Comment