Skip to content

Instantly share code, notes, and snippets.

@COFFEETALES
COFFEETALES / EdgeChromium.ps1
Last active September 28, 2024 14:06
PowerShell, Winforms and WebView 2, the getting started app
Param ( [String]$URL = 'https://coffeetales.net', [String]$Mode = 'Default' )
If ( 'Default' -ieq $Mode ) {
#[String]$WindowsPowershellPath =
# [IO.Path]::Combine(
# ([String[]]@( [Environment]::SystemDirectory, 'WindowsPowerShell', 'v1.0', 'powershell.exe' ))
# )
[String]$PowerShellPath = Get-Process -Id $PID | Select-Object -ExpandProperty Path
Start-Process `
@COFFEETALES
COFFEETALES / EdgeHTML.ps1
Created December 29, 2020 12:26
PowerShell, WinForms and EdgeHTML control
Param ( [String]$URL = 'https://coffeetales.net', [String]$Mode = 'Default' )
If ( 'Default' -ieq $Mode ) {
[String]$WindowsPowershellPath =
[IO.Path]::Combine(
([String[]]@( [Environment]::SystemDirectory, 'WindowsPowerShell', 'v1.0', 'powershell.exe' ))
)
Start-Process -Wait -FilePath $WindowsPowershellPath `
-ArgumentList (