This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #-------------------------------------------------------------# | |
| #----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 file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# 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] |