Downloads:
724
Downloads of v 4.7.19.2002-beta:
129
Last Update:
29 Mar 2025
Package Maintainer(s):
Software Author(s):
- ruamuyan
Tags:
uwp bilibiliBiliLite-uwp-x86
This is a prerelease version of BiliLite-uwp-x86.
- 1
- 2
- 3
4.7.19.2002-beta | Updated: 29 Mar 2025
Downloads:
724
Downloads of v 4.7.19.2002-beta:
129
Maintainer(s):
Software Author(s):
- ruamuyan
BiliLite-uwp-x86 4.7.19.2002-beta
This is a prerelease version of BiliLite-uwp-x86.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by ruamuyan. The inclusion of ruamuyan trademark(s), if any, upon this webpage is solely to identify ruamuyan goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install BiliLite-uwp-x86, run the following command from the command line or from PowerShell:
To upgrade BiliLite-uwp-x86, run the following command from the command line or from PowerShell:
To uninstall BiliLite-uwp-x86, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download bililite-uwp-x86 --internalize --version=4.7.19.2002-beta --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade bililite-uwp-x86 -y --source="'INTERNAL REPO URL'" --version="'4.7.19.2002-beta'" --prerelease [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade bililite-uwp-x86 -y --source="'INTERNAL REPO URL'" --version="'4.7.19.2002-beta'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install bililite-uwp-x86
win_chocolatey:
name: bililite-uwp-x86
version: '4.7.19.2002-beta'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'bililite-uwp-x86' do
action :install
source 'INTERNAL REPO URL'
version '4.7.19.2002-beta'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller bililite-uwp-x86
{
Name = "bililite-uwp-x86"
Version = "4.7.19.2002-beta"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'bililite-uwp-x86':
ensure => '4.7.19.2002-beta',
install_options => ['--prerelease'],
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package is exempt from moderation. While it is likely safe for you, there is more risk involved.
Bilibili third-party UWP client third-party release version. Fork from https://github.com/xiaoyaocz/biliuwp-lite.
md5: E254D99A03FD522FB6E64DFC10CA211D | sha1: 99D401F6BA2651B24B818DCB41C3532F4CE6BCF9 | sha256: B29AFCE4783BC3D0E9F52C1A9F111A27BD65B00D74CCFB318E65EAF209A973D4 | sha512: 20F9AB195B855296CF0219F7BA7D13312ACA0A68CF9C934B93D62FB19CE3B24C2D3AC5729AFC888039EE6B1857728DC4289F6D69A4C631BA3321086A0AFD8D33
# Due to Powershell limitations, this script can only be opened with GBK encoding
$PackageId = "5422.502643927C6AD"
$PackageNamePrefix = "{0}_" -f $PackageId
Write-Host "PackageNamePrefix: $PackageNamePrefix"
# ��ȡUWP����������
$PackageFullName = (Get-AppxPackage | Where-Object { $_.PackageFullName -like "$PackageNamePrefix*" }).PackageFullName
Write-Host "PackageFullName: $PackageFullName"
if ($PackageFullName) {
Write-Host "�ҵ� UWP ��: $PackageFullName"
# � UWP ��
Remove-AppxPackage -Package $PackageFullName
Write-Host "UWP �����"
} else {
Write-Host "δ�ҵ�ƥ��� UWP ��"
}
# Due to Powershell limitations, this script can only be opened with GBK encoding
# �� $TempPath Ŀ¼���½��ļ� error
function Create-ErrorFile {
param (
[string]$ErrorMessage
)
$errorFilePath = Join-Path $TempPath "error"
if (-not (Test-Path $errorFilePath)) {
New-Item -ItemType File -Path $errorFilePath | Out-Null
}
# ��������Ϣд���ļ�
$ErrorMessage | Out-File -FilePath $errorFilePath -Encoding UTF8
Write-Host "�����ļ��Ѵ���: $errorFilePath"
}
# �� $TempPath Ŀ¼���½��ļ� success
function Create-SuccessFile {
$successFilePath = Join-Path $TempPath "success"
if (-not (Test-Path $successFilePath)) {
New-Item -ItemType File -Path $successFilePath | Out-Null
}
Write-Host "�ɹ��ļ��Ѵ���: $successFilePath"
}
# ������ԱȨ��
If (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator"))
{
Write-Warning "��ǰ�ű���Ҫ�Թ���ԱȨ�����У����Թ���Ա������� PowerShell ������ִ�д˽ű���"
$arguments = "& '" +$myinvocation.mycommand.definition + "'"
Start-Process powershell -Verb runAs -ArgumentList $arguments
Break
}
$AppName = "BiliLite.Packages"
$Version = "4.7.19.2002"
$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
Write-Output "scriptDir: $scriptDir"
$TempPath = Join-Path $scriptDir "..\temp"
if (-not (Test-Path $TempPath)) {
New-Item -ItemType Directory -Path $TempPath | Out-Null
}
try{
# ��ȡϵͳ�ܹ�
$arch = $env:PROCESSOR_ARCHITECTURE
# �жϼܹ�����ֵ
if ($arch -eq "AMD64") {
$systemArch = "x64"
} elseif ($arch -eq "x86") {
$systemArch = "x86"
} elseif ($arch -eq "ARM64") {
$systemArch = "ARM64"
} else {
$systemArch = "Unknown"
}
$Package = "{0}_{1}_{2}" -f $AppName, $Version, $systemArch
Write-Output "Package: $Package"
# �ҵ���Ӧ�İ�װ������ѹ��unpack·��
$PackageZipRelativePath = "..\resources\{0}.zip" -f $Package
$PackageZipPath = Join-Path $scriptDir $PackageZipRelativePath
$UnpackPath = Join-Path $scriptDir "..\unpack"
# ����ļ��Ƿ���ڲ���ѹ
if (Test-Path $PackageZipPath) {
# ȷ����ѹ·������
if (-not (Test-Path $UnpackPath)) {
New-Item -ItemType Directory -Path $UnpackPath | Out-Null
}
# ��ѹ�ļ�
Expand-Archive -Path $PackageZipPath -DestinationPath $UnpackPath -Force
Write-Host "�ļ��ѽ�ѹ�� $UnpackPath"
} else {
Write-Host "�ļ� $PackageZipPath �����ڣ������� GitHub ���ص�ǰƽ̨����İ�װ��"
# �� GitHub �������������ѹ
$downloadUrl = "https://github.com/ywmoyue/biliuwp-lite/releases/download/v{0}/{1}.zip" -f $Version, $Package
Write-Host "���ص�ַ: $downloadUrl"
try {
# �����ļ�
Invoke-WebRequest -Uri $downloadUrl -OutFile $PackageZipPath
Write-Host "��������: $PackageZipPath"
# ȷ����ѹ·������
if (-not (Test-Path $UnpackPath)) {
New-Item -ItemType Directory -Path $UnpackPath | Out-Null
}
# ��ѹ�ļ�
Expand-Archive -Path $PackageZipPath -DestinationPath $UnpackPath -Force
Write-Host "�ļ��ѽ�ѹ�� $UnpackPath"
} catch {
$errorMessage = "���ػ��ѹʧ��: $_"
Write-Host $errorMessage
Create-ErrorFile -ErrorMessage $errorMessage
exit 1
}
}
# ���ÿ�����ģʽ�����װδ֪��Դ��
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock" -Name "AllowDevelopmentWithoutDevLicense" -Value 1
Write-Host "�������װδ֪��Դ��"
# ֤��·��
$certRelativePath = "..\unpack\{0}_Test\{0}.cer" -f $Package
$certPath = Resolve-Path (Join-Path $scriptDir $certRelativePath)
# ��װ�ű�·��
$installScriptPath = "$scriptDir\..\unpack\{0}_Test\install.ps1" -f $Package
$installPackagePath = "$scriptDir\..\unpack\{0}_Test" -f $Package
Write-Host "��װ·�� $installScriptPath"
# ��װ֤��
try {
$cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2
$cert.Import($certPath.Path)
$store = New-Object System.Security.Cryptography.X509Certificates.X509Store("Root", "LocalMachine")
$store.Open("ReadWrite")
$store.Add($cert)
$store.Close()
Write-Host "֤�鰲װ���"
} catch {
$errorMessage = "֤�鰲װʧ��: $_"
Write-Host $errorMessage
Create-ErrorFile -ErrorMessage $errorMessage
exit 1
}
# ִ�а�װ�ű�
try {
. "$installScriptPath" -Force
Write-Host "��װ�ű�ִ�гɹ�"
} catch {
$errorMessage = "��װ�ű�ִ��ʧ��: $_"
Write-Host $errorMessage
Create-ErrorFile -ErrorMessage $errorMessage
exit 1
}
$PackageId = "5422.502643927C6AD"
$PackageNamePrefix = "{0}_{1}" -f $PackageId, $Version
Write-Host "PackageNamePrefix: $PackageNamePrefix"
# ����Ƿ�װ�ɹ�
$PackageFullName = (Get-AppxPackage | Where-Object { $_.PackageFullName -like "$PackageNamePrefix*" }).PackageFullName
if (-not $PackageFullName) {
$errorMessage = "Ӧ�ð�װ����֤ʧ�ܣ����鰲װ��־"
Write-Host $errorMessage
Create-ErrorFile -ErrorMessage $errorMessage
exit 1
} else {
$successMessage = "Ӧ���Ѱ�װ"
Write-Host $successMessage
Create-SuccessFile
}
} catch {
$errorMessage = "��������" + $_.Exception.Message
Write-Host $errorMessage
Read-Host -Prompt "�����������..."
}
Log in or click on link to see number of positives.
- BiliLite-uwp-x86.4.7.19.2002-beta.nupkg (e4c42f39d09d) - ## / 64
- BiliLite.Packages_4.7.19.2002_x86.zip (b29afce4783b) - ## / 68
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
BiliLite-uwp-x86 4.8.1.201-beta | 14 | Friday, June 6, 2025 | Exempted | |
BiliLite-uwp-x86 4.8.1-beta | 13 | Monday, June 2, 2025 | Exempted | |
BiliLite-uwp-x86 4.8.0.106-beta | 20 | Wednesday, May 28, 2025 | Exempted | |
BiliLite-uwp-x86 4.8.0.105-beta | 11 | Saturday, May 24, 2025 | Exempted | |
BiliLite-uwp-x86 4.8.0.103-beta | 12 | Friday, May 23, 2025 | Exempted | |
BiliLite-uwp-x86 4.8.0.101-beta | 133 | Thursday, May 15, 2025 | Exempted | |
BiliLite-uwp-x86 4.8.0-beta | 12 | Thursday, May 15, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.21-beta | 18 | Sunday, May 11, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.20.2102-beta | 16 | Saturday, May 3, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.20-beta | 20 | Thursday, May 1, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.19.2002-beta | 129 | Saturday, March 29, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.19-beta | 17 | Saturday, March 22, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.18.1906-beta | 9 | Friday, March 21, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.18.1904-beta | 15 | Friday, March 14, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.18.1903-beta | 14 | Monday, March 10, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.18.1902-beta | 16 | Monday, March 10, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.18.1901-beta | 11 | Sunday, March 9, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.18-beta | 17 | Saturday, March 8, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.17.1802-beta | 12 | Tuesday, March 4, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.17.1801-beta | 12 | Saturday, March 1, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.17-beta | 13 | Wednesday, February 26, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.16.1705-beta | 11 | Tuesday, February 25, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.16.1703-beta | 19 | Thursday, February 20, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.16.1702-beta | 16 | Wednesday, February 19, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.16.1701-beta | 9 | Tuesday, February 18, 2025 | Exempted | |
BiliLite-uwp-x86 4.7.16-beta | 11 | Sunday, February 16, 2025 | Exempted | |
BiliLite-uwp 4.7.15.1601-beta | 15 | Monday, February 10, 2025 | Exempted | |
BiliLite-uwp 4.7.15-beta | 13 | Sunday, February 9, 2025 | Exempted | |
BiliLite-uwp 4.7.14.1502-beta | 14 | Friday, February 7, 2025 | Exempted | |
BiliLite-uwp 4.7.14.1501-beta | 30 | Thursday, January 30, 2025 | Exempted | |
BiliLite-uwp 4.7.14-beta | 17 | Wednesday, January 29, 2025 | Exempted | |
BiliLite-uwp 4.7.13.1404-beta | 23 | Tuesday, January 28, 2025 | Exempted | |
BiliLite-uwp 4.7.13.1403-beta | 12 | Monday, January 27, 2025 | Exempted |
This package has no dependencies.
Ground Rules:
- This discussion is only about BiliLite-uwp-x86 and the BiliLite-uwp-x86 package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or BiliLite-uwp-x86, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.