Skip to content

Commit c9ede01

Browse files
committed
fix(pedm): rename the shell extension sub directory to ShellExt
1 parent c10da48 commit c9ede01

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package/AgentWindowsManaged/Actions/CustomActions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ public static ActionResult RegisterExplorerCommand(Session session)
280280
try
281281
{
282282
string installDir = session.Property(AgentProperties.InstallDir);
283-
string dllPath = Path.Combine(installDir, "contextmenu", Includes.SHELL_EXT_BINARY_NAME);
283+
string dllPath = Path.Combine(installDir, "ShellExt", Includes.SHELL_EXT_BINARY_NAME);
284284

285285
if (!File.Exists(dllPath))
286286
{

package/AgentWindowsManaged/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ static void Main()
258258
Dirs = new[]
259259
{
260260
new Dir(Features.PEDM_FEATURE, "desktop", new Files(Features.PEDM_FEATURE, $"{DevolutionsDesktopAgentPath}\\*.*")),
261-
new Dir(Features.PEDM_FEATURE, "contextmenu",
261+
new Dir(Features.PEDM_FEATURE, "ShellExt",
262262
new File(Features.PEDM_FEATURE, DevolutionsPedmShellExtDll),
263263
new File(Features.PEDM_FEATURE, DevolutionsPedmShellExtMsix))
264264
}

0 commit comments

Comments
 (0)