hi experts, i want to use some batch file which will use msessenger service in it but by default this service is disable in windows XP Profficenal how to...
Put this in your batch file... reg ADD "HKLM\SYSTEM\CurrentControlSet\Services\Messenger" /v Start /t REG_DWORD /d 2 /f That resets the service to automatic. ...
You can also use the sc command to manually configure most settings for a service. Patrick ... [Non-text portions of this message have been removed]...
I have a simple batch file that is scheduled to run every 15 Minutes during working hours, I would like to skip the backup if the file has not changed. Copied...
... The addition below will check for an archive bit. ... for %%c in ("\\A2100-750\user\data\mdi.nc") do set flags=%%~ac set abit=%flags:~2,1% if "%abit%"=="a"...
Hi Expert, can you help me guys how to filter result in "dir" command? for example, if i list files on a certain directory, i want to remove all files that...
... This will give you filenames that don't contain .vix but will also remove filenames like The.vixen.doc - will that suffice? dir /b |find /v /i ".vix" -- ...
tnx mic.. the command helped me.. but is there a way that will just look on the extension name? so far, the command that you gave solve my present problem.....
Thanks, Is there any way to stop the CMD window from popping up? Can you tell me were I can get details so I can understand the code that you used he? Is there...
... yw. ... You can use cmdow with the /HID switch and @ for the current window. CMDOW [Version 1.4.3] Win32 Commandline Window Utility for NT4/2000/XP. (C)...
This : cmd.exe /k cd %1 Seems to get me to: C:\DOCUME~1\GaryT\STARTM~1> How can I get to the root of C:\ I'm actually using it to add a right click menu item...
Hi, First hi to all, i am new member in this group. working on DOS, DPMI, DJGPP compiler and facing a problem. I am using DJGPP compiler in DOS, want to create...
Thanks for pointing me in the right dirrection. If I look at %flags% is see --a------ if archive bit is set, what do the other 8 bytes mean? ... NT4/2000/XP. ...
... Here are a few - File and Folder permissions might account for the others. @echo off echo file>"%temp%.\dummy.txt" for %%c in ("%temp%.\dummy.txt") do echo...
Hi, I have a BAT file that is asking me to answer a Choice 3 times. I can't figure out why it's going through there three times. Does anyone know how I can...
Assuming the script is first executed without %1 as GOTO:, the sequence is CLS ... CHOICE ... IF fails ... CALL loops back to the beginning, CLS ... CHOICE...
... I'm not 100% sure of the 2nd and 3rd last ones but I believe they are: drahscotl d=directory r=read only a=archive h=hidden s=system c=compressed ...
On 20 Sep 2006 at 11:13, Sarah (Sarah Kopelman <batchworld@yahoogroups.com>) ... Choice.com comes with DOS. ... CHOICE Prompts the user to make a choice in a...
On 19 Sep 2006 at 13:59, Marc (Marc Peterson <batchworld@yahoogroups.com>) ... I don't understand how all this actually works. So to fix this If I was to guess...
Choice is a command line utility that was used for creating a batch file that will prompt for the user to choose one of several options . You can define the...