mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-05-24 00:07:24 -05:00

* Replace Tabs with Spaces to follow the conventions * Add Preprocessing in Compiler * Compile from Anywhere you want - Running 'Compile.ps1' Works in any directory you call it from * Code Formatting Changes * Result of Preprocessing Step in 'Compile.ps1' Script - Remove Trailing Whitespace Characters * Make Preprocessing more advanced * Move Preprocessing to a separate script file * Make Self Modification impossible for 'tools/Do-PreProcessing.ps1' Script - Make the workingdir same as sync.PSScriptRoot for consistency * Revert commit b5dffd671ff4f870026e4d384f393c0491692ab7 * Patched a Bug of some Excluded Files not actually get excluded in 'Get-ChildItem' PS Cmdlet * Update Replace Regex for Code Formatting in 'Do-PreProcessing' Script Tool * Rename 'Do-PreProcessing' to 'Invoke-Preprocessing' - Update some Comments * Make 'Invoke-Preprocessing' Modular - Update RegEx to handle more cases - Update Documentation - Add Validations & Useful feedback upon error * Replace Tabs with Spaces to follow the conventions - 'applications.json' File * Code Formatting Changes - 'Copy-Files' Private Function * Update Replace Regex for Code Formatting in 'Invoke-Preprocessing' Script Tool * Replace Tabs with Spaces to follow the conventions - Make 'ExcludedFiles' validation step check all filepaths before finally checking if any has failed * Result of 'Invoke-Preprocessing' Script * Update Replace Regex for Code Formatting in 'Invoke-Preprocessing' Script Tool
35 lines
1.1 KiB
PowerShell
35 lines
1.1 KiB
PowerShell
function Get-LocalizedYesNo {
|
|
<#
|
|
.SYNOPSIS
|
|
This function runs choice.exe and captures its output to extract yes no in a localized Windows
|
|
|
|
.DESCRIPTION
|
|
The function retrieves the output of the command 'cmd /c "choice <nul 2>nul"' and converts the default output for Yes and No
|
|
in the localized format, such as "Yes=<first character>, No=<second character>".
|
|
|
|
.EXAMPLE
|
|
$yesNoArray = Get-LocalizedYesNo
|
|
Write-Host "Yes=$($yesNoArray[0]), No=$($yesNoArray[1])"
|
|
#>
|
|
|
|
# Run choice and capture its options as output
|
|
# The output shows the options for Yes and No as "[Y,N]?" in the (partitially) localized format.
|
|
# eg. English: [Y,N]?
|
|
# Dutch: [Y,N]?
|
|
# German: [J,N]?
|
|
# French: [O,N]?
|
|
# Spanish: [S,N]?
|
|
# Italian: [S,N]?
|
|
# Russian: [Y,N]?
|
|
|
|
$line = cmd /c "choice <nul 2>nul"
|
|
$charactersArray = @()
|
|
$regexPattern = '([a-zA-Z])'
|
|
$charactersArray = [regex]::Matches($line, $regexPattern) | ForEach-Object { $_.Groups[1].Value }
|
|
|
|
Write-Debug "According to takeown.exe local Yes is $charactersArray[0]"
|
|
# Return the array of characters
|
|
return $charactersArray
|
|
|
|
}
|