1

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.

4

1 に答える 1

1

すべてのコマンドライン スイッチについて心配する必要はありません。これは、WMI と PowerShell を使用して実行できます。

$product= [WMICLASS]"\\.\ROOT\CIMV2:win32_Product"
$product.Install("c:\temp\windowsazure-powershell.0.8.3.msi")
于 2014-05-31T17:05:14.967 に答える