mirror of
				https://github.com/winfsp/winfsp.git
				synced 2025-10-30 19:48:38 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			513 B
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			513 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
 | |
| 
 | |
| Remove-Item -Force $packageArgs.file
 |