As in BAT/CMD files, it would be helpful to implement "SET myownvariable=value" in WinCmd.ini.
%myownvariable% could then be used in various places of WinCmd.ini, such as paths, file lists, etc.
This little feature could help all those who edit their ini file manually.
Allow user-defined variables within WinCmd.ini
Moderators: Hacker, petermad, Stefan2, white
Allow user-defined variables within WinCmd.ini
Personal licence #34918 and proud of it!
TC64 und TC32, immer neueste Version, als Portable Apps
Win 10, immer aktuell
TC64 und TC32, immer neueste Version, als Portable Apps
Win 10, immer aktuell
You can use Autorun plugin in order to define your custom environment variables.
- Balderstrom
- Power Member
- Posts: 2148
- Joined: 2005-10-11, 10:10 UTC
You can also just creat a batch (.bat|.cmd) file to launch TC.
SETENV.exe (from Vincent Fatica's Home Page) can also be used to set permanent (or temporary) environment variables, without manually editting such variables via:
"My Computer" / Properties / System Properties / [Advanced] / [Environment Variables]
Code: Select all
SET myownvariable=value
START "" "C:\TC\TotalCmd.exe"
"My Computer" / Properties / System Properties / [Advanced] / [Environment Variables]
SETENV -u name value (User Environment, current User only)
SETENV -m name value (Machine Environment, e.g. All Users)
SETENV -d name value (Default User environment)
SETENV -v name value (Volatile, removed after reboot)