shadowbrokers-exploits/windows/Resources/Pc2.2/Scripts/Install/_Pc2.2Uninstall.dss

20 lines
372 B
Text
Raw Normal View History

@include "_Versions.dsi";
@echo off;
string $os;
if (!_GetOsFamily($os))
{
echo("* Failed to get OS for uninstall", ERROR);
return false;
}
string $lines;
if (!ReadFile("%_sgEnv{'script_path'}/$os/_Pc2.2Uninstall.dss", $lines))
{
echo("* No uninstall script found for $os", ERROR);
return false;
}
return `script "%_sgEnv{'script_path'}/$os/_Pc2.2Uninstall.dss"`;