Skip to content

Instantly share code, notes, and snippets.

View VV-B0Y's full-sized avatar
πŸ’­
🀘😜

Jerome VV-B0Y

πŸ’­
🀘😜
View GitHub Profile
@VV-B0Y
VV-B0Y / TabbedTemplateGUI.ps1
Last active February 28, 2023 12:41
PoshGUI Template
#-------------------------------------------------------------#
#----Initial Declarations-------------------------------------#
#-------------------------------------------------------------#
$Icon = (Get-ChildItem -File C:\Users\$ENV:USERNAME\Pictures\).name | Get-Random #Change this to whatever path to a .png icon you'd like to display in the GUI
Add-Type -AssemblyName PresentationCore, PresentationFramework
$Xaml = @"
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
<# This Script uses: 'https://opentdb.com/api_config.php' to generate Trivia Questions & Answers #>
function Get-Trivia {
param (
[Parameter(Mandatory)]
[ValidateSet("easy", "medium", "hard")]
[String]
$Difficulty,
[Parameter(Mandatory)]
[Int]