mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-22 08:11:25 +00:00
870f8e3571
* Add per user installer
* Separate upgrade codes for per machine and per user installation
Move per machine check to bootstrapper
Move all defines to common.wxs
Fix CI
* Update installer/PowerToysSetup/generateFileList.ps1
Co-authored-by: Jeremy Sinclair <4016293+snickler@users.noreply.github.com>
* Update installer/PowerToysSetup/generateAllFileComponents.ps1
Co-authored-by: Jeremy Sinclair <4016293+snickler@users.noreply.github.com>
* Update installer/PowerToysSetup/generateFileList.ps1
Co-authored-by: Jeremy Sinclair <4016293+snickler@users.noreply.github.com>
* expect.txt
* Revert "Update installer/PowerToysSetup/generateFileList.ps1"
This reverts commit 34545dab9c
.
* Update release CI to build both installers
* Revert bundle name change
It messes up app ID for per-user installation which ends up breaking winget update
of the per-user PT
* spellcheck
* Fix bad merge
* Add RegistryPreview
* Include backup_restore_settings.json
* Revert testing endpoint change
---------
Co-authored-by: Jeremy Sinclair <4016293+snickler@users.noreply.github.com>
82 lines
2.9 KiB
PowerShell
82 lines
2.9 KiB
PowerShell
[CmdletBinding()]
|
|
# todo: send in arch / conf, could send in actual path
|
|
Param(
|
|
[Parameter(Mandatory = $True, Position = 1)]
|
|
[AllowEmptyString()]
|
|
[string]$targetDir = $PSScriptRoot + '/../extractedMsi/File'
|
|
)
|
|
|
|
$DirPath = $targetDir; #this file is in pipeline, we need root.
|
|
$items = Get-ChildItem -Path $DirPath -File -Include *.exe, *.dll, *.ttf, PTCustomActions -Recurse -Force -ErrorAction SilentlyContinue
|
|
$versionExceptions = @(
|
|
"Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll",
|
|
"Microsoft.Windows.ApplicationModel.Resources.Projection.dll",
|
|
"Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll",
|
|
"Microsoft.Windows.AppLifecycle.Projection.dll",
|
|
"Microsoft.Windows.System.Power.Projection.dll",
|
|
"Microsoft.WindowsAppRuntime.Bootstrap.Net.dll",
|
|
"Microsoft.Xaml.Interactions.dll",
|
|
"Microsoft.Xaml.Interactivity.dll",
|
|
"hyjiacan.py4n.dll",
|
|
"Microsoft.WindowsAppRuntime.Release.Net.dll",
|
|
"Microsoft.Windows.Widgets.Projection.dll") -join '|';
|
|
$nullVersionExceptions = @(
|
|
"codicon.ttf",
|
|
"e_sqlite3.dll",
|
|
"vcamp140_app.dll",
|
|
"marshal.dll",
|
|
"Microsoft.UI.Composition.OSSupport.dll",
|
|
"Microsoft.UI.Xaml.Internal.dll",
|
|
"Microsoft.Windows.ApplicationModel.Resources.dll",
|
|
"Microsoft.WindowsAppRuntime.dll",
|
|
"Microsoft.WindowsAppRuntime.Bootstrap.dll",
|
|
"MRM.dll",
|
|
"PushNotificationsLongRunningTask.ProxyStub.dll",
|
|
"WindowsAppSdk.AppxDeploymentExtensions.Desktop.dll",
|
|
"System.Diagnostics.EventLog.Messages.dll",
|
|
"Microsoft.Windows.Widgets.dll") -join '|';
|
|
$totalFailure = 0;
|
|
|
|
Write-Host $DirPath;
|
|
|
|
if (-not (Test-Path $DirPath)) {
|
|
Write-Host "Folder does not exist!"
|
|
}
|
|
|
|
Write-Host "Total items: " $items.Count
|
|
|
|
if ($items.Count -eq 0) {
|
|
# no items means something bad happened. We should fail ASAP
|
|
exit 1;
|
|
}
|
|
|
|
$items | ForEach-Object {
|
|
if ($_.VersionInfo.FileVersion -eq "1.0.0.0" -and $_.Name -notmatch $versionExceptions) {
|
|
# These items are exceptions that actually have the 1.0.0.0 version.
|
|
Write-Host "Version set to 1.0.0.0: " + $_.FullName
|
|
$totalFailure++;
|
|
}
|
|
elseif ($_.VersionInfo.FileVersion -eq $null -and $_.Name -notmatch $nullVersionExceptions) {
|
|
# These items are exceptions that actually a version not set.
|
|
Write-Host "Version not set: " + $_.FullName
|
|
$totalFailure++;
|
|
}
|
|
elseif ($_.VersionInfo.ProductName -contains "PowerToys" -and $_.VersionInfo.LegalCopyright -notmatch "Copyright \(C\) $((Get-Date).Year)") {
|
|
# PowerToys assemblies that aren't updated to the current year in the copyright
|
|
Write-Host "Copyright year out of date: " + $_.FullName
|
|
$totalFailure++;
|
|
}
|
|
else {
|
|
$auth = Get-AuthenticodeSignature $_.FullName
|
|
if ($auth.SignerCertificate -eq $null) {
|
|
Write-Host "Not Signed: " + $_.FullName
|
|
$totalFailure++;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($totalFailure -gt 0) {
|
|
exit 1
|
|
}
|
|
|
|
exit 0 |