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
# PowerShell script for retrieving Gacha URL | |
# Base script by jogerj | |
# Rewrite by Miraiwangy | |
function Expand-ZIPFile($file, $destination) { | |
$shell = New-Object -ComObject Shell.Application | |
$zip = $shell.NameSpace($file) | |
if ($zip -eq $null) { | |
Write-Host "Could not open ZIP file: $file" -ForegroundColor Red |