Changes between Initial Version and Version 1 of Ticket #3868, comment 2


Ignore:
Timestamp:
03/11/22 12:01:24 (2 years ago)
Author:
mLipok
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3868, comment 2

    initial v1  
    1111
    1212So this should work.
    13 I'm investigating as it still works on my other scripts.
     13I'm investigating as it still works on my other scripts, but as you stated this is related to the comment after RequireAdmin
     14
     15
     16{{{
     17#RequireAdmin ; some comment
     18ConsoleWrite("Normal output" & @CRLF) ; NOT WORKS because of used comment after #RequireAdmin
     19ConsoleWriteError("Error output" & @CRLF) ; NOT WORKS because of used comment after #RequireAdmin
     20Exit
     21}}}