cmderdev/cmder

[Bug] Predefined task: as Admin

xiaoxstz opened this issue · 0 comments

Version Information

Cmder version:`1.3.24`
Operating system: Windows 10 Pro(22H2)

Cmder Edition

Cmder Mini

Description of the issue

The predefined task PowerShell::Powershell as Admin (show below)cannot open Powershell as admin

*PowerShell -ExecutionPolicy Bypass -NoLogo -NoProfile -NoExit -Command "Invoke-Expression 'Import-Module ''%ConEmuDir%..\profile.ps1'''"

The predefined task cmd::Cmder as Admin (show below) cannot open Powershell as admin

*cmd /k ""%ConEmuDir%..\init.bat" "

How to reproduce

image

image

Additional context

I have a solution for PowerShell::Powershell as Admin . Change the setting to below

powershell.exe -new_console:a -ExecutionPolicy Bypass -NoLogo -NoProfile -NoExit -Command "Invoke-Expression 'Import-Module ''%ConEmuDir%..\profile.ps1'''"

The key point is the parameter -new_console:a

Checklist

  • I have read the documentation.
  • I have searched for similar issues and found none that describe my issue.
  • I have reproduced the issue on the latest version of Cmder.
  • I am certain my issues are not related to ConEmu, Clink, or other third-party tools that Cmder uses.