I'm having problems to create an unattended installation of cmdlets of Azure (It's a msi file, windowsazure-powershell.0.8.3.msi, current version).
How can I know the parameters that installation needs and how I should write it?
In this way?
$msifile= '<path>\windowsazure-powershell.0.8.3.msi'
$arguments= ' /qn /l*v .\options.txt'
Start-Process `
-file $msifile `
-arg $arguments `
-passthru | wait-process
So how can I perform that?
Thanks in advance.