💾 Archived View for niedzwiedzinski.cyou › windows.gmi captured on 2024-07-08 at 23:27:07. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2021-11-30)

-=-=-=-=-=-=-

MS Windows

I find Windows hard to use, here's some examples

Notifications

Windows:

powershell -Command "& {Add-Type -AssemblyName System.Windows.Forms; Add-Type -AssemblyName System.Drawing; $notify = New-Object System.Windows.Forms.NotifyIcon; $notify.Icon = [System.Drawing.SystemIcons]::Information; $notify.Visible = $true; $notify.ShowBalloonTip(0, 'Hello world', 'This is called from a batch script.', [System.Windows.Forms.ToolTipIcon]::None)}"

Linux/BSD:

notify-send "Hello world" "This is called from a script."