PDCに参加

http://www.dblab.is.tsukuba.ac.jp/~okano/samba/Samba.html

 useradd -s /bin/false win$
 smbpasswd -m -a win

http://eshima.net/main/menu.php?ttl=samba

desktop.iniが出てしまうのを抑制

http://www.samba.gr.jp/project/kb/J0/0/75.html
によるとsambaの仕様らしいので
smb.confに以下を記述し

 hide files = /desktop.ini/
 map system = Yes
 map hidden = Yes

とした上で以下を /homeで実行

 find . -name "desktop.ini" -exec chmod u+x \{} \;
 find . -name "desktop.ini" -exec touch \{} \;