Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidXanatos committed Dec 12, 2022
1 parent 013c4b4 commit 9df96fa
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
9 changes: 0 additions & 9 deletions TaskExplorer+Libs.sln
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TaskExplorer", "TaskExplore
{60BAFB1E-D98B-39C3-ACB6-A226C0BC0577} = {60BAFB1E-D98B-39C3-ACB6-A226C0BC0577}
{7F6D2442-3BC4-4936-B75E-85A77B412A18} = {7F6D2442-3BC4-4936-B75E-85A77B412A18}
{7AB8215A-59A4-4B8B-8090-16C87A860429} = {7AB8215A-59A4-4B8B-8090-16C87A860429}
{D6FB935D-9B00-4034-A6B0-59DA2FF60826} = {D6FB935D-9B00-4034-A6B0-59DA2FF60826}
{8918CF5D-9002-40FF-9F60-8A1835FC78EC} = {8918CF5D-9002-40FF-9F60-8A1835FC78EC}
{AD024598-C200-4ABC-8432-3079B647C1E3} = {AD024598-C200-4ABC-8432-3079B647C1E3}
{36F9C4C9-F435-4BA7-B601-99EE259C3621} = {36F9C4C9-F435-4BA7-B601-99EE259C3621}
Expand All @@ -34,8 +33,6 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MiscHelpers", "MiscHelpers\
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qtsingleapp", "qtsingleapp\qtsingleapp\qtsingleapp\qtsingleapp.vcxproj", "{36F9C4C9-F435-4BA7-B601-99EE259C3621}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TaskUtil", "TaskUtil\TaskUtil.vcxproj", "{D6FB935D-9B00-4034-A6B0-59DA2FF60826}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Expand Down Expand Up @@ -108,12 +105,6 @@ Global
{36F9C4C9-F435-4BA7-B601-99EE259C3621}.Release|x64.Build.0 = Release|x64
{36F9C4C9-F435-4BA7-B601-99EE259C3621}.Release|x86.ActiveCfg = Release|Win32
{36F9C4C9-F435-4BA7-B601-99EE259C3621}.Release|x86.Build.0 = Release|Win32
{D6FB935D-9B00-4034-A6B0-59DA2FF60826}.Debug|x64.ActiveCfg = Debug|Win32
{D6FB935D-9B00-4034-A6B0-59DA2FF60826}.Debug|x64.Build.0 = Debug|Win32
{D6FB935D-9B00-4034-A6B0-59DA2FF60826}.Debug|x86.ActiveCfg = Debug|Win32
{D6FB935D-9B00-4034-A6B0-59DA2FF60826}.Release|x64.ActiveCfg = Release|Win32
{D6FB935D-9B00-4034-A6B0-59DA2FF60826}.Release|x64.Build.0 = Release|Win32
{D6FB935D-9B00-4034-A6B0-59DA2FF60826}.Release|x86.ActiveCfg = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
2 changes: 1 addition & 1 deletion TaskExplorer/API/Windows/ProcessHacker/RunAs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ BOOLEAN PhShellProcessHackerEx(
BOOLEAN result;
PPH_STRING applicationFileName;

if (!(applicationFileName = PhGetApplicationFileName()))
if (!(applicationFileName = PhGetApplicationFileNameWin32()))
return FALSE;

result = PhShellExecuteEx(
Expand Down
3 changes: 1 addition & 2 deletions TaskExplorer/GUI/TaskExplorer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -567,8 +567,7 @@ CTaskExplorer::CTaskExplorer(QWidget *parent)
else if (((CWindowsAPI*)theAPI)->HasDriverFailed() && theAPI->RootAvaiable())
{
QString Message = tr("Failed to load %1 driver, this could have various causes.\r\n"
"The driver file may be missing, or is wrongfully detected as malicious by your anti-virus application and is being blocked.\r\n"
"If this is the case you need to add an exception in your AV product for the xprocesshacker.sys file."
"Currently the driver is not signed, pelase enable test signing (bcdedit /set testsigning on) to use kernel features."
).arg(((CWindowsAPI*)theAPI)->GetDriverFileName());

bool State = false;
Expand Down

0 comments on commit 9df96fa

Please sign in to comment.