mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 06:35:51 -06:00
d02146be0e
* Compile Winutil * Issue #1283, #1280 fixes, more (#1288) * Explorer Fix * Wifi, Explorer Crash, WinUtil Icon fixes. First attempt at white theme * White theme * Fix for clashing microwin directories if process fails, now new directory will be generated * * Tested latest Windows 10 (22H2) images work fine * Made dialog box more clear for issue #1283 * Added better logic for handling takeown /D flag for different locals issue #1280 * Refreshed the UI to more modern look * Improved white theme * Regrouped Tweak tab to make more sense * Advanced tweaks were in a separate column but the button applied both Essential and advanced now they are in the same column and button applies both * All instant action buttons were moved to Customize preferences column * Explorer lockup Fix * Wifi, Explorer Crash, WinUtil Icon fixes. * Fix for clashing microwin directories if process fails, now new directory will be generated * Merge all * Theme improvement, adding icon to the shortcut * Ability to download oscdimg from github, reorginizing Apps to fit better on more (smaller screens) * Fixing release branch to WinUtil * Adding double click to fullscreen * Update Get-Oscdimg.ps1 --------- Co-authored-by: KonTy <KonTy@github.com> Co-authored-by: Chris Titus <contact@christitus.com> * Update winutil.ps1 * remove merc and thorium * Ashlyn Programs * Also inject drivers into boot.wim * copy #1291 new branch --------- Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com> Co-authored-by: KonTy <9524513+KonTy@users.noreply.github.com> Co-authored-by: KonTy <KonTy@github.com> Co-authored-by: Cedric Lewe <0skillallluck@pm.me>
52 lines
1.7 KiB
PowerShell
52 lines
1.7 KiB
PowerShell
function Get-LocalizedYesNo {
|
|
<#
|
|
.SYNOPSIS
|
|
This function runs takeown.exe and captures its output to extract yes no in a localized Windows
|
|
|
|
.DESCRIPTION
|
|
The function retrieves lines from the output of takeown.exe until there are at least 2 characters
|
|
captured in a specific format, such as "Yes=<first character>, No=<second character>".
|
|
|
|
.EXAMPLE
|
|
$yesNoArray = Get-LocalizedYesNo
|
|
Write-Host "Yes=$($yesNoArray[0]), No=$($yesNoArray[1])"
|
|
#>
|
|
|
|
# Run takeown.exe and capture its output
|
|
$takeownOutput = & takeown.exe /? | Out-String
|
|
|
|
# Parse the output and retrieve lines until there are at least 2 characters in the array
|
|
$found = $false
|
|
$charactersArray = @()
|
|
foreach ($line in $takeownOutput -split "`r`n")
|
|
{
|
|
# skip everything before /D flag help
|
|
if ($found)
|
|
{
|
|
# now that /D is found start looking for a single character in double quotes
|
|
# in help text there is another string in double quotes but it is not a single character
|
|
$regexPattern = '"([a-zA-Z])"'
|
|
|
|
$charactersArray = [regex]::Matches($line, $regexPattern) | ForEach-Object { $_.Groups[1].Value }
|
|
|
|
# if ($charactersArray.Count -gt 0) {
|
|
# Write-Output "Extracted symbols: $($matches -join ', ')"
|
|
# } else {
|
|
# Write-Output "No matches found."
|
|
# }
|
|
|
|
if ($charactersArray.Count -ge 2)
|
|
{
|
|
break
|
|
}
|
|
}
|
|
elseif ($line -match "/D ")
|
|
{
|
|
$found = $true
|
|
}
|
|
}
|
|
|
|
Write-Debug "According to takeown.exe local Yes is $charactersArray[0]"
|
|
# Return the array of characters
|
|
return $charactersArray
|
|
} |