From 1f4fbe86a9c0a3a0bbdf49ca9ce9aaf03b94871a Mon Sep 17 00:00:00 2001 From: Rephl3x Date: Fri, 30 Jan 2026 11:16:02 +1300 Subject: [PATCH] Move PFX password controls under output type --- certy.ps1 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/certy.ps1 b/certy.ps1 index ec43173..374c0f5 100644 --- a/certy.ps1 +++ b/certy.ps1 @@ -814,11 +814,6 @@ $outputTypeBox.SelectedIndex = 0 $panel.Controls.Add($outputTypeBox) $y += $rowHeight + $gap -$outputPathLabel = Add-Label "PFX output path" $xLabel $y $labelWidth $rowHeight -$outputPathBox = Add-TextBox $xInput $y $inputWidth $rowHeight $false -$outputPathBox.Text = "C:\programdata\wacs\output\" -$y += $rowHeight + $gap - $pfxPasswordLabel = Add-Label "PFX password" $xLabel $y $labelWidth $rowHeight $pfxPasswordBox = Add-TextBox $xInput $y $inputWidth $rowHeight $false $pfxPasswordBox.UseSystemPasswordChar = $true @@ -828,6 +823,11 @@ $pfxPasswordToggle = Add-CheckBox "Use PFX password" $xInput $y 180 $rowHeight $pfxPasswordToggle.Checked = $true $y += $rowHeight + $gap +$outputPathLabel = Add-Label "PFX output path" $xLabel $y $labelWidth $rowHeight +$outputPathBox = Add-TextBox $xInput $y $inputWidth $rowHeight $false +$outputPathBox.Text = "C:\programdata\wacs\output\" +$y += $rowHeight + $gap + Add-Label "ACME base URI" $xLabel $y $labelWidth $rowHeight $baseUriBox = Add-TextBox $xInput $y $inputWidth $rowHeight $false $baseUriBox.Text = "https://acmeprod.wd.govt.nz:9999/acme/rsa/"