shadowbrokers-exploits/windows/Resources/Ep/Scripts/KeeperLatch/SetupEnv.eps
2017-04-14 11:45:07 +02:00

30 lines
605 B
PostScript

#########################################################################
#
# File: SetupEnv.eps
#
# Modifications:
# 16 Jan 2004 Created
#########################################################################
@include "Include\\SetupLotus.epm";
bool $LNPathFound;
string $dataPath;
if (SetupLotusEnv($LNPathFound, $dataPath)) {
SetCmdData(BOOL, "LotusPathFound", $LNPathFound);
SetCmdData(STRING, "LotusDataPath", $dataPath);
SetEnv("kl_lotusPathFound", "$LNPathFound");
SetEnv("kl_lotusDataPath", $dataPath);
return true;
}
return false;