Skip to content

Commit

Permalink
ksisup encourage canary for latest kernel support
Browse files Browse the repository at this point in the history
  • Loading branch information
jxy-s committed Dec 11, 2024
1 parent b71dc84 commit 0d54dc4
Showing 1 changed file with 26 additions and 10 deletions.
36 changes: 26 additions & 10 deletions SystemInformer/ksisup.c
Original file line number Diff line number Diff line change
Expand Up @@ -821,16 +821,32 @@ VOID KsiConnect(

if (status == STATUS_SI_DYNDATA_UNSUPPORTED_KERNEL)
{
PhShowKsiMessageEx(
WindowHandle,
TD_ERROR_ICON,
0,
FALSE,
L"Unable to load kernel driver",
L"The kernel driver is not yet supported on this kernel "
L"version. Request support by submitting a GitHub issue with "
L"the Windows Kernel version."
);
if (PhGetPhReleaseChannel() < PhCanaryChannel)
{
PhShowKsiMessageEx(
WindowHandle,
TD_ERROR_ICON,
0,
FALSE,
L"Unable to load kernel driver",
L"The kernel driver is not yet supported on this kernel "
L"version. For the latest kernel support switch to the Canary "
L"update channel (Help > Check for updates > Canary > Check)."
);
}
else
{
PhShowKsiMessageEx(
WindowHandle,
TD_ERROR_ICON,
0,
FALSE,
L"Unable to load kernel driver",
L"The kernel driver is not yet supported on this kernel "
L"version. Request support by submitting a GitHub issue with "
L"the Windows Kernel version."
);
}
goto CleanupExit;
}

Expand Down

0 comments on commit 0d54dc4

Please sign in to comment.