#include "../PsExec.hpp" #ifdef __linux__ #elif _WIN32 #include #endif bool testPsExec(); int main() { bool res; std::cout << "[+] testPsExec" << std::endl; res = testPsExec(); if (res) std::cout << "[+] Sucess" << std::endl; else std::cout << "[-] Failed" << std::endl; return 0; } bool testPsExec() { // std::unique_ptr PsExec = std::make_unique(); // { // } return false; }