mirror of
https://github.com/a2-4am/4cade.git
synced 2024-11-19 02:10:39 +00:00
9 lines
332 B
JavaScript
9 lines
332 B
JavaScript
a = new ActiveXObject("scripting.filesystemobject")
|
|
for (b = new Enumerator(a.GetFolder(WScript.Arguments(0)).files); !b.atEnd(); b.moveNext())
|
|
{
|
|
if (a.GetExtensionName(b.item()).toLowerCase() == "po")
|
|
{
|
|
new ActiveXObject("WScript.Shell").run("cadius EXTRACTVOLUME " + '"' + b.item() + '"' + " build/X/", 0)
|
|
}
|
|
}
|