I think that TEMP and path are not part of the supported options.
/TEMP worked for you as an abbreviation of the documented /TEMPORARY option.
Also note that contrary to the other options before it, it is part of a longer string "TEMP path":
Code: Select all
C:\Windows\System32>strings sort.exe | ag "[a-z]{4,}"
[Uninteresting garbage]
case_sensitive
locale
memory
output
reverse
record_maximum
temporary
uni_output
unique
TEMP path
<unknown>
[Lots of function names, etc]
C:\Windows\System32>ag -a "TEMP\x20path" sort.exe
Binary file sort.exe matches.
C:\Windows\System32>
So beyond uni_output and unique, the only other undocumented option would be /CASE_SENSITIVE.
I tested it. It is accepted as switch, complete or abbreviated, but does not seem to have any effect:
Code: Select all
C:\Windows\System32>dir /b \ | sort /CASE_SENSITIVE
.pytest_cache
_Backup_Dirs.txt
_Backup_Files.txt
Data
DDA
Downloads
hello.py
inetpub
Intel
JFL
MASM
Mnt
MSVC
old1
PerfLogs
Program Files
Program Files (x86)
Python27amd64
SWSetup
Symbols
Temp
Users
usr
Windows
C:\Windows\System32>