BrandwiseSecurityAwarenessDemo.ps1

<#PSScriptInfo
 
.VERSION 1.0.1
 
.GUID 7e894a5e-45ef-48b2-92d2-d82ddfd395b8
 
.AUTHOR Liron Fridman
 
.COMPANYNAME Brandwise
 
.COPYRIGHT Copyright (c) 2026 Liron Fridman
 
.TAGS MessageBox Windows Hebrew Test
 
.LICENSEURI https://opensource.org/license/mit
 
.RELEASENOTES
Updated test message.
 
#>


<#
.SYNOPSIS
Displays a test message in a Windows dialog box.
 
.DESCRIPTION
A simple PowerShell Gallery test script that displays a Hebrew message.
 
.EXAMPLE
.\HelloWorld.ps1
#>


#Requires -Version 5.1

Add-Type -AssemblyName PresentationFramework

$message = -join [char[]](
    0x05D4, 0x05E6, 0x05DC, 0x05D7, 0x05EA, 0x05D9,
    0x0020,
    0x05DC, 0x05D4, 0x05DB, 0x05E0, 0x05D9, 0x05E1,
    0x0020,
    0x05E7, 0x05D5, 0x05D3,
    0x0020,
    0x05D6, 0x05D3, 0x05D5, 0x05E0, 0x05D9
)

[System.Windows.MessageBox]::Show(
    $message,
    "PowerShell Gallery Test",
    [System.Windows.MessageBoxButton]::OK,
    [System.Windows.MessageBoxImage]::Warning
) | Out-Null