Mojoala
Mojoala

Reputation: 13

Debugging a Windows Script File *.WSF. Get this error "No disassembly available."

I have a batch file which is supposed to prompt the debugger using db2cmd cscript //x C:\TEMP\NCANDS.wsf %1%.

But instead of going to my code, I get a disassembly tab labeled "No disassembly available". It doesn't matter whether I select a New Instance or the current instance.

Why?

I have 6 other developers that have the same configuration as I and they are not getting the error running the same script.

Upvotes: -4

Views: 67

Answers (2)

Mojoala
Mojoala

Reputation: 13

I ended up downloading the community edition of 2022 version and selecting it instead of our current version.

Upvotes: 0

Neelkamal
Neelkamal

Reputation: 1

The error "No disassembly available" typically occurs when debugging a Windows Script File (*.WSF) because the script is interpreted rather than compiled, and debuggers that support disassembly are generally designed for compiled code.

Upvotes: -2

Related Questions