

To install theseapplications, simply run the package.

You can create a setup package thatcontains multiple application installers. You can also read here for additional info. The Silent Install Builder allows you to easily install multipleprograms with one click. It will work even if IE Enhanced Security is turned on, thus making it very useful for Windows Server brand-new installations when IE will prevent you from downloading Chrome. Once the Installation File is selected, the Silent Install Builder.
#SILENT INSTALL BUILDER PORTABLE SOFTWARE#
The software offers many possibilities, such as executing commands before and after installation. Specifies command line switches to initiate an unattended (silent) installation. Gobisoft allows the production of software packages to distribute your applications. Well, technically it isn't an one-liner, but it works like it is. Gobisoft is an installation package builder tool for your Linux applications, it builds a self- install package of your application. You can "silently install" Google Chrome on any modern Windows OS with the following Powershell one-liner: $LocalTempDir = $env:TEMP $ChromeInstaller = "ChromeInstaller.exe" (new-object ).DownloadFile('', "$LocalTempDir\$ChromeInstaller") & "$LocalTempDir\$ChromeInstaller" /silent /install $Process2Monitor = "ChromeInstaller" Do Until (!$ProcessesFound) $("Authorization", "Basic " + $credentialsB64) Ĭ:\temp\chrome_installer.exe /silent /install $credentialsB64 = ::ToBase64String($credentialsB64) # our curl command, with basic authentication if $credentials provided

C:\temp is an existing directory that you can access (or just change your $filePath).ensure you are running PowerShell in Administrator mode.The code will call Get-Url and silently execute chrome_installer.exe.Create a ps1, psm1 or simply copy and paste and execute this code block in PowerShell.If you need basic auth, I've provided parameters for that too. If only PowerShell 2.0 had a native one-line curl.įor simplicity, I created my own, which takes a url and downloads the content.
