Open cmd and powershell here not working, but opening admin versions works

Below are 2 sets of buttons for command/powershell prompts. There is a normal version and one that opens each in admin for the current directory that the button is pressed from.

These buttons have worked for a long time but I noticed today that the regular non-admin versions dont launch. The admin version of the buttons do work.

I am runnign Windows 11 Pro 24H2 Build: 26100.6901

Command:

<?xml version="1.0"?>
<button backcol="none" display="both" icon_size="large" label_pos="right" textcol="none" type="menu_button">
	<label>Comma&amp;nd Prompt Here</label>
	<tip>Opens an elevated command prompt with the current folder set to the Lister&apos;s current path</tip>
	<icon1>/system/imageres.dll,-5323</icon1>
	<function type="normal">
		<instruction>wt.exe -d {sourcepath|noterm} cmd.exe</instruction>
	</function>
	<button backcol="none" display="both" icon_size="large" label_pos="right" textcol="none">
		<label>Comma&amp;nd Prompt Here (Admin)</label>
		<tip>Opens a command prompt with the current folder set to the Lister&apos;s current path</tip>
		<icon1>/system/imageres.dll,-5323</icon1>
		<function type="normal">
			<instruction>@admin:wt.exe -d {sourcepath|noterm} cmd.exe</instruction>
		</function>
	</button>
</button>

Powershell:

<?xml version="1.0"?>
<button backcol="none" display="both" icon_size="large" label_pos="right" separate="yes" textcol="none" type="menu_button">
	<label>Powe&amp;rShell Here</label>
	<tip>Opens an elevated PowerShell prompt with the current folder set to the Lister&apos;s current path</tip>
	<icon1>/system/imageres.dll,-5372</icon1>
	<function type="normal">
		<instruction>wt.exe -d {sourcepath|noterm} powershell.exe</instruction>
	</function>
	<button backcol="none" display="both" icon_size="large" label_pos="right" textcol="none">
		<label>Powe&amp;rShell Here (Admin)</label>
		<tip>Opens a PowerShell prompt with the current folder set to the Lister&apos;s current path</tip>
		<icon1>/system/imageres.dll,-5372</icon1>
		<function type="normal">
			<instruction>@admin:wt.exe -d {sourcepath|noterm} powershell.exe</instruction>
		</function>
	</button>
</button>

For wt, I use the -p switch that allows to specify a profile, and it works fine:

wt.exe -p cmd -d {sourcepath}\.

EDIT: Works with powershell too:

wt.exe -p "PowerShell 7" -d {sourcepath}\.

All four buttons launch here.

I am running

Windows 11 25H2 build 26200.7019 (AMD64)
Directory Opus 13.19.6.0 build 9405 english

Have you tried Opus' built-in commands?

CLI DOSPROMPT=admin
CLI DOSPROMPT=admin,powershell
CLI DOSPROMPT=noadmin
CLI DOSPROMPT=noadmin,powershell

There must be something wrong with my system. I actually just did a fresh install of windows and everything worked fine but all of a sudden today launching normal versions arent working but admin versions do. Is there a dopus or windows setting that would prevent regular promts from loading but not prevent admin versions?

These below work, thank you!

CLI DOSPROMPT=admin
CLI DOSPROMPT=admin,powershell
CLI DOSPROMPT=noadmin
CLI DOSPROMPT=noadmin,powershell