You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
defender-control/src/defender-control/main.cpp

58 lines
1.4 KiB
C++

// to-do:
// make a ui for this
//
#include "dcontrol.hpp"
#include "wmic.hpp"
#include "trusted.hpp"
int main(int argc, char** argv)
{
if (!trusted::has_admin())
{
printf("Must run as admin!\n");
system("pause");
return EXIT_FAILURE;
}
// Because we are a primary token, we can't swap ourselves with an impersonation token.
// There will always be a need to re-create the process with the token as primary.
if (!trusted::is_system_group() && argc == 1)
{
printf("Restarting with privileges\n");
trusted::create_process(util::get_current_path());
return EXIT_SUCCESS;
}
try
{
dcontrol::kill_smartscreen();
dcontrol::manage_windefend(false);
dcontrol::toggle_tamper(false);
printf(dcontrol::check_defender() ?
"Windows defender is ACTIVE\n" :
"Windows defender is OFF\n");
#if DEFENDER_CONFIG == DEFENDER_DISABLE
if (dcontrol::disable_defender())
printf("Disabled windows defender!\n");
else
printf("Failed to disable defender...\n");
#elif DEFENDER_CONFIG == DEFENDER_ENABLE
if (dcontrol::enable_defender())
printf("Enabled windows defender!\n");
else
printf("Failed to enable defender...\n");
#elif DEFENDER_CONFIG == DEFENDER_GUI
#endif
}
catch (std::exception e)
{
printf("%s\n", e.what());
}
system("pause");
return EXIT_SUCCESS;
}