Windows: how to display a non-blocking Alert / Confirmation window?

I want to implement a simple confirmation / warning window that can be called up using the Windows XP / Vista script management package via the CLI.

The standard alert field seems to block, which means that the entire batch of script will stop when the alert window is called, which is NOT what I want.

If necessary for coding, provide an example or documentation. A language can be anything that can be compiled without requiring a virtual machine between them.

+3
source share
2 answers
start MessageBox.vbs

... where it MessageBox.vbscontains the call to the MsgBox function.

+4

msg:

Send a message to a user.

MSG {username | sessionname | sessionid | @filename | *}
    [/SERVER:servername] [/TIME:seconds] [/V] [/W] [message]

  username            Identifies the specified username.
  sessionname         The name of the session.
  sessionid           The ID of the session.
  @filename           Identifies a file containing a list of usernames,
                      sessionnames, and sessionids to send the message to.
  *                   Send message to all sessions on specified server.
  /SERVER:servername  server to contact (default is current).
  /TIME:seconds       Time delay to wait for receiver to acknowledge msg.
  /V                  Display information about actions being performed.
  /W                  Wait for response from user, useful with /V.
  message             Message to send.  If none specified, prompts for it
                      or reads from stdin.

msg * Some text

. , .

, , . (, ) 0% (. Jef Raskin: Humane Interface). 4-3: : : , , ).

+4

Source: https://habr.com/ru/post/1708001/


All Articles