Hi,
I am trying to install a software using powershell in silent mode. But here the requirement is I need to install this in D drive.By default its going there in C drive.
Below is the script which I am running.
Start-Process -FilePath "D:setup.exe" -ArgumentList "/s",/v"/qn INSTALLDIR="D:Programs" -Wait
Start-Process -FilePath "D:setup_x64_16.2.0.exe" -ArgumentList "/s",/v"/qn INSTALLDIR="D:Programs" -Wait
Start-Process -FilePath "Dccsetup.exe" -ArgumentList "/s",/v"/qn INSTALLDIR="D:Programs"
When I run this script getting error like "A positional parameter cannot be passed an argument". How to solve this error and please provide me some inputs to install into D drive.