2 followers Follow
0
Avatar

Install .msi through task menu

Is it possible to develop a means to install a .msi file through "task" menu?

 

Raynard Sims

Please sign in to leave a comment.

1 comment

0
Avatar

You could do it now via a PowerShell script.

```
$source = "http://example.com/path/to/installer.msi"
$dest = "$PSScriptRoot\installer.msi"

$client = New-Object System.Net.WebClient
$client.DownloadFile($source, $dest)

msiexec /i "$PSScriptRoot\installer.msi" /quiet
```

Ryan Frame 0 votes
Comment actions Permalink