Thanks again for your detailed updates — really helpful for narrowing things down. Since the usual fixes haven’t resolved the issue, here’s a more comprehensive plan that might get things working again:
Next Steps to Resolve the Visual Studio Debugging Issue
- Ensure Script Debugging Is Fully Enabled
Check your system-level settings:
Go to Internet Options > Advanced
Under Browsing, make sure both:
“Enable script debugging (Internet Explorer)”
“Enable script debugging (Other)” …are checked.
```2. **Verify Script Engine Registration**
Based on the CLSID `{94A554C5-71CE-430C-A466-941A9EC1BDFB}`, it may be related to a script debugging COM component.
Open **regedit**
Navigate to `HKEY_CLASSES_ROOT\CLSID`
Confirm that the `{94A...}` key is present and correctly registered
To re-register key components:
Next Steps to Resolve the Visual Studio Debugging Issue
1. **Ensure Script Debugging Is Fully Enabled**
Check your system-level settings:
Go to **Internet Options > Advanced**
Under **Browsing**, make sure both:
“Enable script debugging (Internet Explorer)”
```dockerfile
“Enable script debugging (Other)” …are checked.
```2. **Verify Script Engine Registration**
Based on the CLSID `{94A554C5-71CE-430C-A466-941A9EC1BDFB}`, it may be related to a script debugging COM component.
Open **regedit**
Navigate to `HKEY_CLASSES_ROOT\CLSID`
Confirm that the `{94A...}` key is present and correctly registered
To re-register key components:
bat
```yaml
regsvr32 jscript.dll
regsvr32 vbscript.dll
- Manually Load the Script as a Workaround
Until the script loads automatically, try this approach:
Open Visual Studio
Use File > Open > File… to load your ALM workflow script manually
Set breakpoints as needed
Then Attach to Process normally
- Confirm Debugging Components Are Installed
In Visual Studio Installer:
Choose Modify
Check under Individual Components for script debugging options (e.g., “JavaScript diagnostics,” “Web development tools,” etc.)
- Try an Alternate Visual Studio Build
Some recent updates may affect attach-to-script behavior:
If possible, test using:
- Visual Studio 2022 17.9.x
OR the Preview edition
- Enable Diagnostic Logging
Run Visual Studio with:
bash
devenv /log
Check log file at:
%APPDATA%\Microsoft\VisualStudio\<version>\ActivityLog.xml
It may contain silent errors or loading failures.
- Contact OpenText Support
If none of the above resolves it, the ALM workflow debugging may have changed for Windows 11. Reaching out via OpenText’s Community Thread is a good move — they might have platform-specific updates.
Let me know if the issue persists after following these steps. I’ll be happy to assist further if needed. If the issue has been resolved, kindly mark the response as answered."