Hi SDF,
To launch Active Directory Users and Computers with alternate credentials immediately, you must bypass the shortcut and call the Management Console executable directly with the ADUC snap-in as the argument. The correct syntax is runas /user:DOMAIN\TargetUser "mmc %SystemRoot%\system32\dsa.msc". This will prompt for the password and launch the console without relying on the unstable Windows Explorer shell.
Regarding the Explorer crash, the specific failure on Shift + Right-click and "Show More Options" confirms that a third-party Context Menu Handler is triggering an unhandled exception when the legacy context menu (IContextMenu) is invoked. Since the crash happens specifically on shortcuts in the Administrative Tools folder, the faulting extension is likely attempting to resolve the shortcut target or render an icon overlay and failing due to incompatibility with the Windows 11 24H2 kernel or UI automation layer.
You can identify the exact culprit by opening Event Viewer (eventvwr.msc) and filtering the Application log for Event ID 1000 (Application Error) at the timestamp of the crash. Inspect the Faulting module path. If this path points to a non-Microsoft DLL (common offenders include older versions of PDF editors, context-menu-based compression tools, or cloud storage icon overlays), you must uninstall that application or use the Sysinternals Autoruns utility to uncheck the specific context menu handler under the Explorer tab. If the faulting module is listed as a generic Windows component like ucrtbase.dll or windows.storage.dll, it still indicates a third-party extension is passing invalid parameters to the system; in this case, proceed with disabling non-Microsoft context menu extensions one by one until stability returns.
I hope you've found something useful here. If it helps you get more insight into the issue, it's appreciated to accept the answer. Should you have more questions, feel free to leave a message. Have a nice day!
VP