The pop-up is from Windows Terminal when it tries to start Windows PowerShell with administrator (elevated) rights but is not allowed to. The message
The requested operation requires elevation
means the command or profile is configured to run with elevated permissions, but Windows Terminal itself was started as a normal (non‑admin) app.
What it’s telling:
- A PowerShell profile or startup command is trying to run something that needs admin rights at logon/startup.
- Because Windows Terminal is not elevated, PowerShell fails to launch and shows this error.
What to do:
- If elevation is not needed at startup
- Open Windows Terminal.
- Open Settings → check the default profile and any PowerShell profile commands.
- Remove or change any startup command that explicitly requires admin rights (for example, scripts that modify system settings or use
Start-Process ... -Verb RunAs).
- If elevation is required
- Close the current Terminal window.
- Right‑click the Windows Terminal icon → choose “Run as administrator”.
- The elevated Terminal can then launch the PowerShell profile without this error.
- To stop seeing the banner
- After fixing the profile or choosing to always run Terminal as admin when needed, the error will no longer appear. The “Don’t show again” button only hides the informational banner; it does not fix the elevation requirement.
References: