Name of installer
How do I get the name of the installer that was set with the "Name" instruction?
I've seen ${^Name} used but I get an warning:
'unknown variable/constant "{^Name}" detected'
Is this normal?
Archive: Name of installer
Name of installer
How do I get the name of the installer that was set with the "Name" instruction?
I've seen ${^Name} used but I get an warning:
'unknown variable/constant "{^Name}" detected'
Is this normal?
Resolved, it's $(^Name) with parenthesis, not curly braces.
You used the wrong type of brackets.
Use $(^Name) instead of ${^Name}