Strings in C:\Windows\System32\en-US\cmd.exe.mui

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
npocmaka_
Posts: 512
Joined: 24 Jun 2013 17:10
Location: Bulgaria
Contact:

Strings in C:\Windows\System32\en-US\cmd.exe.mui

#1 Post by npocmaka_ » 27 Jan 2016 11:58

C:\Windows\System32\en-US\cmd.exe.mui contains locale dependent messages thrown by the cmd.exe (other commands also have such files)

Just looked inside and I've found this ...


Code: Select all

Allows control of file operations via transactions to commit or abort
changes.
TRANSACTION [/START | /COMMIT | /ROLLBACK | /SUSPEND | /RESUME]
   /START    - Start a new transaction.  Only one can be pending
               at a time.
   /COMMIT   - Commit all changes for the current transaction.
   /ROLLBACK - Rolls back all changes for the current transaction.
   /SUSPEND  - Disables the running transaction, leaving it pending,
               and continue in non-transacted mode.
   /RESUME   - Enable the transaction disabled with suspend.
For both commit and rollback, the transaction is then closed after
the command executes.
If no argument is given, this command displays the current state of the
transaction for CMD.EXE.
Transaction ID: %1
An active transaction is in progress.
There is no active transaction.
A transaction has been successfully started.
There is no transaction to commit, rollback, suspend or resume.
An active transaction is already in progress. A new one cannot
be started until the current one is committed or rolled back.
Cannot commit or rollback a transaction that has been inherited
from another process.
Cannot commit a transaction that was started outside of a batch
file from within a batch file.
Cannot suspend a transaction because a transaction is already
suspended.
Cannot resume a transaction because no transaction is currently
suspended.
Cannot resume a transaction suspended in a previous batch file.
Transaction successfully resumed.
Transaction successfully suspended.
There are still %1 process(es) running within this
transaction.  Commit or rollback will continue once those
processes have terminated.
This transaction has already been rolled back.
The current transaction has been rolled back.
The current transaction has been rolled back because
CMD exited or the batch file completed.
This transaction has already been committed.
The current transaction has been committed.
The current transaction has been committed or aborted outside of
CMD, and has been successfully abandoned.
Failed to query transaction state.  Unknown outcome state is %1
Administrator: %0
Local volumes are required to complete the operation.



































































but be prepared for a big disappointment

Post Reply