Hi Gary
The HNAS does support alternate data streams
Here are some basic ADS operations that you can try from the Windows cmd shell
# create main file
@echo This is the main part of the file >ADS-Demo.txt
# create alternate data stream
@echo This is the alternate part >ADS-Demo.txt:myads.txt
# list directory and display alternate data streams
dir /r
# display content in alternate data stream ( assumes alternate data stream
content is plain-text )
more < ADS-Demo.txt:myads.txt
Andy