Hi is there a way to create a fixlet which prompts the user to input some value while creating an action.
This value will then be written to a text file on the server in d:\sysadmin\verification.txt
Thanks
Hi is there a way to create a fixlet which prompts the user to input some value while creating an action.
This value will then be written to a text file on the server in d:\sysadmin\verification.txt
Thanks
yes, you can use the command
action parameter query "<parameter name>" [with description "<description>"] [and] [with default [value] "<default value>"]
example:
action parameter query "verification" with description "enter your input"
waithidden cmd.exe /c echo {parameter "verification" of action as string} > d:\sysadmin\verification.txt
Thanks very much that worked !!