Hi Mic, Noticed that when I tried to create a .bks file from notepad - it only saves it as ANSI. Opening up the .bks from ntbackup in notepad it reads fine,...
Hi guys in the past I've used enquire.com to what I am trying to do, however it is not working under Windows XP. What I want to do is write a batch file that...
Christian Rodriguez
CRodriguez@...
Apr 1, 2005 8:47 pm
5757
Hi Christian, The problem with using %username% as a variable in your prog is that it is already used by XP, hence why "echo %username%" will work without you ...
Thanks Derek, Garry and dfunk. You answered all my questions. I should have stated my actuall problem, instead of breaking it down into questions that I...
Hi I am running into a very frustrating problem with batch in XP sp2, that looks simple but I couldn't find a solution: I need to create a random or serialized...
Yes that was all that I was trying to do but I was able to find a different zip program that did batch zipping with just a GUI instead of needing a batch file....
... You are creating variables with spaces in their name. Try this: (untested) set /a count=0 set /a count+=1 set /a count2=%random% set seed1=temp%count% set...
On Mon, 4 Apr 2005 01:07:08 -0700 (PDT), Mr Richard Vance wrote: Untested @echo off for /f "delims=" %%a in ('dir *.* /b /a-d') do ( wzzip -m "%%~na.zip" "%%a"...
I am a beginner in batchfile programming. I would like to login automatically through telnet. I am able to go till login screen and curser points to enter the...
... Microsoft telnet isn't scriptable. Try this if you can find it Telnet Scripting Tool v.1.0 by Albert Yale http://ay.home.ml.org/ a utility to automate...
... This issue has probably roots in a for in do loop. Try this: @echo off for %%a in ( 1 2 3 4 5) do echo %random% pause for %%a in ( 1 2 3 4 5) do call...
Hi, Looking at the link you sent below, there was another link pointing towards "topics in C++ : random numbers". As it stands, I've been dappling with C/C++,...
Hi all, I have to rename files in a set of folder; the folder structure is like, Say parent folder is A (say) which will in turn will have 3 more folders and...
Hi, I'm trying to rewrite a script that shuts down comps on the network but I'm getting lost in too many loops. I can tell u what I'm trying to do in...
Andy, Please define "not allowed"..... Also you mentioned you want to enumerate the PCs. Normally I would assume that to mean something like scanning the ...
Not quite a batch compiler but a program to do many things you'd use a batch file for is macro scheduler at mjnet.com. I bought this program last year and...
I am now getting in to the MEAT of this post and I have a feeling tha I have come into the correcrt groop we are doing similare things, What is you beist an...
Batch Compiler is good. I have compiled several programs that had sensitive code (i.e. admin passwords, hidden shares, etc...) and I have not had any problems....
I think I posted that older code. That is in fact my existing shutdown script. trouble is its very slow. takes over 30mins to shut down 500 pcs. I'm trying to...
Does anyone know how to get the number of files in a directory and then use it as a variable so that when you get a certain number of files you can delete the...
Hello all, I have a batch file that I use to run updates and hotfixes on MS Windows systems. I would like to have the automatic script run certain updates...
Mike
mike@...
Apr 11, 2005 1:42 pm
5784
My original csv file is 192.169.0.1;729;00447865499974;0017039808543. How can I add date and time either in the beginning of each line or at the end of line...