我创建了一个PowerShell脚本,询问用户是否要安装Chocolatey然后安装一堆应用程序并移动一些文件。
我在公司网络上使用此功能,遗憾的是,我们使用的代理设置存在问题。当我执行Chocolatey脚本时,它表示出现错误,无法下载该软件包。最烦人的是错误描述是"没有更多数据可用"。因此,在尝试运行脚本的同时,我在后台运行了Wireshark,并被告知该脚本正在尝试直接连接到一个盒子,它不应该存在,这也就是它的原因所在。拒绝。
我被告知解决这个问题,我需要强制脚本离开端口80.我不知道该怎么做,所以正在寻找关于如何实现这一点的建议。
我觉得这就像在某个地方添加:80
一样简单,但是,我已经尝试过了,但没有运气。
#-Setting HTTP/S Proxy's-#
write-host "Configuring local proxy settings"
cscript configs\SetProxy_underscore.vbs
function Install-NeededFor {
param(
[string] $packageName = ''
,[bool] $defaultAnswer = $true
)
if ($packageName -eq '') { return $false }
$yes = '6'
$no = '7'
$msgBoxTimeout='-1'
$defaultAnswerDisplay = 'Yes'
$buttonType = 0x4;
if (!$defaultAnswer) { $defaultAnswerDisplay = 'No'; $buttonType= 0x104; }
$answer = $msgBoxTimeout
try {
$timeout = 10
$question = "Do you need to install $($packageName)? Defaults to `'$defaultAnswerDisplay`' after $timeout seconds"
$msgBox = New-Object -ComObject WScript.Shell
$answer = $msgBox.Popup($question, $timeout, "Install $packageName", $buttonType)
} catch {
}
if ($answer -eq $yes -or ($answer -eq $msgBoxTimeout -and $defaultAnswer -eq $true)) {
write-host "Installing $packageName"
return $true
}
write-host "Not installing $packageName"
return $false
}
#-install chocolatey-#
if (Install-NeededFor 'chocolatey') {
iex ((new-object net.webclient).DownloadString('http://chocolatey.org/install.ps1'))
}
choco install dotnet4.5 -y
cinst nuget.commandline -y
cinst chefdk -y
cinst notepadplusplus -y
cinst vagrant -y
cinst vagrant-winrm-config -y
cinst virtualbox -version 4.3.12 -y
choco install virtualbox -version 4.3.12 -y
cinst atom -y
cinst putty -y
cinst winscp -y
cinst conemu -y
cinst launchy -y
cinst everything -y
choco install git.install -y -params '"/GitAndUnixToolsOnPath"'
choco install git-credential-winstore -y
vagrant plugin install vagrant-berkshelf
vagrant plugin install vagrant-proxyconf
vagrant plugin install vagrant-omnibus
答案 0 :(得分:1)
目前,0.9.9系列似乎不能很好地与代理配合使用 - 请按https://github.com/chocolatey/choco/issues/243了解修复时间和版本。感谢!
您还可以坚持使用0.9.8.33,直到修复程序进入 - 我们甚至可以让您安装旧客户端 - https://github.com/chocolatey/chocolatey.org/issues/162