Skip to content

Commit f317907

Browse files
authored
Update Remove-Secure.ps1
1 parent 397f7d5 commit f317907

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Scripts/Remove-Secure.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Add-Type -AssemblyName System.Windows.Forms
22

33
$OpenFileDialog = New-Object System.Windows.Forms.OpenFileDialog
4-
$OpenFileDialog.Filter = "Todos los archivos (*.*)|*.*"
4+
$OpenFileDialog.Filter = "All Files (*.*)|*.*"
55
$OpenFileDialog.Multiselect = $false
66

77
if ($OpenFileDialog.ShowDialog() -eq 'OK') {
88
$SelectedFilePath = $OpenFileDialog.FileName
99
Write-Host "File selected: $SelectedFilePath" -ForegroundColor Green
1010
Write-Host " "
1111
} else {
12-
Write-Host "No se seleccionó ningún archivo." -ForegroundColor Yellow
12+
Write-Host "No file selected." -ForegroundColor Yellow
1313
Write-Host " "
1414
}
1515

0 commit comments

Comments
 (0)