Search found 2 matches

Go to advanced search

by mattvail
27 Jun 2016 16:19
Forum: VLC media player for Windows Troubleshooting
Topic: Automatic updates to the nightly builds?
Replies: 9
Views: 1306

Re: Automatic updates to the nightly builds?

script broke since they added debug builds

need to change line

Code: Select all

$filename = ($response.Links |?{$_.href -match ".7z"} ).href
with

Code: Select all

$filename = ($response.Links |?{$_.href -match "win64.7z"} ).href
by mattvail
23 Jun 2016 20:35
Forum: VLC media player for Windows Troubleshooting
Topic: Automatic updates to the nightly builds?
Replies: 9
Views: 1306

Re: Automatic updates to the nightly builds?

Here's a PowerShell script that should do the trick. Prerequisites: - 7-Zip for extracting (.7z results in a smaller download) - BITS (Background Intelligent Transfer Service) to download the file. This should technically already be a running service in Windows. Import-Module BitsTransfer $7zip = &q...

Go to advanced search