create blank .txt file with a batch file how?
#1
Posted 02 July 2006 - 01:47 PM
#2
Posted 02 July 2006 - 02:02 PM
echo >> blank.txt
give you a file with the words "Echo is on."
If you do
echo . >> blank.txt
you'll get a text file with the period.
If you know the escape sequence for the space, you might be able to get a blank file.
#3
Posted 02 July 2006 - 02:13 PM
#4
Posted 02 July 2006 - 02:38 PM
w
q
The first line will tell DEBUG to write a file, the second will end DEBUG. You can now use the TEST.DBG file to create a zero-length file. Here's an example:
DEBUG ZEROLEN.TXT <TEST.DBG
The above command will create a zero-length file of the name ZEROLEN.TXT. A possible limitation is that DEBUG is a DOS program and only understands 8-dot-3 names for files and directories.
You can use this method to change the size of any file to zero bytes, but the TEST.DBG file would be six lines:
rbx
0
rcx
0
w
q
The above is limited to files whose original size was 512K or smaller. It also will not work on .EXE files, or on those which cannot be modified due to lack of permission or read-only status.
mhc
#5
Posted 02 July 2006 - 03:03 PM
wuauclt > blank.txt
wuauclt was first program I could think of that never produces any output.
If you have a C compiler you can compile this program that does nothing and use it instead of wuauclt.
int main(){}
This post has been edited by Bezalel: 02 July 2006 - 03:05 PM
#6
Posted 02 July 2006 - 03:35 PM
edit: what i was trying to do was delete all the ??.lproj folders and their contents except for the en.lproj folders in iTunes. anyway i've created the following batch file to get rid of the ipodservice.exe and ituneshelper.exe processes, as well as all the useless foreign language stuff, as it was getting annoying doing it manually after every update etc.
i've managed to hack it enough to get it to get rid of all the files atleast, but its far from an elegant, simple, solution, and the folders are still there.
can anyone improve?. hopefully it'll be of use to some people too.. (tried to upload as .bat but didn't let me..
taskkill /IM iTunesHelper.exe /F c: cd c:\Program Files\iTunes\ del iTunesHelper.exe type nul>iTuneshelper.exe attrib +R iTuneshelper.exe taskkill /IM ipodservice.exe /F cd c:\Program Files\ipod\bin\ del * /q /f /s type nul>iPodService.exe attrib +R iPodService.exe cd C:\Program Files\iTunes\iTunesMiniPlayer.Resources\ taskkill /IM iTunes.exe /F move en.lproj ..\ move itunesminiplayer.dll ..\i del * /q /f /s move ..\en.lproj . move ..\i .\itunesminiplayer.dll cd C:\Program Files\iTunes\iTunesHelper.Resources\ move en.lproj ..\ move ituneshelper.dll ..\ del * /q /f /s move ..\en.lproj .\ move ..\ituneshelper.dll . cd C:\Program Files\iTunes\iTunes.Resources\ move en.lproj ..\ move itunes.dll ..\ move itunesregistry.dll ..\ move itunes.qtr ..\ del * /q /f /s move ..\en.lproj . move ..\itunes.dll .\ move ..\itunesregistry.dll . move ..\itunes.qtr .**** command prompt can be a PITA!
..eh, u sensor the word dam'n now?
This post has been edited by mb2: 02 July 2006 - 08:42 PM
#7
Posted 02 July 2006 - 04:37 PM
type nul>test.txtTo 'delete folders', (if you used the correct terminology, it may be easier to look up), use RD (Remove Directory). For its usage open a command prompt and type & enter
RD /?
#8
Posted 02 July 2006 - 04:46 PM
#9
Posted 02 July 2006 - 07:31 PM
#10
Posted 02 July 2006 - 08:44 PM
for %a in ( name* ) do rd %asorry.. can u say that some other way i'm not getting it. does %a replace * ..or?
#11
Posted 02 July 2006 - 09:05 PM
mb2, on Jul 3 2006, 03:05 AM, said:
edit: what i was trying to do was delete all the ??.lproj folders and their contents except for the en.lproj folders in iTunes. anyway i've created the following batch file to get rid of the ipodservice.exe and ituneshelper.exe processes, as well as all the useless foreign language stuff, as it was getting annoying doing it manually after every update etc.
i've managed to hack it enough to get it to get rid of all the files atleast, but its far from an elegant, simple, solution, and the folders are still there.
can anyone improve?. hopefully it'll be of use to some people too.. (tried to upload as .bat but didn't let me..
taskkill /IM iTunesHelper.exe /F c: cd c:\Program Files\iTunes\ del iTunesHelper.exe type nul>iTuneshelper.exe attrib +R iTuneshelper.exe taskkill /IM ipodservice.exe /F cd c:\Program Files\ipod\bin\ del * /q /f /s type nul>iPodService.exe attrib +R iPodService.exe cd C:\Program Files\iTunes\iTunesMiniPlayer.Resources\ taskkill /IM iTunes.exe /F move en.lproj ..\ move itunesminiplayer.dll ..\i del * /q /f /s move ..\en.lproj . move ..\i .\itunesminiplayer.dll cd C:\Program Files\iTunes\iTunesHelper.Resources\ move en.lproj ..\ move ituneshelper.dll ..\ del * /q /f /s move ..\en.lproj .\ move ..\ituneshelper.dll . cd C:\Program Files\iTunes\iTunes.Resources\ move en.lproj ..\ move itunes.dll ..\ move itunesregistry.dll ..\ move itunes.qtr ..\ del * /q /f /s move ..\en.lproj . move ..\itunes.dll .\ move ..\itunesregistry.dll . move ..\itunes.qtr .**** command prompt can be a PITA!
..eh, u sensor the word dam'n now?
Use 4NT as a replacement for cmd.exe It can do really fancy stuff. You can also try 4dos version 7.5 which is now free.
#12
Posted 07 July 2006 - 08:12 AM
This post has been edited by mb2: 07 July 2006 - 08:15 AM



Help
Back to top










