Chocolatey离线(offline)安装流程

打印 上一主题 下一主题

主题 976|帖子 976|积分 2928

首先要确定你能下载什么版本的chocolatey,详细版本对照参考该网址:
Chocolatey Software Docs | Chocolatey Components Dependencies and Support Lifecycle
从这个网站可以找到安装和卸载的详细说明。
Chocolatey Software Docs | Setup / Install
详细步调如下:
步调 1:下载 Chocolatey 安装包

Chocolatey Software | Chocolatey 2.3.0

点击左下角的download下载你想要的副本,记着你的安装路径。
步调2:转移文件位置

为了制止C盘爆满,将下载的 .nupkg 文件复制到离线机器上的某个目录。例如,将文件复制到 C:\offline-choco 目录。博主转移到了D:\user-unity3D\user-chocolatey。
步调3:创建和运行安装脚本

①将你提供的脚本生存为一个.ps1文件,例如 install_choco_offline.ps1。
  1. # Download and install Chocolatey nupkg from an OData (HTTP/HTTPS) url such as Artifactory, Nexus, ProGet (all of these are recommended for organizational use), or Chocolatey.Server (great for smaller organizations and POCs)
  2. # This is where you see the top level API - with xml to Packages - should look nearly the same as https://community.chocolatey.org/api/v2/
  3. # If you are using Nexus, always add the trailing slash or it won't work
  4. # === EDIT HERE ===
  5. $packageRepo = '<INSERT ODATA REPO URL>'
  6. # If the above $packageRepo repository requires authentication, add the username and password here. Otherwise these leave these as empty strings.
  7. $repoUsername = ''    # this must be empty is NOT using authentication
  8. $repoPassword = ''    # this must be empty if NOT using authentication
  9. # Determine unzipping method
  10. # 7zip is the most compatible, but you need an internally hosted 7za.exe.
  11. # Make sure the version matches for the arguments as well.
  12. # Built-in does not work with Server Core, but if you have PowerShell 5
  13. # it uses Expand-Archive instead of COM
  14. $unzipMethod = 'builtin'
  15. #$unzipMethod = '7zip'
  16. #$7zipUrl = 'https://chocolatey.org/7za.exe' (download this file, host internally, and update this to internal)
  17. # === ENVIRONMENT VARIABLES YOU CAN SET ===
  18. # Prior to running this script, in a PowerShell session, you can set the
  19. # following environment variables and it will affect the output
  20. # - $env:ChocolateyEnvironmentDebug = 'true' # see output
  21. # - $env:chocolateyIgnoreProxy = 'true' # ignore proxy
  22. # - $env:chocolateyProxyLocation = '' # explicit proxy
  23. # - $env:chocolateyProxyUser = '' # explicit proxy user name (optional)
  24. # - $env:chocolateyProxyPassword = '' # explicit proxy password (optional)
  25. # === NO NEED TO EDIT ANYTHING BELOW THIS LINE ===
  26. # Ensure we can run everything
  27. Set-ExecutionPolicy Bypass -Scope Process -Force
  28. ;
  29. # If the repository requires authentication, create the Credential object
  30. if ((-not [string]::IsNullOrEmpty($repoUsername)) -and (-not [string]::IsNullOrEmpty($repoPassword))) {
  31.     $securePassword = ConvertTo-SecureString $repoPassword -AsPlainText -Force
  32.     $repoCreds = New-Object System.Management.Automation.PSCredential ($repoUsername, $securePassword)
  33. }
  34. $searchUrl = ($packageRepo.Trim('/'), 'Packages()?$filter=(Id%20eq%20%27chocolatey%27)%20and%20IsLatestVersion') -join '/'
  35. # Reroute TEMP to a local location
  36. New-Item $env:ALLUSERSPROFILE\choco-cache -ItemType Directory -Force
  37. $env:TEMP = "$env:ALLUSERSPROFILE\choco-cache"
  38. $localChocolateyPackageFilePath = Join-Path $env:TEMP 'chocolatey.nupkg'
  39. $ChocoInstallPath = "$($env:SystemDrive)\ProgramData\Chocolatey\bin"
  40. $env:ChocolateyInstall = "$($env:SystemDrive)\ProgramData\Chocolatey"
  41. $env:Path += ";$ChocoInstallPath"
  42. $DebugPreference = 'Continue';
  43. # PowerShell v2/3 caches the output stream. Then it throws errors due
  44. # to the FileStream not being what is expected. Fixes "The OS handle's
  45. # position is not what FileStream expected. Do not use a handle
  46. # simultaneously in one FileStream and in Win32 code or another
  47. # FileStream."
  48. function Fix-PowerShellOutputRedirectionBug {
  49.   $poshMajorVerion = $PSVersionTable.PSVersion.Major
  50.   if ($poshMajorVerion -lt 4) {
  51.     try{
  52.       # http://www.leeholmes.com/blog/2008/07/30/workaround-the-os-handles-position-is-not-what-filestream-expected/ plus comments
  53.       $bindingFlags = [Reflection.BindingFlags] "Instance,NonPublic,GetField"
  54.       $objectRef = $host.GetType().GetField("externalHostRef", $bindingFlags).GetValue($host)
  55.       $bindingFlags = [Reflection.BindingFlags] "Instance,NonPublic,GetProperty"
  56.       $consoleHost = $objectRef.GetType().GetProperty("Value", $bindingFlags).GetValue($objectRef, @())
  57.       [void] $consoleHost.GetType().GetProperty("IsStandardOutputRedirected", $bindingFlags).GetValue($consoleHost, @())
  58.       $bindingFlags = [Reflection.BindingFlags] "Instance,NonPublic,GetField"
  59.       $field = $consoleHost.GetType().GetField("standardOutputWriter", $bindingFlags)
  60.       $field.SetValue($consoleHost, [Console]::Out)
  61.       [void] $consoleHost.GetType().GetProperty("IsStandardErrorRedirected", $bindingFlags).GetValue($consoleHost, @())
  62.       $field2 = $consoleHost.GetType().GetField("standardErrorWriter", $bindingFlags)
  63.       $field2.SetValue($consoleHost, [Console]::Error)
  64.     } catch {
  65.       Write-Output 'Unable to apply redirection fix.'
  66.     }
  67.   }
  68. }
  69. Fix-PowerShellOutputRedirectionBug
  70. # Attempt to set highest encryption available for SecurityProtocol.
  71. # PowerShell will not set this by default (until maybe .NET 4.6.x). This
  72. # will typically produce a message for PowerShell v2 (just an info
  73. # message though)
  74. try {
  75.   # Set TLS 1.2 (3072), then TLS 1.1 (768), then TLS 1.0 (192), finally SSL 3.0 (48)
  76.   # Use integers because the enumeration values for TLS 1.2 and TLS 1.1 won't
  77.   # exist in .NET 4.0, even though they are addressable if .NET 4.5+ is
  78.   # installed (.NET 4.5 is an in-place upgrade).
  79.   [System.Net.ServicePointManager]::SecurityProtocol = 3072 -bor 768 -bor 192 -bor 48
  80. } catch {
  81.   Write-Output 'Unable to set PowerShell to use TLS 1.2 and TLS 1.1 due to old .NET Framework installed. If you see underlying connection closed or trust errors, you may need to upgrade to .NET Framework 4.5+ and PowerShell v3+.'
  82. }
  83. function Get-Downloader {
  84. param (
  85.   [string]$url
  86. )
  87.   $downloader = new-object System.Net.WebClient
  88.   $defaultCreds = [System.Net.CredentialCache]::DefaultCredentials
  89.   if (Test-Path -Path variable:repoCreds) {
  90.     Write-Debug "Using provided repository authentication credentials."
  91.     $downloader.Credentials = $repoCreds
  92.   } elseif ($defaultCreds -ne $null) {
  93.     Write-Debug "Using default repository authentication credentials."
  94.     $downloader.Credentials = $defaultCreds
  95.   }
  96.   $ignoreProxy = $env:chocolateyIgnoreProxy
  97.   if ($ignoreProxy -ne $null -and $ignoreProxy -eq 'true') {
  98.     Write-Debug 'Explicitly bypassing proxy due to user environment variable.'
  99.     $downloader.Proxy = [System.Net.GlobalProxySelection]::GetEmptyWebProxy()
  100.   } else {
  101.     # check if a proxy is required
  102.     $explicitProxy = $env:chocolateyProxyLocation
  103.     $explicitProxyUser = $env:chocolateyProxyUser
  104.     $explicitProxyPassword = $env:chocolateyProxyPassword
  105.     if ($explicitProxy -ne $null -and $explicitProxy -ne '') {
  106.       # explicit proxy
  107.       $proxy = New-Object System.Net.WebProxy($explicitProxy, $true)
  108.       if ($explicitProxyPassword -ne $null -and $explicitProxyPassword -ne '') {
  109.         $passwd = ConvertTo-SecureString $explicitProxyPassword -AsPlainText -Force
  110.         $proxy.Credentials = New-Object System.Management.Automation.PSCredential ($explicitProxyUser, $passwd)
  111.       }
  112.       Write-Debug "Using explicit proxy server '$explicitProxy'."
  113.       $downloader.Proxy = $proxy
  114.     } elseif (!$downloader.Proxy.IsBypassed($url)) {
  115.       # system proxy (pass through)
  116.       $creds = $defaultCreds
  117.       if ($creds -eq $null) {
  118.         Write-Debug 'Default credentials were null. Attempting backup method'
  119.         $cred = get-credential
  120.         $creds = $cred.GetNetworkCredential();
  121.       }
  122.       $proxyaddress = $downloader.Proxy.GetProxy($url).Authority
  123.       Write-Debug "Using system proxy server '$proxyaddress'."
  124.       $proxy = New-Object System.Net.WebProxy($proxyaddress)
  125.       $proxy.Credentials = $creds
  126.       $downloader.Proxy = $proxy
  127.     }
  128.   }
  129.   return $downloader
  130. }
  131. function Download-File {
  132. param (
  133.   [string]$url,
  134.   [string]$file
  135. )
  136.   $downloader = Get-Downloader $url
  137.   $downloader.DownloadFile($url, $file)
  138. }
  139. function Download-Package {
  140. param (
  141.   [string]$packageODataSearchUrl,
  142.   [string]$file
  143. )
  144.   $downloader = Get-Downloader $packageODataSearchUrl
  145.   Write-Output "Querying latest package from $packageODataSearchUrl"
  146.   [xml]$pkg = $downloader.DownloadString($packageODataSearchUrl)
  147.   $packageDownloadUrl = $pkg.feed.entry.content.src
  148.   Write-Output "Downloading $packageDownloadUrl to $file"
  149.   $downloader.DownloadFile($packageDownloadUrl, $file)
  150. }
  151. function Install-ChocolateyFromPackage {
  152. param (
  153.   [string]$chocolateyPackageFilePath = ''
  154. )
  155.   if ($chocolateyPackageFilePath -eq $null -or $chocolateyPackageFilePath -eq '') {
  156.     throw "You must specify a local package to run the local install."
  157.   }
  158.   if (!(Test-Path($chocolateyPackageFilePath))) {
  159.     throw "No file exists at $chocolateyPackageFilePath"
  160.   }
  161.   $chocTempDir = Join-Path $env:TEMP "chocolatey"
  162.   $tempDir = Join-Path $chocTempDir "chocInstall"
  163.   if (![System.IO.Directory]::Exists($tempDir)) {[System.IO.Directory]::CreateDirectory($tempDir)}
  164.   $file = Join-Path $tempDir "chocolatey.zip"
  165.   Copy-Item $chocolateyPackageFilePath $file -Force
  166.   # unzip the package
  167.   Write-Output "Extracting $file to $tempDir..."
  168.   if ($unzipMethod -eq '7zip') {
  169.     $7zaExe = Join-Path $tempDir '7za.exe'
  170.     if (-Not (Test-Path ($7zaExe))) {
  171.       Write-Output 'Downloading 7-Zip commandline tool prior to extraction.'
  172.       # download 7zip
  173.       Download-File $7zipUrl "$7zaExe"
  174.     }
  175.     $params = "x -o`"$tempDir`" -bd -y `"$file`""
  176.     # use more robust Process as compared to Start-Process -Wait (which doesn't
  177.     # wait for the process to finish in PowerShell v3)
  178.     $process = New-Object System.Diagnostics.Process
  179.     $process.StartInfo = New-Object System.Diagnostics.ProcessStartInfo($7zaExe, $params)
  180.     $process.StartInfo.RedirectStandardOutput = $true
  181.     $process.StartInfo.UseShellExecute = $false
  182.     $process.StartInfo.WindowStyle = [System.Diagnostics.ProcessWindowStyle]::Hidden
  183.     $process.Start() | Out-Null
  184.     $process.BeginOutputReadLine()
  185.     $process.WaitForExit()
  186.     $exitCode = $process.ExitCode
  187.     $process.Dispose()
  188.     $errorMessage = "Unable to unzip package using 7zip. Perhaps try setting `$env:chocolateyUseWindowsCompression = 'true' and call install again. Error:"
  189.     switch ($exitCode) {
  190.       0 { break }
  191.       1 { throw "$errorMessage Some files could not be extracted" }
  192.       2 { throw "$errorMessage 7-Zip encountered a fatal error while extracting the files" }
  193.       7 { throw "$errorMessage 7-Zip command line error" }
  194.       8 { throw "$errorMessage 7-Zip out of memory" }
  195.       255 { throw "$errorMessage Extraction cancelled by the user" }
  196.       default { throw "$errorMessage 7-Zip signalled an unknown error (code $exitCode)" }
  197.     }
  198.   } else {
  199.     if ($PSVersionTable.PSVersion.Major -lt 5) {
  200.       try {
  201.         $shellApplication = new-object -com shell.application
  202.         $zipPackage = $shellApplication.NameSpace($file)
  203.         $destinationFolder = $shellApplication.NameSpace($tempDir)
  204.         $destinationFolder.CopyHere($zipPackage.Items(),0x10)
  205.       } catch {
  206.         throw "Unable to unzip package using built-in compression. Set `$env:chocolateyUseWindowsCompression = 'false' and call install again to use 7zip to unzip. Error: `n $_"
  207.       }
  208.     } else {
  209.       Expand-Archive -Path "$file" -DestinationPath "$tempDir" -Force
  210.     }
  211.   }
  212.   # Call Chocolatey install
  213.   Write-Output 'Installing chocolatey on this machine'
  214.   $toolsFolder = Join-Path $tempDir "tools"
  215.   $chocInstallPS1 = Join-Path $toolsFolder "chocolateyInstall.ps1"
  216.   & $chocInstallPS1
  217.   Write-Output 'Ensuring chocolatey commands are on the path'
  218.   $chocInstallVariableName = 'ChocolateyInstall'
  219.   $chocoPath = [Environment]::GetEnvironmentVariable($chocInstallVariableName)
  220.   if ($chocoPath -eq $null -or $chocoPath -eq '') {
  221.     $chocoPath = 'C:\ProgramData\Chocolatey'
  222.   }
  223.   $chocoExePath = Join-Path $chocoPath 'bin'
  224.   if ($($env:Path).ToLower().Contains($($chocoExePath).ToLower()) -eq $false) {
  225.     $env:Path = [Environment]::GetEnvironmentVariable('Path',[System.EnvironmentVariableTarget]::Machine);
  226.   }
  227.   Write-Output 'Ensuring chocolatey.nupkg is in the lib folder'
  228.   $chocoPkgDir = Join-Path $chocoPath 'lib\chocolatey'
  229.   $nupkg = Join-Path $chocoPkgDir 'chocolatey.nupkg'
  230.   if (!(Test-Path $nupkg)) {
  231.     Write-Output 'Copying chocolatey.nupkg is in the lib folder'
  232.     if (![System.IO.Directory]::Exists($chocoPkgDir)) { [System.IO.Directory]::CreateDirectory($chocoPkgDir); }
  233.     Copy-Item "$file" "$nupkg" -Force -ErrorAction SilentlyContinue
  234.   }
  235. }
  236. # Idempotence - do not install Chocolatey if it is already installed
  237. if (!(Test-Path $ChocoInstallPath)) {
  238.   # download the package to the local path
  239.   if (!(Test-Path $localChocolateyPackageFilePath)) {
  240.     Download-Package $searchUrl $localChocolateyPackageFilePath
  241.   }
  242.   # Install Chocolatey
  243.   Install-ChocolateyFromPackage $localChocolateyPackageFilePath
  244. }
复制代码


  • 修改$localChocolateyPackageFilePath = ‘你的安装路径’,这个在46行。例如我修改成:$localChocolateyPackageFilePath = ‘D:\user-unity3D\user-chocolatey\chocolatey.2.3.0.nupkg’
  • 注释掉:Download-Package $searchUrl $localChocolateyPackageFilePath。这个在277行。
②打开离线机器上的powershell(以管理员身份运行)
按Windows键快捷输入powershell,右键管理员运行。实行:iex "你的ps1文件生存路径\install_choco_offline.ps1"
  1. iex "D:\user-unity3D\user-chocolatey\install_choco_offline.ps1"
复制代码
大概5-10s后出现如下图所示内容,则安装完毕:

这样就安装完毕啦!
可以通过如下命令检查是否安装成功:

  1. choco -v
复制代码
输出版本号:

也可以通过如下命令输出安装路径:

  1. [System.Environment]::GetEnvironmentVariable('ChocolateyInstall', [System.EnvironmentVariableTarget]::Machine)
复制代码
输出路径则成功:

可能出现的问题:

尽管你已经以管理员身份运行PowerShell,实行策略仍然可能阻止脚本的运行。
暂时设置实行策略


  • 在管理员模式下的PowerShell窗口中,输入以下命令来暂时绕过实行策略,然后再实行上面的iex命令:
    1. Set-ExecutionPolicy Bypass -Scope Process -Force
    复制代码

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

老婆出轨

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表