5 lines
256 B
PowerShell
5 lines
256 B
PowerShell
|
|
# Script: test_alerta.ps1
|
||
|
|
# Objetivo: Mostrar una alerta nativa de Windows.
|
||
|
|
|
||
|
|
Add-Type -AssemblyName PresentationFramework
|
||
|
|
[System.Windows.MessageBox]::Show('El lanzador safecloud-run funciona correctamente.', 'Prueba de Gitea Exitosa', 'OK', 'Information')
|