View Single Post
Staro 23.05.2007., 13:10   #4
zerobravo
Fantom Slobode
Moj komp
 
zerobravo's Avatar
 
Datum registracije: Jul 2006
Lokacija: Zagreb
Postovi: 15
ovo ti je skripta za ispis u text obliku:

@echo off
dir %1 /-p /o:gn > "%temp%\Listing"
start /w notepad "%temp%\Listing"
exit

napisi to u nekom text editoru i samo rename-aj txt extenziju u bat.

za direktan ispis na printer, ovako izgleda:

@echo off
dir %1 /-p /o:gn > "%temp%\Listing"
start /w notepad /p "%temp%\Listing"
del "%temp%\Listing"
exit
zerobravo je offline   Reply With Quote