mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-22 16:33:02 -05:00
15 lines
473 B
PowerShell
15 lines
473 B
PowerShell
$ErrorActionPreference = 'Stop';
|
|
|
|
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
|
|
$fileLocation = @(Get-ChildItem $toolsDir -filter winfsp-*.msi)[0].FullName
|
|
|
|
$packageArgs = @{
|
|
packageName = 'winfsp'
|
|
fileType = 'msi'
|
|
file = $fileLocation
|
|
silentArgs = "/qn /norestart INSTALLLEVEL=1000"
|
|
validExitCodes = @(0, 3010, 1641)
|
|
}
|
|
|
|
Install-ChocolateyInstallPackage @packageArgs
|