Unattended installation of Azure SDK via PowerShell -


i'm having problems create unattended installation of cmdlets of azure (it's msi file, windowsazure-powershell.0.8.3.msi, current version).

how can know parameters installation needs , how should write it?

in 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 perform that?

thanks in advance.

don't worry commandline switches. can using wmi , powershell

$product= [wmiclass]"\\.\root\cimv2:win32_product" $product.install("c:\temp\windowsazure-powershell.0.8.3.msi") 

Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -