mirror of
https://github.com/pbatard/Fido.git
synced 2025-09-16 14:18:02 +02:00
Remove testing/debug options and simplify parameter handling
* Also let external app close cookie prompt when a pipe is provided and use a more explicit Continue/Back scheme for button labels. * Also add signature script
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -1,2 +1,3 @@
|
|||||||
* text=auto
|
* text=auto
|
||||||
*.ps1 eol=crlf
|
*.ps1 eol=crlf
|
||||||
|
*.sh eol=lf
|
||||||
|
3
.gitignore
vendored
3
.gitignore
vendored
@@ -259,3 +259,6 @@ paket-files/
|
|||||||
# Python Tools for Visual Studio (PTVS)
|
# Python Tools for Visual Studio (PTVS)
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.pyc
|
*.pyc
|
||||||
|
|
||||||
|
# Signatures
|
||||||
|
*.sig
|
||||||
|
106
Fido.ps1
106
Fido.ps1
@@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Fido - Retail Windows ISO Downloader
|
# Fido v1.01 - Retail Windows ISO Downloader
|
||||||
# Copyright © 2019 Pete Batard <pete@akeo.ie>
|
# Copyright © 2019 Pete Batard <pete@akeo.ie>
|
||||||
# ConvertTo-ImageSource: Copyright © 2016 Chris Carter
|
# ConvertTo-ImageSource: Copyright © 2016 Chris Carter
|
||||||
#
|
#
|
||||||
@@ -22,21 +22,17 @@
|
|||||||
|
|
||||||
#region Parameters
|
#region Parameters
|
||||||
param(
|
param(
|
||||||
|
# (Optional) The title to display on the application window.
|
||||||
|
[string]$AppTitle = "Fido - Retail Windows ISO Downloader",
|
||||||
|
# (Optional) '|' separated UI localization strings.
|
||||||
|
[string]$LocData,
|
||||||
|
# (Optional) Path to a file that should be used for the UI icon.
|
||||||
|
[string]$Icon,
|
||||||
# (Optional) Name of a pipe the download URL should be sent to.
|
# (Optional) Name of a pipe the download URL should be sent to.
|
||||||
# If not provided, a browser window is opened instead.
|
# If not provided, a browser window is opened instead.
|
||||||
[string]$PipeName,
|
[string]$PipeName,
|
||||||
# (Optional) '|' separated UI localization strings.
|
# (Optional) Toggle expert mode (additional ISOs to choose).
|
||||||
[string]$LocData,
|
[switch]$Expert = $False
|
||||||
# (Optional) Path to the file that should be used for the UI icon.
|
|
||||||
[string]$Icon,
|
|
||||||
# (Optional) The title to display on the application window
|
|
||||||
[string]$AppTitle = "Fido - Retail Windows ISO Downloader",
|
|
||||||
# (Optional) Whether to show the "Download in a browser" checkbox
|
|
||||||
[switch]$ShowBrowserOption = $True,
|
|
||||||
# (Optional) Test/Debug options
|
|
||||||
[switch]$Debug = $False,
|
|
||||||
[switch]$Expert = $False,
|
|
||||||
[switch]$Testing = $False
|
|
||||||
)
|
)
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
@@ -61,8 +57,6 @@ $code = @"
|
|||||||
if (!File.Exists(muiPath))
|
if (!File.Exists(muiPath))
|
||||||
muiPath = Environment.SystemDirectory + @"\en-US\" + dll + ".mui";
|
muiPath = Environment.SystemDirectory + @"\en-US\" + dll + ".mui";
|
||||||
IntPtr hMui = LoadLibrary(muiPath);
|
IntPtr hMui = LoadLibrary(muiPath);
|
||||||
if (hMui == null)
|
|
||||||
return "";
|
|
||||||
StringBuilder szString = new StringBuilder(MAX_PATH);
|
StringBuilder szString = new StringBuilder(MAX_PATH);
|
||||||
LoadString(hMui, (uint)index, szString, MAX_PATH);
|
LoadString(hMui, (uint)index, szString, MAX_PATH);
|
||||||
return szString.ToString();
|
return szString.ToString();
|
||||||
@@ -296,9 +290,9 @@ function Add-Entry([int]$pos, [string]$Name, [array]$Items, [string]$DisplayName
|
|||||||
$XMLGrid.Children.Insert(2 * $Stage + 3, $Combo)
|
$XMLGrid.Children.Insert(2 * $Stage + 3, $Combo)
|
||||||
|
|
||||||
$XMLForm.Height += $dh;
|
$XMLForm.Height += $dh;
|
||||||
$Margin = $Confirm.Margin
|
$Margin = $Continue.Margin
|
||||||
$Margin.Top += $dh
|
$Margin.Top += $dh
|
||||||
$Confirm.Margin = $Margin
|
$Continue.Margin = $Margin
|
||||||
$Margin = $Back.Margin
|
$Margin = $Back.Margin
|
||||||
$Margin.Top += $dh
|
$Margin.Top += $dh
|
||||||
$Back.Margin = $Margin
|
$Back.Margin = $Margin
|
||||||
@@ -308,7 +302,7 @@ function Add-Entry([int]$pos, [string]$Name, [array]$Items, [string]$DisplayName
|
|||||||
|
|
||||||
function Refresh-Control([object]$Control)
|
function Refresh-Control([object]$Control)
|
||||||
{
|
{
|
||||||
$Control.Dispatcher.Invoke("Render", [Windows.Input.InputEventHandler] { $Confirm.UpdateLayout() }, $null, $null)
|
$Control.Dispatcher.Invoke("Render", [Windows.Input.InputEventHandler] { $Continue.UpdateLayout() }, $null, $null)
|
||||||
}
|
}
|
||||||
|
|
||||||
function Send-Message([string]$PipeName, [string]$Message)
|
function Send-Message([string]$PipeName, [string]$Message)
|
||||||
@@ -316,7 +310,6 @@ function Send-Message([string]$PipeName, [string]$Message)
|
|||||||
[System.Text.Encoding]$Encoding = [System.Text.Encoding]::UTF8
|
[System.Text.Encoding]$Encoding = [System.Text.Encoding]::UTF8
|
||||||
$Pipe = New-Object -TypeName System.IO.Pipes.NamedPipeClientStream -ArgumentList ".", $PipeName, ([System.IO.Pipes.PipeDirection]::Out), ([System.IO.Pipes.PipeOptions]::None), ([System.Security.Principal.TokenImpersonationLevel]::Impersonation)
|
$Pipe = New-Object -TypeName System.IO.Pipes.NamedPipeClientStream -ArgumentList ".", $PipeName, ([System.IO.Pipes.PipeDirection]::Out), ([System.IO.Pipes.PipeOptions]::None), ([System.Security.Principal.TokenImpersonationLevel]::Impersonation)
|
||||||
try {
|
try {
|
||||||
Write-Host Connecting to $PipeName
|
|
||||||
$Pipe.Connect(1000)
|
$Pipe.Connect(1000)
|
||||||
} catch {
|
} catch {
|
||||||
Write-Host $_.Exception.Message
|
Write-Host $_.Exception.Message
|
||||||
@@ -378,12 +371,12 @@ function Error([string]$ErrorMessage)
|
|||||||
Write-Host $ErrorMessage
|
Write-Host $ErrorMessage
|
||||||
$XMLForm.Title = $(Get-Translation("Error")) + ": " + $ErrorMessage
|
$XMLForm.Title = $(Get-Translation("Error")) + ": " + $ErrorMessage
|
||||||
Refresh-Control($XMLForm)
|
Refresh-Control($XMLForm)
|
||||||
$Confirm.Content = Get-Translation("Close")
|
$Continue.Content = Get-Translation("Close")
|
||||||
Refresh-Control($Confirm)
|
Refresh-Control($Continue)
|
||||||
$UserInput = [System.Windows.MessageBox]::Show($XMLForm.Title, $(Get-Translation("Error")), "OK", "Error")
|
$UserInput = [System.Windows.MessageBox]::Show($XMLForm.Title, $(Get-Translation("Error")), "OK", "Error")
|
||||||
$script:ExitCode = $Stage
|
$script:ExitCode = $Stage
|
||||||
$script:Stage = -1
|
$script:Stage = -1
|
||||||
$Confirm.IsEnabled = $True
|
$Continue.IsEnabled = $True
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
@@ -391,7 +384,7 @@ function Error([string]$ErrorMessage)
|
|||||||
[xml]$XAML = @"
|
[xml]$XAML = @"
|
||||||
<Window xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation" Height = "162" Width = "384" ResizeMode = "NoResize">
|
<Window xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation" Height = "162" Width = "384" ResizeMode = "NoResize">
|
||||||
<Grid Name = "XMLGrid">
|
<Grid Name = "XMLGrid">
|
||||||
<Button Name = "Confirm" FontSize = "16" Height = "26" Width = "160" HorizontalAlignment = "Left" VerticalAlignment = "Top" Margin = "14,78,0,0"/>
|
<Button Name = "Continue" FontSize = "16" Height = "26" Width = "160" HorizontalAlignment = "Left" VerticalAlignment = "Top" Margin = "14,78,0,0"/>
|
||||||
<Button Name = "Back" FontSize = "16" Height = "26" Width = "160" HorizontalAlignment = "Left" VerticalAlignment = "Top" Margin = "194,78,0,0"/>
|
<Button Name = "Back" FontSize = "16" Height = "26" Width = "160" HorizontalAlignment = "Left" VerticalAlignment = "Top" Margin = "194,78,0,0"/>
|
||||||
<TextBlock Name = "WindowsVersionTitle" FontSize = "16" Width="340" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="16,8,0,0"/>
|
<TextBlock Name = "WindowsVersionTitle" FontSize = "16" Width="340" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="16,8,0,0"/>
|
||||||
<ComboBox Name = "WindowsVersion" FontSize = "14" Height = "24" Width = "340" HorizontalAlignment = "Left" VerticalAlignment="Top" Margin = "14,34,0,0" SelectedIndex = "0"/>
|
<ComboBox Name = "WindowsVersion" FontSize = "14" Height = "24" Width = "340" HorizontalAlignment = "Left" VerticalAlignment="Top" Margin = "14,34,0,0" SelectedIndex = "0"/>
|
||||||
@@ -415,16 +408,7 @@ $RequestData["GetLinks"] = @("cfa9e580-a81e-4a4b-a846-7b21bf4e2e5b", "GetProduct
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
# Localization
|
# Localization
|
||||||
$EnglishMessages = "en-US|Version|Release|Edition|Language|Architecture|Download|Confirm|Modify|Close|Cancel|Error|Please wait...|Download using a browser"
|
$EnglishMessages = "en-US|Version|Release|Edition|Language|Architecture|Download|Continue|Back|Close|Cancel|Error|Please wait...|Download using a browser"
|
||||||
if ($Testing) {
|
|
||||||
$LocData = "fr-FR|||Édition|Langue de produit||Télécharger|Confirmer|Modifier|Fermer|Annuler|Erreur|Veuillez patienter...|Télécharger avec un navigateur"
|
|
||||||
$TestLangs = '{"languages":[
|
|
||||||
{ "language":"English", "text":"Anglais", "id":"100" },
|
|
||||||
{ "language":"English (International)", "text":"Anglais (International)", "id":"101" },
|
|
||||||
{ "language":"French", "text":"Français", "id":"102" },
|
|
||||||
{ "language":"French (Canadian)", "text":"Français (Canadien)", "id":"103" }
|
|
||||||
]}'
|
|
||||||
}
|
|
||||||
[string[]]$English = $EnglishMessages.Split('|')
|
[string[]]$English = $EnglishMessages.Split('|')
|
||||||
[string[]]$Localized = $null
|
[string[]]$Localized = $null
|
||||||
if ($LocData -and (-not $LocData.StartsWith("en-US"))) {
|
if ($LocData -and (-not $LocData.StartsWith("en-US"))) {
|
||||||
@@ -449,7 +433,7 @@ if ($Locale.StartsWith("ar") -or $Locale.StartsWith("fa") -or $Locale.StartsWit
|
|||||||
$XMLForm.FlowDirection = "RightToLeft"
|
$XMLForm.FlowDirection = "RightToLeft"
|
||||||
}
|
}
|
||||||
$WindowsVersionTitle.Text = Get-Translation("Version")
|
$WindowsVersionTitle.Text = Get-Translation("Version")
|
||||||
$Confirm.Content = Get-Translation("Confirm")
|
$Continue.Content = Get-Translation("Continue")
|
||||||
$Back.Content = Get-Translation("Cancel")
|
$Back.Content = Get-Translation("Cancel")
|
||||||
|
|
||||||
# Populate the Windows versions
|
# Populate the Windows versions
|
||||||
@@ -463,16 +447,16 @@ $WindowsVersion.ItemsSource = $array
|
|||||||
$WindowsVersion.DisplayMemberPath = "Version"
|
$WindowsVersion.DisplayMemberPath = "Version"
|
||||||
|
|
||||||
# Button Action
|
# Button Action
|
||||||
$Confirm.add_click({
|
$Continue.add_click({
|
||||||
if ($script:Stage++ -lt 0) {
|
if ($script:Stage++ -lt 0) {
|
||||||
Get-Process -Id $pid | Foreach-Object { $_.CloseMainWindow() | Out-Null }
|
Get-Process -Id $pid | Foreach-Object { $_.CloseMainWindow() | Out-Null }
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
$XMLGrid.Children[2 * $Stage + 1].IsEnabled = $False
|
$XMLGrid.Children[2 * $Stage + 1].IsEnabled = $False
|
||||||
$Confirm.IsEnabled = $False
|
$Continue.IsEnabled = $False
|
||||||
$Back.IsEnabled = $False
|
$Back.IsEnabled = $False
|
||||||
Refresh-Control($Confirm)
|
Refresh-Control($Continue)
|
||||||
Refresh-Control($Back)
|
Refresh-Control($Back)
|
||||||
|
|
||||||
switch ($Stage) {
|
switch ($Stage) {
|
||||||
@@ -485,7 +469,6 @@ $Confirm.add_click({
|
|||||||
$url += $WindowsVersion.SelectedValue.PageType
|
$url += $WindowsVersion.SelectedValue.PageType
|
||||||
Write-Host Querying $url
|
Write-Host Querying $url
|
||||||
|
|
||||||
if (-not $Testing) {
|
|
||||||
try {
|
try {
|
||||||
$r = Invoke-WebRequest -SessionVariable "Session" $url
|
$r = Invoke-WebRequest -SessionVariable "Session" $url
|
||||||
$script:SessionId = $r.ParsedHtml.IHTMLDocument3_GetElementById("session-id").Value
|
$script:SessionId = $r.ParsedHtml.IHTMLDocument3_GetElementById("session-id").Value
|
||||||
@@ -500,7 +483,6 @@ $Confirm.add_click({
|
|||||||
Error($_.Exception.Message)
|
Error($_.Exception.Message)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
$i = 0
|
$i = 0
|
||||||
$array = @()
|
$array = @()
|
||||||
@@ -530,8 +512,6 @@ $Confirm.add_click({
|
|||||||
}
|
}
|
||||||
|
|
||||||
3 { # Product Edition selection => Request and populate Languages
|
3 { # Product Edition selection => Request and populate Languages
|
||||||
|
|
||||||
# Get the Product Edition
|
|
||||||
$url = "https://www.microsoft.com/" + $Locale + "/api/controls/contentinclude/html"
|
$url = "https://www.microsoft.com/" + $Locale + "/api/controls/contentinclude/html"
|
||||||
$url += "?pageId=" + $RequestData["GetLangs"][0]
|
$url += "?pageId=" + $RequestData["GetLangs"][0]
|
||||||
$url += "&host=www.microsoft.com"
|
$url += "&host=www.microsoft.com"
|
||||||
@@ -545,13 +525,9 @@ $Confirm.add_click({
|
|||||||
$array = @()
|
$array = @()
|
||||||
$i = 0
|
$i = 0
|
||||||
$SelectedIndex = 0
|
$SelectedIndex = 0
|
||||||
if (-not $Testing) {
|
|
||||||
try {
|
try {
|
||||||
$r = Invoke-WebRequest -WebSession $Session $url
|
$r = Invoke-WebRequest -WebSession $Session $url
|
||||||
foreach ($var in $r.ParsedHtml.IHTMLDocument3_GetElementByID("product-languages")) {
|
foreach ($var in $r.ParsedHtml.IHTMLDocument3_GetElementByID("product-languages")) {
|
||||||
if ($Debug) {
|
|
||||||
Write-Host $var.value $var.text
|
|
||||||
}
|
|
||||||
$json = $var.value | ConvertFrom-Json;
|
$json = $var.value | ConvertFrom-Json;
|
||||||
if ($json) {
|
if ($json) {
|
||||||
$array += @(New-Object PsObject -Property @{ DisplayLanguage = $var.text; Language = $json.language; Id = $json.id })
|
$array += @(New-Object PsObject -Property @{ DisplayLanguage = $var.text; Language = $json.language; Id = $json.id })
|
||||||
@@ -572,15 +548,6 @@ $Confirm.add_click({
|
|||||||
Error($_.Exception.Message)
|
Error($_.Exception.Message)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
foreach ($var in $(ConvertFrom-Json –InputObject $TestLangs).languages) {
|
|
||||||
$array += @(New-Object PsObject -Property @{ DisplayLanguage = $var.text; Language = $var.language; Id = $var.id })
|
|
||||||
if (Select-Language($var.language)) {
|
|
||||||
$SelectedIndex = $i
|
|
||||||
}
|
|
||||||
$i++
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$script:Language = Add-Entry $Stage "Language" $array "DisplayLanguage"
|
$script:Language = Add-Entry $Stage "Language" $array "DisplayLanguage"
|
||||||
$Language.SelectedIndex = $SelectedIndex
|
$Language.SelectedIndex = $SelectedIndex
|
||||||
}
|
}
|
||||||
@@ -600,7 +567,6 @@ $Confirm.add_click({
|
|||||||
$i = 0
|
$i = 0
|
||||||
$SelectedIndex = 0
|
$SelectedIndex = 0
|
||||||
$array = @()
|
$array = @()
|
||||||
if (-not $Testing) {
|
|
||||||
try {
|
try {
|
||||||
$r = Invoke-WebRequest -WebSession $Session $url
|
$r = Invoke-WebRequest -WebSession $Session $url
|
||||||
foreach ($var in $r.ParsedHtml.IHTMLDocument3_GetElementsByTagName("span") | Where-Object { $_.className -eq "product-download-type" }) {
|
foreach ($var in $r.ParsedHtml.IHTMLDocument3_GetElementsByTagName("span") | Where-Object { $_.className -eq "product-download-type" }) {
|
||||||
@@ -642,22 +608,14 @@ $Confirm.add_click({
|
|||||||
Error($_.Exception.Message)
|
Error($_.Exception.Message)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
$array += @(New-Object PsObject -Property @{ Type = "x86"; Link = "https://software-download.microsoft.com/sg/Win10_1809Oct_English_x86.iso" })
|
|
||||||
$i++
|
|
||||||
$array += @(New-Object PsObject -Property @{ Type = "x64"; Link = "https://software-download.microsoft.com/sg/Win10_1809Oct_English_x64.iso" })
|
|
||||||
if ($ENV:PROCESSOR_ARCHITECTURE -eq "AMD64") {
|
|
||||||
$SelectedIndex = $i
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$script:Arch = Add-Entry $Stage "Architecture" $array "Type"
|
$script:Arch = Add-Entry $Stage "Architecture" $array "Type"
|
||||||
if (($PipeName -or $Testing) -and $ShowBrowserOption) {
|
if ($PipeName) {
|
||||||
$XMLForm.Height += $dh / 2;
|
$XMLForm.Height += $dh / 2;
|
||||||
$Margin = $Confirm.Margin
|
$Margin = $Continue.Margin
|
||||||
$top = $Margin.Top
|
$top = $Margin.Top
|
||||||
$Margin.Top += $dh /2
|
$Margin.Top += $dh /2
|
||||||
$Confirm.Margin = $Margin
|
$Continue.Margin = $Margin
|
||||||
$Margin = $Back.Margin
|
$Margin = $Back.Margin
|
||||||
$Margin.Top += $dh / 2
|
$Margin.Top += $dh / 2
|
||||||
$Back.Margin = $Margin
|
$Back.Margin = $Margin
|
||||||
@@ -668,7 +626,7 @@ $Confirm.add_click({
|
|||||||
$Check.Visibility = "Visible"
|
$Check.Visibility = "Visible"
|
||||||
}
|
}
|
||||||
$Arch.SelectedIndex = $SelectedIndex
|
$Arch.SelectedIndex = $SelectedIndex
|
||||||
$Confirm.Content = Get-Translation("Download")
|
$Continue.Content = Get-Translation("Download")
|
||||||
}
|
}
|
||||||
|
|
||||||
5 { # Arch selection => Return selected download link
|
5 { # Arch selection => Return selected download link
|
||||||
@@ -682,7 +640,7 @@ $Confirm.add_click({
|
|||||||
$XMLForm.Close()
|
$XMLForm.Close()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$Confirm.IsEnabled = $True
|
$Continue.IsEnabled = $True
|
||||||
if ($Stage -ge 0) {
|
if ($Stage -ge 0) {
|
||||||
$Back.IsEnabled = $True;
|
$Back.IsEnabled = $True;
|
||||||
}
|
}
|
||||||
@@ -696,14 +654,14 @@ $Back.add_click({
|
|||||||
$XMLGrid.Children.RemoveAt(2 * $Stage + 2)
|
$XMLGrid.Children.RemoveAt(2 * $Stage + 2)
|
||||||
$XMLGrid.Children[2 * $Stage + 1].IsEnabled = $True
|
$XMLGrid.Children[2 * $Stage + 1].IsEnabled = $True
|
||||||
$dh2 = $dh
|
$dh2 = $dh
|
||||||
if ($Stage -eq 4 -and $ShowBrowserOption) {
|
if ($Stage -eq 4 -and $PipeName) {
|
||||||
$Check.Visibility = "Collapsed"
|
$Check.Visibility = "Collapsed"
|
||||||
$dh2 += $dh / 2
|
$dh2 += $dh / 2
|
||||||
}
|
}
|
||||||
$XMLForm.Height -= $dh2;
|
$XMLForm.Height -= $dh2;
|
||||||
$Margin = $Confirm.Margin
|
$Margin = $Continue.Margin
|
||||||
$Margin.Top -= $dh2
|
$Margin.Top -= $dh2
|
||||||
$Confirm.Margin = $Margin
|
$Continue.Margin = $Margin
|
||||||
$Margin = $Back.Margin
|
$Margin = $Back.Margin
|
||||||
$Margin.Top -= $dh2
|
$Margin.Top -= $dh2
|
||||||
$Back.Margin = $Margin
|
$Back.Margin = $Margin
|
||||||
@@ -711,11 +669,12 @@ $Back.add_click({
|
|||||||
if ($Stage -eq 0) {
|
if ($Stage -eq 0) {
|
||||||
$Back.Content = Get-Translation("Cancel")
|
$Back.Content = Get-Translation("Cancel")
|
||||||
} elseif ($Stage -eq 3) {
|
} elseif ($Stage -eq 3) {
|
||||||
$Confirm.Content = Get-Translation("Confirm")
|
$Continue.Content = Get-Translation("Continue")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if (-not $PipeName) {
|
||||||
# We need a job in the background to close the obnoxious "Do you want to accept this cookie?" Windows alerts
|
# We need a job in the background to close the obnoxious "Do you want to accept this cookie?" Windows alerts
|
||||||
$ClosePrompt = {
|
$ClosePrompt = {
|
||||||
param($PromptTitle)
|
param($PromptTitle)
|
||||||
@@ -730,10 +689,13 @@ if (-not $SecurityWarningTitle) {
|
|||||||
$SecurityWarningTitle = "Windows Security Warning"
|
$SecurityWarningTitle = "Windows Security Warning"
|
||||||
}
|
}
|
||||||
$Job = Start-Job -ScriptBlock $ClosePrompt -ArgumentList $SecurityWarningTitle
|
$Job = Start-Job -ScriptBlock $ClosePrompt -ArgumentList $SecurityWarningTitle
|
||||||
|
}
|
||||||
|
|
||||||
# Display the dialog
|
# Display the dialog
|
||||||
$XMLForm.ShowDialog() | Out-Null
|
$XMLForm.ShowDialog() | Out-Null
|
||||||
|
|
||||||
# Clean up & exit
|
# Clean up & exit
|
||||||
|
if (-not $PipeName) {
|
||||||
Stop-Job -Job $Job
|
Stop-Job -Job $Job
|
||||||
|
}
|
||||||
exit $ExitCode
|
exit $ExitCode
|
||||||
|
30
sign.sh
Normal file
30
sign.sh
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# This script creates the RSA-2048 signatures for our downloadable content
|
||||||
|
|
||||||
|
PRIVATE_KEY=/d/Secured/Akeo/Rufus/private.pem
|
||||||
|
PUBLIC_KEY=/d/Secured/Akeo/Rufus/public.pem
|
||||||
|
|
||||||
|
# Create or update a signature
|
||||||
|
sign_file() {
|
||||||
|
if [ -f $FILE.sig ]; then
|
||||||
|
SIZE=$(stat -c%s $FILE.sig)
|
||||||
|
openssl dgst -sha256 -verify $PUBLIC_KEY -signature $FILE.sig $FILE >/dev/null 2>&1
|
||||||
|
if [ ! $? -eq 0 ]; then
|
||||||
|
echo Updating signature for $FILE
|
||||||
|
openssl dgst -sha256 -sign $PRIVATE_KEY -passin pass:$PASSWORD -out $FILE.sig $FILE
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
# No signature => create a new one
|
||||||
|
echo Creating signature for $FILE
|
||||||
|
openssl dgst -sha256 -sign $PRIVATE_KEY -passin pass:$PASSWORD -out $FILE.sig $FILE
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
read -s -p "Enter pass phrase for `realpath $PRIVATE_KEY`: " PASSWORD
|
||||||
|
echo
|
||||||
|
# Confirm that the pass phrase is valid by trying to sign a dummy file
|
||||||
|
openssl dgst -sha256 -sign $PRIVATE_KEY -passin pass:$PASSWORD $PUBLIC_KEY >/dev/null 2>&1 || { echo Invalid pass phrase; exit 1; }
|
||||||
|
|
||||||
|
find . -maxdepth 1 -name "*.ps1" | while read FILE; do sign_file; done
|
||||||
|
# Clear the PASSWORD variable just in case
|
||||||
|
PASSWORD=`head -c 50 /dev/random | base64`
|
Reference in New Issue
Block a user