PS 7 bug fixes

This commit is contained in:
2025-11-07 20:42:58 +01:00
parent ec27206453
commit 6e4cc874b0
3 changed files with 25 additions and 14 deletions

View File

@@ -24,12 +24,6 @@ This script will test the passwords of selected domain (defined in ElysiumSettin
# Enable verbose output
$ErrorActionPreference = 'Stop'
Set-StrictMode -Version Latest
[string]$commonHelper = Join-Path -Path $PSScriptRoot -ChildPath 'Elysium.Common.ps1'
if (-not (Test-Path -LiteralPath $commonHelper)) { throw "Common helper not found at $commonHelper" }
. $commonHelper
if ($PSVersionTable.PSEdition -ne 'Desktop') {
Restart-WithWindowsPowerShellIfAvailable -BoundParameters $PSBoundParameters -UnboundArguments $MyInvocation.UnboundArguments
}
$VerbosePreference = "SilentlyContinue"