Skip to content

Commit 232fd06

Browse files
authored
Merge pull request #6601 from morozov/appveyor-wuauserv
Enable Windows Update service on AppVeyor
2 parents dd4601c + ab9d446 commit 232fd06

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.appveyor.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,14 @@ init:
4444

4545
## Install PHP and composer, and run the appropriate composer command
4646
install:
47+
- sc config wuauserv start=auto
48+
- net start wuauserv
4749
- ps: |
4850
# Check if installation is cached
4951
if (!(Test-Path c:\tools\php)) {
50-
appveyor-retry choco install --params '""/InstallDir:C:\tools\php""' --ignore-checksums -y php --version 7.4.27
52+
appveyor-retry choco install --no-progress --params '""/InstallDir:C:\tools\php""' --ignore-checksums -y php --version 7.4.27
5153
# install sqlite
52-
appveyor-retry choco install -y sqlite
54+
appveyor-retry choco install --no-progress -y sqlite
5355
Get-ChildItem -Path c:\tools\php
5456
cd c:\tools\php
5557

0 commit comments

Comments
 (0)