a simple script to convert .webp image files to jpg, gif or png. It is in powershell 1.0, it will open a browse for source image box, then it will open a box to select jpg,gif or png as the output format and it uses ffmpeg to it. Add-Type -AssemblyName System.Windows.Forms# Function to display a folder browser dialog and return the selected folder pathfunction Get-FolderDialog { $folderDialog = New-Object System.Windows.Forms.FolderBrowserDialog $folderDialog.ShowNewFolderButton = $false $result = $folderDialog.ShowDialog()  ... Read More









