chocolateyInstall.ps1

reup of chocolateyInstall.ps1
This commit is contained in:
Saad 2024-04-16 15:29:43 +02:00
parent 570c24a899
commit f83e4a1580
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
$packageArgs =@{
packageName = 'R.Studio'
fileType = 'EXE'
silentArgs = '/S'
validExitCodes = @(0)
url64bit = 'https://download1.rstudio.org/electron/windows/RStudio-2023.12.1-402.exe'
checksumType64 = 'sha256'
checksum64 = 'd3c03c42a42c9b5cd4f3d72a0cfc0859f0099b8199af842da762b0584ab4bea0'
}
Install-ChocolateyPackage @packageArgs