We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 397f7d5 commit f317907Copy full SHA for f317907
Scripts/Remove-Secure.ps1
@@ -1,15 +1,15 @@
1
Add-Type -AssemblyName System.Windows.Forms
2
3
$OpenFileDialog = New-Object System.Windows.Forms.OpenFileDialog
4
-$OpenFileDialog.Filter = "Todos los archivos (*.*)|*.*"
+$OpenFileDialog.Filter = "All Files (*.*)|*.*"
5
$OpenFileDialog.Multiselect = $false
6
7
if ($OpenFileDialog.ShowDialog() -eq 'OK') {
8
$SelectedFilePath = $OpenFileDialog.FileName
9
Write-Host "File selected: $SelectedFilePath" -ForegroundColor Green
10
Write-Host " "
11
} else {
12
- Write-Host "No se seleccionó ningún archivo." -ForegroundColor Yellow
+ Write-Host "No file selected." -ForegroundColor Yellow
13
14
}
15
0 commit comments