- Aug
- 2,308
- 111
Code:
c:\users\jlc\utils>ver
TCC 23.00.28 x64 Windows 7 [Version 6.1.7601]
When using the ATTRIB Dialog;
Note that this creates the command line;
Code:
c:\users\jlc\utils>ATTRIB +Hreal.btm
TCC: (Sys) The parameter is incorrect.
"eal.btm"
Usage : ATTRIB [/A:[[-][+]rhsdaecjlot] /D /E /I"text" /L /N[ej] /O:[-]adegnrstu /P /Q /Sn] [+|-[AHIORST]] file ...
...which is incorrect. The command line should be;
Code:
c:\users\jlc\utils>attrib +h real.btm
___A_____________ -> _H_A_____________ C:\Users\jlc\utils\real.btm
Joe