This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 4151. |
Solve : create text file with name as date automaticly? |
|
Answer» i USE win98 not WIN98SE |
|
| 4152. |
Solve : use DOS command to cut from line x to line y in a? |
|
Answer» hi all, |
|
| 4153. |
Solve : Help fine tuning a batch file? |
|
Answer» im having trouble SETTING my default printer depending on the ip address of my machines. Below is the code i have so FAR and i was wondering if anyone new where i was going wrong. |
|
| 4154. |
Solve : telnet? |
|
Answer» hi, every time i try and use the telnet command from the cmd prompt it dosn't work. |
|
| 4155. |
Solve : Truncating file name? |
|
Answer» I have around a 1000 mp3 files. I need to remove the first 4 characters from the file name of each file. Is there a COMMAND to implement this. Please advise. |
|
| 4156. |
Solve : View in pages? |
|
Answer» if i TYP dir i will get a lis to long for my screen then I typ dir /p |
|
| 4157. |
Solve : calculate number of prints withina specified time? |
|
Answer» I want to calculatethenumber of prints TAKEN from a particular computer on LAN,printer is connected to the main computer, I just want to keep a check on users printing printsYou want to count the number of prints on the LAN, but the printer is connected to the local computer? I'm not sure I understand. What OS are you running, and what printer and print driver (type and version) are you using?I have 10computers in a simple LAN CONNECTION, printer HP lazerjet 1010 is shared to all the computers, users keep on printing documents and then deny that its thier print or not, I just want to get a fool proof method to check who is printing what and how many ?...i hope this explains you the querry sir.....Oh i forgot to mention , OS is win2k professional SP4I'm not sure that there is any record of print jobs once they've been purged from the queue. This little script will monitor jobs submitted for print in real-time. |
|
| 4158. |
Solve : Ctrl? |
|
Answer» Is there any other WAYS to detect key presses besides kbhit(). kbhit() doesn't detect anything when certain keys are pressed.(Ctrl, Alt, Fn etc.)Every key has a scan code. Could you not SIMPLY trap scan codes in your program? KBHIT is a C language include (conio.h); other languages use different techniques. |
|
| 4159. |
Solve : Make .bat an .exe? |
|
Answer» Can I make a .bat a .exe? I also WANT to if I can hide my source code so that people TRYING to steal my work would not be able to. Yep - see here |
|
| 4160. |
Solve : Batch file string / text processing query? |
|
Answer» Can ANYONE tell me how to extract some information contained in a text FILE called dircount.txt and place it in an environment variable ? I want to be able to extract the number 5 from the text file contents as shown below. I want to do this using DOS batch files. |
|
| 4161. |
Solve : Issues Passing in Variables to *.CMD's? |
|
Answer» Where to start: |
|
| 4162. |
Solve : Flash DVD Drive Firmware from BootDisk? |
|
Answer» Hi, I have tried a search for this, very difficult to word it properly or concisely, so I'm posting and please forgive me if it's been covered before. |
|
| 4163. |
Solve : Accidently deleted command.com? |
|
Answer» I accidently deleted command.com from my C:\WINDOWS\System32 directory. |
|
| 4164. |
Solve : Command Line for Task Scheduler to run Ad-Aware? |
|
Answer» Hi, I'm trying to set up Windows XP Task Scheduler to automatically run Lavasoft Ad-Aware SE Plus, (that's the paid version), but from what I can glean from their Help files I have to create a Command Line to do so and I'm at a loss as to where and how to do this. |
|
| 4165. |
Solve : batch pasting information into a dos application? |
|
Answer» Hi |
|
| 4166. |
Solve : Choice Command?? |
|
Answer» Ok, i am using windows xp professional on a server, and i have been working with batch files and so forth, however, the choice command has brought a huge frustration to me, because everywhere i look it shows to be a valid command, yet when i type it into dos windows it shows no syntax, and no clue to me that it even exits and i'm wondering am i overlooking something really stupid or was the command just taken out of windows in this version. Also, another question would be if choice command does not work, then would there be another command to do the same effect? choice dosent work on xp but this code will do it set input=nothing when looking at it, i see "set /p" explanation of what the /p means PLEASE? i looked at the syntax and it showed me nothing, so i'm not completely sure on this. and then i'm assuming all of the variables that you enter in afterwards are surrounded by the % sign? Also, just out of speculation, i'm GUESSING the goto menu at the very end of this part of it is the else if part? as in, if they do not enter 1 or 2, then you go to menu? Thanks... Nothing is not a keyword in batch. The SET as written will SET the INPUT variable to the literal word "nothing". You're right about the "goto menu", it's not really the else so much as the fall thru option should none of the IFs prove true; yeah, you can consider it the else. You're also right about referencing variables once they have been assigned a value in that they must be surrounded by %. The /p option on the SET is to display a literal as a prompt and wait for input and an enter key. The CHOICE command offered 1 byte choices. Set offers unlimited length replies to the prompt. Keep this in mind when coding possible responses. Hope this helps. so you use the nothing to basically distinguish that it is a variable, and the nothing is just a RANDOM value to give it.... I do have another question, this is the current batch that i have MADE.... Quote @echo off Of course, i'm sure you noticed :2 and :3 have no assigned value, but thats to come later,r ight now i'm working on a problem i'm facing with the 1st one. When this performs, it freezes the batch file because of windows media player, Is there a way to bring it up so that the batch file will continue after the media player is open.... I do know that what you have to do currently is close the media player and it finished it (hence opening up windows stuff in DOS does this) but i'm not sure of any way to do this. I thought about using the taskkill, but when i thought about this, it made no sense since it won't go to any command line after the media player is open.... The only other way i can think to do this would be to use the call command, and create a batch file for each individual program that i want to open, and that would be really time consuming and annoying.... let alone, i'm not even sure if that will work or not.... i'm guessing i've hit a stop in this?? lolNot a stop. Your batch file is fine except on a few points. When you launch option 1 (WMPLAYER) you might want to consider using START otherwise your batch file will wait for WMPLAYER to end and return control back to your batch file. You might also want to think about "end"...it's not a batch command. :-/ What are you expecting it to do? well i use end b/c if i dont after it does option one it goes to two without stoping Quote goto menu ya so without it it just continues on through the other optionsQuote Code: [Select] :1 Quote Code: [Select] :1 end is used in two different contexts. In the first one end is used as a program call. Unless the poster has an executable named "end", the statement will fail. In the second post, "end" is used as a label or it seems that way. Labels need a : preceeding them. Batch language does not have many syntax rules but it's best to follow the few it does have. There are also subtle differences between START, CALL, and outright program executes. How many people are involved in this thread? Rather confusing, especially since the original post about CHOICE does not exist on a XP machine, unless you steal a copy from Win9x. yeah, it was about choice command or something similar, then it went into further depth anyways, i did notice that i put end instead of exit, and thought i had corrected it before someone replied. THanks for the help, you're awesome... |
|
| 4167. |
Solve : Sending Output to Printer? |
|
Answer» PROBLEM: |
|
| 4168. |
Solve : repley with help? |
|
Answer» ok guys i need your help. i totally want a job in the itt world beacuse COMPUTERS is wat i do but i need to know more about them iam in the 11th grade and know alot about computers for a kid my age but even so i must know more and U genuises are me lase RESORT so post em back with all the computer info u ever learned from jad to ms DOS i must be loaded up with knowledge about computers!!!!!! so help me out guys tell me all the usefull computer facts or links u know best help will win a prize well worth the help 1. Go to school @echo off |
|
| 4169. |
Solve : A Batch File to copy file from one pc to another? |
|
Answer» I want to create a batch file that will COPY 3 files from one computer to another on a network. The files are located on a PC named counter and I would like to copy them to a PC named office1. The files are located in a folder called huggins in the root of the C drive. The files that I would like to copy are called merprice.txt, merstock.txt & mersuper.txt. I have tried the following without any luck. |
|
| 4170. |
Solve : DOS reg cleaning? |
|
Answer» Is it possible to delete registry values from inside a prompt? |
|
| 4171. |
Solve : Named???? |
|
Answer» hello |
|
| 4172. |
Solve : copy file with current create/mod dates? |
|
Answer» I need to have a .bat job COPY files to another directory...easy enough...but I need the files to show the current date, so a browser will pick it up as the newest version. |
|
| 4173. |
Solve : Getting the date modifed of a file through batch? |
|
Answer» how can i get the 'MODIFIED date' of a file through dos command or batch file...?You can get the date.modified from a DIR LISTING: dir /tw |
|
| 4174. |
Solve : help help help calling all smarties!!!? |
|
Answer» ok guys i need your help. i totally want a job in the itt world beacuse computers is wat i do but i need to know more about them iam in the 11th grade and know alot about computers for a kid my age but even so i must know more and u genuises are me lase resort so post em back with all the computer info u ever learned from jad to ms dos i must be loaded up with knowledge about computers!!!!!! so help me out guys tell me all the usefull computer facts or LINKS u knowSince you're calling for smarties, that lets me out. I'm BSOD.[glb]stop spamming with your question !!! you can set your question once, but not trice !!![/glb] I'm 13 in seventh grade, just so you know where I'm coming from. Tell us what you want to know, or E-mail me or other people, ecept BlackBerry. |
|
| 4175. |
Solve : A batch file to copy "Favorites"? |
|
Answer» I'm a computer lab instructor for a public school. I need to copy a file of "Favorites" off my server and replace the list of "favorites" on each of my 24 machines. Currently, I go into each SYSTEMS "Documents and Settings" under a specific ID, manually select all and then DELETE them. Then I go out to my server, into my special folder I have, select all the sites, copy and paste them back in place. |
|
| 4176. |
Solve : list ow? |
|
Answer» Hi |
|
| 4177. |
Solve : closing programs through a batch? |
|
Answer» I would LIKE to close a program on Windows 2000 professional using a batch file and reopen it after it closes. How the *censored* do i do that?? I KNOW how to reopen it just closing it is where im stuckWhat program do you want to close? Is it a Windows program? |
|
| 4178. |
Solve : List owner of folders?? |
|
Answer» LIST owners of folders in DOS, is that possibleNot in Dos. In Windows CMD it is. Depends of the version. Try cacls. uliWork in XP. can look at folders and owners but not possible to PRINT out, they are only SHOWN as icons (Objects)XP cmd should have a command to list the rights of files/folders. I am not working with Xp so I don´t know the "special" commands of it. In NT it is cacls and xcacls. Try this link: http://www.ss64.com/index.html hope it helps uliWhy is this double posted in the DOS section ? ? Just curious. patio. |
|
| 4179. |
Solve : Cut & Paste in DOS prompt...? |
|
Answer» Hey I was wondering if you any of you GUYS could tell me how to cut and paste files from one folder to another folder. Yes, I do know that you can copy, paste, delete... Is there a way to make it faster though with cut and paste? No. If you are TALKING about 2 folders, which may change EVERY time you want to copy or move, the answer is no. DOS is DOS and Command prompt is an emulation of a pseudo DOS. They are different. The commands can be different. THe abilities may be different, etc. Finally ! Someone said it... This should be a sticky ! patio. Can I get some emulator to be able to do cut and paste? Rev |
|
| 4180. |
Solve : Menu Batch File? |
|
Answer» Hi i'm new to creating batch files and would like help on how to create and run a menu batch file, screen shots would also be helpful. |
|
| 4181. |
Solve : How to open a file and examine its contents? |
|
Answer» Hi, you might be abe to pipe the output directly to a SET statementI like this. Regards coucou The solution above was for inclusion in a batch file. At the command line, the proper format is: for /f "delims=!" %a in (chkfile.dat) do echo %a Just another example of the DOS follies. TNX agin Sidewinder, Finally here my command for /f "delims=!" %a in (chkfile.dat) do set check=%a and here my small cmd Code: [Select]@echo off set vm=Runing inside VMWare <version 6>. start / wait vmchk.exe >chkfile.dat for /f "delims=!" %%a in (chkfile.dat) do set check=%%a If vm=check Then vmtools.exe else endif It is correct? It is there anyhow to pipe directly vmchk.exe >to_a_variable instead of to a file? If so, let me KNOW how. Regards coucouYou may be confusing redirection with piping. Redirection is used with devices (stdin, stdout, stderror, nul). The pipe is used to send data from one command to another. Code: [Select] for /f "delims=!" %%a in ('vmchk') do set check=%%a if %check%=vm vmtools From your previous posts, I thought %check% would resolve to "Runing inside VMWare ." or "Not runing inside VMWare.". If that's the case %check% will never equal the literal vm. The command interpreter does not support a if/then/else/endif construct. Hope this helps. I tested my small cmd in many ways without success. What I'm looking to do is by launching vmcheck.cmd it will 1)call vmchk.exe 2)Check IN chkfile.dat file or a variable for "Runing inside VMWare <version 6>." text 3) IF so run vmtools .exe 4) else 5) endif or exit or stop the program runing Have you any suggestion?Woowww!!! it works Here the Code: [Select]@echo off set vm=Runing inside VMWare <version 6>. vmchk.exe >chkfile.dat for /f "delims=!" %%a in (chkfile.dat) do set check=%%a If "%check%" == "%vm%" vmtools.exe I had not success to pipe the returned message "Runing inside VMWare <version 6>." from vmchk.exe >to_a_variable without using chkfile.dat file Regards coucouIf you want to go straight to a variable, the syntax is different: Code: [Select] for /f %%a in ('vmchk') do ( if %%a=Running vmtools ) Wooww! It works with 2 == Code: [Select]for /f %%a in ('vmchk') do ( if "%%a=="Runing inside VMWare <version 6>." vmtools.exe ) coucou |
|
| 4182. |
Solve : shutdown command.....? |
|
Answer» Is there a way to activate the SHUTDOWN/logoff/restart timer thing, without the message coming up?I don't understand. You want to ...?ya KNOW when you type in shutdown -s -t 50 |
|
| 4183. |
Solve : HELP Using XCOPY command with Network Map? |
|
Answer» Hello everyone. |
|
| 4184. |
Solve : replyyyy? |
|
Answer» ok guys i need your help. i totally want a job in the itt world beacuse computers is wat i do but i need to know more about them iam in the 11th grade and know alot about computers for a kid my age but even so i must know more and u genuises are me lase resort so post em back with all the computer INFO u ever learned from jad to ms DOS i must be loaded up with knowledge about computers!!!!!! so help me out guys tell me all the usefull computer facts or links u know best help will win a prize well worth the help You'll win the DUNCE prize if you keep spamming the board.hey Mr Need-A-Dictionary STOP posting in lots of places. |
|
| 4185. |
Solve : Clear Temps Batch File? |
|
Answer» I created a clear temps batch file consisting of something along the LINES of... |
|
| 4186. |
Solve : Call Windows defender from a batch file? |
|
Answer» I am trying to call up a Windows Defender scan from a batch file in a sequence W/ other apps. The WD line looks like this: |
|
| 4187. |
Solve : just trying to learn? |
|
Answer» ive been using the command prompt to learn about just mainly how it works and what i dont get is how some stuff works, ok supposedly u can use netstat and get someones ip if ur like derectly connected to them or something and use shutdown -i to remote shutdown them. for one how would that WORK if its ur comp and theres and then how could u do it it has like a million ips how couled u know whats what, how could u know it works, its just all confusing u can man me at [emailprotected] or aim fri3ndlystrang3r, if u can help plz doSounds like some malicious experimenting to me...i think i'll pass on this one. |
|
| 4188. |
Solve : Starting Windows Applications from Batch File? |
|
Answer» I have a batch file that starts windows applications (Excel). It works on several windows 98 and 2000 PCs. There is one Windows 98 PC here that it will not WORK on. The lines are: Just wanted to post this and say that we finally figured this out. The PC in question was missing the contents of the COMMAND folder. DUH! omg |
|
| 4189. |
Solve : DOS4GW? |
|
Answer» In the past, I've had trouble with the DOS program DOS4GW on an older PC of mine. When I PLAY Stonekeep, my favorite old DOS game, every once in a long while, a DOS4GW error appears and covers the screen, crashing the game and forcing a restart (I wind up saving OFTEN). This isn't a game problem, but I'm wondering if I should upgrade DOS4GW to a newer version. I WENT to DOS4G 2.01, instead of the original DOS4GW 1.97. Should I use DOS32A instead? I'd like to prevent that error from showing up. It shows up at random times and I have no idea what causes it. Could be a scripting error, but again I don't KNOW!If this is in real mode DOS, there was a pretty good replacement for the 4GW extender but I just cannot think of what it was called. A Google may TURN up something. |
|
| 4190. |
Solve : batch file that logs off a particular user? |
|
Answer» I want to run a batch FILE which logs off a particular user at specified time on a MACHINE on LAN, however if want to increase the time I can increase by again OPENING that batch file and extending the time, is it possibleA lan in a windows domain? Active Directory? If yes, you can manage when users should log off. |
|
| 4191. |
Solve : config.sys missing??? |
|
Answer» I have a recently purchased used Compaq Deskpro EN with DOS 6.0. When entering config.sys, I receive the MESSAGE "bad command or file name". Can anyone tell me what the problem is? Autoexec.bat does display info. |
|
| 4192. |
Solve : dos commands for small network? |
|
Answer» hello, Thank you Peccavi and Dusty, You are always welcome |
|
| 4193. |
Solve : Searching for a string within a text file? |
|
Answer» I am building a batch file that would only call another batchfile if a CERTAIN text string is found within a PARTICULAR text file: I was thinking I could use the IF, FINDSTR and CALL commands to build this but since my DOS knowledge is limited at BEST I am unsure of the syntax. |
|
| 4194. |
Solve : batch file programs won't run? |
|
Answer» Ok, well, here's the problem I'm having. If I try to run a batch file program (for example: aproposfix, l2mfix, dsrfix), I will get a DOS window that pops up for a SECOND and goes away without the program running. There is an error message in the window that is hard to read because the window goes away very quickly. It seems to say something about the file not being an executable command or program. Also, if I CLICK on the MS DOS shortcut in the WINDOWS folder, I get an error message saying "Invalid program file name, please check your pif file." I learned about this problem when using the KRC HijackThis forum to fix spyware/malware problems. Some of the downloads they have suggested have .BAT extensions, and I haven't been able to run them. Is it possible that some malware/trojan has changed MS DOS to disable it? Could I have possibly deleted or changed something disabling MS DOS? Any guidance would be greatly appreciated. Ok, well, here's the problem I'm having. If I try to run a batch file program (for example: aproposfix, l2mfix, dsrfix), I will get a DOS window that pops up for a second and goes away without the program running. There is an error message in the window that is hard to read because the window goes away very quickly. It seems to say something about the file not being an executable command or program. Also, if I click on the MS DOS shortcut in the WINDOWS folder, I get an error message saying "Invalid program file name, please check your pif file." I learned about this problem when using the KRC HijackThis forum to fix spyware/malware problems. Some of the downloads they have suggested have .bat extensions, and I haven't been able to run them. Is it possible that some malware/trojan has changed MS DOS to disable it? Could I have possibly deleted or changed something disabling MS DOS? Any guidance would be greatly appreciated. some programs, you cant indeed not read (in time) because the programmer want it example Code: [Select] @echo off echo text normaly if the programmer want it that you can read it he would type: Code: [Select] @echo off echo text [color=Red]pause[/color] so it can be possible, that you opened a batch program, that was a virus, or not, but it gaves errors, you couldn't read, en those errors made that you dos didn't work anymore greetz blackberry XP does not run MS-Dos just a Dos emulator which is ACCESSED thru' the Command Prompt. You can use the MS-Dos "shortcut" in the Windows folder if you wish but you have to amend it to find the CMD.EXE file in C:\Windows\System32\ Drag/drop the shortcut to the desktop & have a play with it. Don't look at MS-Dos commands when using XP, use the NT/XP commands which are available here. Good luck |
|
| 4195. |
Solve : Not Overwriting Text in a Batch File? |
|
Answer» How do I not overwrite text when writing to a file? :-? |
|
| 4196. |
Solve : problem with copy command? |
|
Answer» I WANT to creat a batchfile which copies certain files from FOLDER in E drive to somefolder in c drive, I know how simple copy commands work, but in this case it gives SYNTAX error. Can anyone help with a script that applies to all extensions irrespective of where the files is located and where it has to be copied.I am writing thesript which is not working Can anyone help with a script that applies to all extensions irrespective of where the files is located and where it has to be copied Not sure what you meant here. Do you need a generalized script to search all your directories? LET us know. 8-)thank you mr SIDEWINDER, thanks a ton for solving my issue |
|
| 4197. |
Solve : make map based on bios date? |
|
Answer» does someone knows how to make a batch file that creates a map on the c:/ drive, based on the PRODUCTION date of the bios. example if you made your bios on the 14/09/'05 (for amerika it is first the month than the day so it is the same if it is 09/14/'05) than there must be an folder like this: c:/140905 of four in amerika 091405, can sombody help me pleas??? I don't know of any command that you could use. A script could pull out the info from the depths of the machine. Are you running a Windows machine? and if so which version. i have windows xp professional The only date I could find in the BIOS was release date. Hope that works for you. Code: [Select] On Error Resume Next Const wbemFlagReturnImmediately = &h10 Const wbemFlagForwardOnly = &h20 Set fso = CreateObject("Scripting.FileSystemObject") strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2") Set colItems = objWMIService.ExecQuery("SELECT * FROM Win32_BIOS", "WQL", _ wbemFlagReturnImmediately + wbemFlagForwardOnly) For Each objItem In colItems fso.CreateFolder("c:\" & WMIDateString(objItem.ReleaseDate)) Next Function WMIDateString(dtmDate) WMIDateString = Mid(dtmDate, 7, 2) & Mid(dtmDate, 5, 2) & Left(dtmDate, 4) End Function Save script with a vbs extension and run from the command line as: cscript scriptname.vbs Note: the date conversion resolves to ddmmyyyy. Hope this HELPS. that worked, but i think there is a way to do it in a batch file: Code: [Select] @echo off >>bios.vbs ECHO On Error Resume Next >>bios.vbs ECHO Const wbemFlagReturnImmediately = &h10 >>bios.vbs ECHO Const wbemFlagForwardOnly = &h20 >>bios.vbs ECHO Set fso = CreateObject("Scripting.FileSystemObject") >>bios.vbs ECHO strComputer = "." >>bios.vbs ECHO Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2") >>bios.vbs ECHO Set colItems = objWMIService.ExecQuery("SELECT * FROM Win32_BIOS", "WQL", _ >>bios.vbs ECHO wbemFlagReturnImmediately + wbemFlagForwardOnly) >>bios.vbs ECHO For Each objItem In colItems >>bios.vbs ECHO fso.CreateFolder("c:\" & WMIDateString(objItem.ReleaseDate)) >>bios.vbs ECHO Next >>bios.vbs ECHO Function WMIDateString(dtmDate) >>bios.vbs ECHO WMIDateString = Mid(dtmDate, 7, 2) & Mid(dtmDate, 5, 2) & Left(dtmDate, 4) >>bios.vbs ECHO End Function NORMALY this should work, but my dos have a PROBLEM with the "&", it gives errors, is there any way to make it work, or is it just impossible You can mask & with ^. I think it doesn´t make sense to write the vbs script with a batch file. To write it in a text editor and call it from a batch file is easier. uliQuote To write it in a text editor and call it from a batch file is easier. i don't know how to do that, can you post me the script please?call scriptname.vbs |
|
| 4198. |
Solve : Bootable CD? |
|
Answer» I would like help on how to create a Bootable CD with a simple menu, screen shots would also be helpful. I would like help on how to create a Bootable CD with a simple menu, screen shots would also be helpful. menu in dos, so you can only TYPE or a menu you can click to (= that LAST ONE isn't possible in dos)Google for Barts Bootdisks. On this site you have a bootdiskbuilder, (floppy and cd). I answered your question how to make a simple MENUE in a batchfile in your other POSTING yet. uli |
|
| 4199. |
Solve : Filtering the dross from a .txt file? |
|
Answer» I have a file which contains MULTIPLE repeated data, some of which is expected and has a tag (Field 1, etc)but due to circumstances outside my control it also has occassional (29 from 200k, not MANY but ENOUGH to cause havoc!) rogue data e.g.: |
|
| 4200. |
Solve : Appearance? |
|
Answer» I know you can USE the COLOR command and TITLE command but is there a command that lets you change the size of the actual DOS console and buffer size?nop i don't think so, i searched on the internet and i didn't found it, perhaps it is possible to change the format in a PROGRAM language LIKE C++ but i don't think it is possible in an .bat file i was pretty sure there is some way to set whether or not it is maximized or not nop, and if there is one, it would be nice if i know the code to, so if you found it, post it here pleas greetz blackberry Standard NT/2000/XP dos box command is. CMD /C "START MAX 'title this' cmd.exe" This will start a dos box maximized. But not full screen. Use CMDOW.EXE form: CMDOW [Version 1.4.3] Win32 Commandline Window Utility for NT4/2000/XP. (C) Copyright 2001-2004 Ritchie Lawrence, http://www.commandline.co.uk. |
|