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.
| 6401. |
Solve : Parsing from a web source? |
|
Answer» Is it possible to take lines of text off a web source using a batch file? If so, how would you do it? |
|
| 6402. |
Solve : change icon? |
|
Answer» How can I change icon for one shotcut For speed and convenience #1 is the obvious winner.yup i agree. personally i don't see the purpose of changing icons, except for personal preferences and for fun. If its for fun, i wouldn't want to right click every time anyway. I would make it change icon every few hr/min/sec/days/weeks ...up to me... I just change the icon for my flash drive. Other than that, i dont see the point of it. |
|
| 6403. |
Solve : Two commands on one line?? |
|
Answer» Is there a way to write two dos commands on one line? |
|
| 6404. |
Solve : How can I stablish the prompt information of date/t like a File Name...? |
|
Answer» Hello, I have an issue making my batch PROGRAM, I'm using the command rar to compress a file and this .BAT file is executed everyday automaticly. I WANT to know how can I put the information prompted when I execute the command date/T like the file name before it be compressed.. |
|
| 6405. |
Solve : how do i erase a file folder in dos?? |
|
Answer» I "safely" assume that is DOS that comes with Windows, not pure MS-DOS. That's what i observed most of the time when posters did not indicate their OS.To be technically correct, DOS is not part of Win XP or Win 2K. But, DOS commands can be used by opening a "command prompt" panel. That may seem like a contradiction but this reference gives a very brief explanation: http://www.5starsupport.com/xp-faq/1-59.htm I mean, how many computer users are still running computers with MS-DOS as the OS? I suppose what I should realise is that most of the people who post on here are from the 4 corners of the world, often English is not their first language, and they do not KNOW or care if the command prompt they are using is called MS-DOS, Windows NT, or Loonix. They just want to fix some immediate problem and get back to playing World Of Warcraft. The only person I am giving a hard time to, by getting all *censored* about the terminology, is myself. So no more rants. Windows 95, 98, 98SE, and ME all use MS-DOS 7 or 8 as the command interpreter so when a user of one of those OSs opens a command box they are using MS-DOS in a 16-bit virtual machine. Also when a user boots from boot disk prepared in Windows they are running MS-DOS. Vista boot disks contain MS-DOS 8. # MS-DOS 7.0 - August 1995 – shipped embedded in Windows 95. Included Logical block addressing and Long File Name (LFN) support # MS-DOS 7.1 - August 1996 – shipped embedded in Windows 95B (OSR2) (and Windows 98 in June 1998). Added support for FAT32 file system (COMMAND.COM is 93890 BYTES) # MS-DOS 8.0 - September 2000 – shipped embedded in Windows Me. A subset is included with 32-bit versions of Windows XP and Windows Vista. Last VERSION of MS-DOS. Removes SYS command, ability to boot to command line and other features The 'subset' is what you get if you type "command" at the 2K or XP prompt CODE: [Select]c:\>ver Microsoft Windows XP [Version 5.1.2600] c:\>command Microsoft(R) Windows DOS (C)Copyright Microsoft Corp 1990-2001. c:\> cmd.exe is the NT prompt interpreter, and command.exe is the DOS one. Also, NT CLASS OSs can run 16-bit DOS using DOS 5 command.com in an NTVDM (NT Virtual DOS Machine) like this... Code: [Select]C:\>ver Microsoft Windows XP [Version 5.1.2600] C:\>exit c:\>command.com /k ver MS-DOS Version 5.00.500 C:\> |
|
| 6406. |
Solve : need help to run exe with automated input from txt? |
|
Answer» :P1.at dos,the intention is to run c:\TVUPlayer_1.5.12_20060209.exe without need to enter next> next> next> |
|
| 6407. |
Solve : extending input over multiple line in batch file? |
|
Answer» I have an INTEL utility that needs its input spread accross several lines DUE to |
|
| 6408. |
Solve : redirect input? |
|
Answer» i really blank this time... i really blank this time... use find : eg ver | find "Windows XP" then check for %errorlevel%: eg IF %errorlevel% EQU 0 Goto whateverthanks ghostdog74... the lines u gave me is working well in XP.. and for win98, the line below should be OK.. but my writing SCRIPT is not very good... i believed, other people would do this better @echo off ver |find "XP" >NUL IF NOT ERRORLEVEL 0 echo Its 98 IF ERRORLEVEL 0 echo Its XPOr shorter: @echo off ver|find "XP">NUL&&echo.It's XP||echo.It's 98 guys... i'm USING WIN98 (ver 4.10.2222) i want user to enter the filename.rom... -->(i'm afraid i cant use CHOICE) i have a list of filename(s).rom in C:\BIOS... i want to compare user entry with the list of filename(s).rom in C:\BIOS if exist the entry filename.rom the system will copy content from exist filename.rom in C:\BIOS into the new.rom to be executed for the next stage... 1.user enter filename.rom 2.compare the filename.rom with C:\BIOS 3.if exist the filename.rom in C:\BIOS copy filename.rom into new.rom please help me... thanks in advance#!/bin/bash echo "Choose your NEW.ROM.."; ls read new cd C:\BIOS if [-e $new] CP C:\BIOS\$new C:\NEW.ROM else echo "You not enter correctly" echo "Choose your OLD.ROM.."; ls read old cd C:\BIOS if [-e $old] cp C:\BIOS\$old C:\OLD.ROM else echo "You not enter correctly" i feel something weird.. but i dont know... is this OK?woah..it seems like you are using unix bash shell? are you running cygwin or something?...don't confuse yourself.....i really depressed now... what i really want to do is run this script at the start up MontaVista Linux OS. i believed i have to create the cfg file to receive this variable and to be used for next stage... but i just don't know where to start. it's really hard to get the OS while not bothering other staff to test the script...i posted at a wrong forum huhu... sorry.. my question would be how i want to check whether file is exist in one folder or not? most challenging part is.. the file name is entered by user cannot used this if [ -e "$filename_by_user ] then echo Exist else echo Not Existyou are doing shell here...which is apparently, the "wrong" forum... echo "Please key in path" read userinput echo "User keyed in $userinput" if [ ! -e $userinput ] ;then echo "$userinput does not exist" exit 1 fi ## continue ....i'm gonna run this at WIN98 DOS... .bat file.. Quote you are doing shell here...which is apparently, the "wrong" forum... absolutely not Ok for batch file.. above script could only be ran as .bash... how to do the same script in DOS.. from my understanding, dos 98 can accept user input as choices.. or user have to enter the filename and the variable.. ie test.bat variable and INSIDE test.bat @echo off if %a '==' GOTO exit please help meXset is very useful! my problem finally gone.. xset.tripod.comwe have to pay for xset... other solution is using LMOD.. try this out.. http://home.mnet-online.de/horst.muc/index.html |
|
| 6409. |
Solve : if exists a string in a file do this...? |
|
Answer» Hello, |
|
| 6410. |
Solve : dos animation? |
|
Answer» Hi,
I'm still searching a programming that types readable Text letter for letter. Do you have any old computer parts? If you do, you should try and upgrade that beast! if not, you might be able to find some really cheap on ebay, if you do want to go anything graphical. Viper If no graphic is possible on this computer I can do without. I prefer the above specified Text-Animation and am still searching for a solution (maybe in Basic?). |
|
| 6411. |
Solve : Close notepad.exe - taskkil?? |
|
Answer» Does anybody knows the command to close notepad in windows xp. On the site from microsoft they reccomand taskkil (http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/ntcmds.mspx?mfr=true) but if I use that, I get an error of unknown command or something. Can anybody give me the right code or EXPLAIN how it really works, because I don't understand a lot of microsofts explenationWin2000 had a Kill command. Taskkill shipped with WinXp Pro and Win2003. It did not ship with WinXP Home which may explain why you get an error of unknown command or something. Win2000 had a Kill command. Taskkill shipped with WinXp Pro and Win2003. It did not ship with WinXP Home which may explain why you get an error of unknown command or something. OK, that explained why it was in the list and why it didn't work on my computer. You're totally right! Now, I liked to work on both computers so how should I do that. Something like this? Code: [Select]if %os%=="windows xp progrofessional" goto prof if %os%=="windows xp home" goto home :prof taskkill /im notepad :home kill /im notepadQuote what he is means is virus/trojans with the name notepad.exe. *censored*, don't be difficult... I just want to learn the command, so it doesn't mather wich program I close. If it would be a virus this command wouldn't be able to close it anyway... Notepad is a simple text editor that I use to type my batfiles in...Quote Quotewhat he is means is virus/trojans with the name notepad.exe. :-? i was referring to dimitri...not youLike I said Kill shipped with Win2000 not WinXP Home. Either download Taskkill to your Home machine or use tskill which apparently shipped with both Home and Pro versions of XP. You can get DETAILS by typing tskill /? at a command prompt. Afterthought: You cannot use the %os% variable to distinguish between the Home and Pro versions of XP. In both cases Windows_NT is returned. 8-) |
|
| 6412. |
Solve : Batch Challenge ?? |
|
Answer» Hi everyone, |
|
| 6413. |
Solve : Re: Deleting posts? |
|
Answer» I say it depends on the TOPIC. . .Yeah, and sometimes I like going through all the new ones and seeing if I can answer them; there are so many that It takes me forever!more votes please!!!!Technically post arent deleted because PEOPLE can use for refrence. HOWEVER many people are to lazy to use the search button to look for answers to there questions FIRST. Im sure some are diffrent and many are the same. They do get deleted eventually if no one looks at them i dunno how long they stay though. Besides each post is only a few KB. |
|
| 6414. |
Solve : Minimise a batch window? |
|
Answer» I'm running a batch file from a Novell login script and I would like the dos window to be minimised when the batch file runs. I cannot do this by using the/min command so I need some WAY of minimising the window from within the batch file itself. The batch file is as follows: I need some way of minimising the window from within the batch file itself I'm not aware of any mechanism to do that. Why can't you use START /min batchname.bat? 8-)I'm invoking the batch file from a Novell login script using the '@' command and /min doesn't work with this. Unless I'm WRONG. I have tried it a few times though.You may be SOL on this. I did find the include command, however it offers no parameters for minimizing the window. Neither do # and @. 8-)Don't know if this will work or not, but anything is worth a try. See if you can force the .bat file to open minimized from its properties dialog.I can't see any option for this in the property dialogue. There must be a way.....Must be XP! Another way MS chose to screw us. A work around to this is possible if you have access to a W98 machine. Copy a .pif file from W98 onto the XP machine, then modify it to POINT to the proper program. This will give you the same properties control that W98 has.I think Sidewinder has the right idea. Instead of calling your login script like this: Code: [Select]@login.bat Call it with the start command like this: Code: [Select]start /min login.batI would obviously use the /min to minimise a batch file window normally. But as I'm invoking the batch file from a Novell login script using the '@' command i'm unable to do this. Thats why I asked if there was any other way. I tried the .pif file thing but Novell doesn't let me invoke the shortcut which would open minimised. Just one other point as well.....The reason i'm using the '@' command is because the batch file will run in the background to speed up the login process. |
|
| 6415. |
Solve : Basic batch file question? |
|
Answer» I'd like to time responses from my various mail servers. (I need to demonstrate performance problems to ISP.) Pseudocode would be |
|
| 6416. |
Solve : Get folder Size?? |
|
Answer» Hello, I've read your forums a bit recently and they've been quite helpful with some problems, however I still have a few. |
|
| 6417. |
Solve : shortest command to find if a directory exists? |
|
Answer» I would like to do this so that I can |
|
| 6418. |
Solve : at and errorlevel? |
|
Answer» Hello, |
|
| 6419. |
Solve : Are you board try this!? |
|
Answer» Very simple. Your so far off the mark , I don't believe it.... By the way Sidewinder, this is incorrect use of the word your! The word you should have used is [highlight]you're[/highlight]Man this is funny every one is flaming, lol.It's the one of the not so many hot topics too!Well now it's very hot topic!! |
|
| 6420. |
Solve : help plz dos - batch? |
|
Answer» I allways look through help files first but i dont even know where to start on this... what i would like to know is how to execute one of two commands once a BATCH file is ececuted... rem Choice between 2 commands. if i.m not mistaken.. goto COMMAND1 goto COMMAND2 dont have to put : over thereAnybody can help me...? how to copy the folder from the CD into desktop after run the batch file..?how to do it...?Quote Quoterem Choice between 2 commands. You are right. Sorry for the mistake. Thanx Everyone for you help i will look over the sites when i get a chance. I think this batch menu will be good enough... |
|
| 6421. |
Solve : formatting xp pro? |
|
Answer» Having a few probs here. wanna go in to little more detail? deleted the partition as i installed home but told that would run with 2 op systems on same part.. did i want to continue?.... where have i gone wrong You deleted the only partition? Then you just have to go ahead with the install and let it create and format a new partition and install. Everything should be removed this way - the fake XP, your problems, etc. Can you not proceed past this point? What about some SPECIFIC info from you about this?FDISK IT!!! I ASSUME you do not want any data that is currently on the drive? If you boot to your "real" Windows XP CD, the Windows Setup program should run automatically. Press Enter at the first screen to install, then Continue on the current partition (I don't think FDISK or removing the partition is necessary). Then it should give you an option as to what you want to do with the partition, with the default choice being to leave it alone. Change it to "Format NTFS" (either quick or full should be fine). That will make it erase everything that is currently on the drive, and install a single clean copy of Windows XP. Just follow the prompts from there.pirate software is bad NEWS. my friend deadhead reckon use it a lot but he shouldnt. i tell him not to no more."format c :" without the quotes and replace the letter to whatever is assigned to it. |
|
| 6422. |
Solve : help with net user (username has? |
|
Answer» ok, i need to check a few things on an acount on my computer, and the USERNAME of the person has an [highlight]details, please? specs for the PC?[/highlight] when did this problem start? did it ever work properly?NVM, i just put craig & jenny in quotes net user "craig & jenny" randompassword thanks for trying, sorry i was so difficult |
|
| 6423. |
Solve : Protected Directories???? |
|
Answer» hi! i have a boot failure PROBLEM and i'm TRYING to access winnt files which is stored in drive C. using msdos, i've noticed that the winnt directory is displayed like this... |
|
| 6424. |
Solve : start windows from DOS? |
|
Answer» We have lost the ability to boot to windows due to a virus. We can bring up a DOS window but cant remember how to start windows from there. We use XP home. :-?Do you have a real Windows CD to do a repair install? |
|
| 6425. |
Solve : mac add in pure dos? |
|
Answer» I WONDER IF ANY ONE CAN HELP… AT THE MOMENT I AM USING GHOST SERVER TO INSTALL 3 DIFFEENT TPYES OF LAPTOP.. ORIGINALLY W MADE A LIST OF THE SERIAL NUMBERS OF EACH LAPTOP AND THEN LINKED EACH SERIAL NUMBER TO ONE OF THE THREE TYPES OF LAPTOP SO GHOST WOULD NO WHICH IMAGE TO SEND TO INDIVDUAL MACINES.. THIS WENT FINE UNTIL WE HAD A REPARED LAPTOP IN WHICH HAD THE SERIA LNUMBER BLANKED OUT IN DOS……………. NOW THIS IS WERE I AM STUCK WE WON’T TO BE ABLE TO CPATURE THE MAC ADRESS IN PURE DOS BUT NOT SURE HOW TO DO THIS DOES ANY ONE KNOW THE SINTAX TO OBTIAN THE MAC ADD IN PURE DOS… @echo off Quote@echo off |
|
| 6426. |
Solve : laser printer setup? |
|
Answer» :-? :-? :-? You need to have printer that can use the DOS output from that program. A parallel port is not proof positive that you can. You can redirect output to an LPT port from a command line, but that is NOT the same thing as using the DOS printer driver in that program, no doubt. What model Samsung is this? We can find out soon enough. i have the choice of two printers the first choice would be a Samsung ML-4500, the second at a push would be HP laserjet 5m Regards DaveIt appears the Samsung is hopeless for your purpose as mentioned above: http://erms.samsungusa.com/customer/sea/jsp/faqs/faqs_view.jsp?PG_ID=1&AT_ID=6116&PROD_SUB_ID=29&PROD_ID=29 An HP seems more suited to the TASK if using a parallel port cable. |
|
| 6427. |
Solve : How to Read File using VBScript? |
|
Answer» I'm new to VBScript. I've found a lot of DOCUMENTATION, but can't seem to accomplish my first task. If you could show me how to accomplish this using VBScript - I would be absolutely ESTATIC. This is a learning experience for me - and you've shown me a lot. I'm a creature of habit and I'm familiar with XCOPY. But -I'd much rather make the MOVE to FSO as it is more appropriate in this application. I have not been able to find or download script56.chm - probably because I am working on a Remote Desktop Connection. I'm gonna try later on another computer. Maybe then, I won't have to bug you with so many quesetions. Thanx! You not bugging us. We're more than happy to help. This may need some fine tuning as I don't have a clear picture what's in Datafile.txt Code: [Select] Const ForReading = 1 Set WshShell = CreateObject("WScript.Shell") Set fso = CreateObject("Scripting.FileSystemObject") Set ts=fso.OpenTextFile("H:\AppDevCtr\DistAppl\DataFile.Txt", ForReading) Do While not ts.AtEndOfStream s = ts.ReadLine() SArray = Split(S, " ", 2, vbTextCompare) Set filein = fso.GetFile(Trim(SArray(0))) Set fileout = fso.GetFile(Trim(SArray(1))) If fso.FileExists(fileout.ParentFolder & "\" & filein.Name) Then 'source in dest? If filein.DateCreated > fileout.DateCreated Then 'source newer than dest? fso.CopyFile filein, fileout, True End If End If Loop ts.Close MsgBox "Done" The script was checked for syntax errors not for logic errors. 8-)Fine tuning - No way! It worked like a charm as soon as I corrected my data file. In the code you created for me you have the following line: Code: [Select]Set fileout = fso.GetFile(Trim(SArray(1)))How would I set Fileout to the desktop or a folder on the desktop? Thanx!The DESKTOP is one of many Special Folders in Windows. They're pretty much all handled with some boilerplate code. Code: [Select]Const ForReading = 1 Const DESKTOP = &H10& Set WshShell = CreateObject("WScript.Shell") Set objShell = CreateObject("Shell.Application") Set objFolder = objShell.Namespace(DESKTOP) Set objFolderItem = objFolder.Self Set fso = CreateObject("Scripting.FileSystemObject") Set ts=fso.OpenTextFile("H:\AppDevCtr\DistAppl\DataFile.Txt", ForReading) Do While not ts.AtEndOfStream s = ts.ReadLine() SArray = Split(S, " ", 2, vbTextCompare) Set filein = fso.GetFile(Trim(SArray(0))) fileout = objFolderItem.Path 'concatenate additonal folders if needed If fso.FileExists(fileout.ParentFolder & "\" & filein.Name) Then 'source in dest? If filein.DateCreated > fileout.DateCreated Then 'source newer than dest? fso.CopyFile filein, fileout, True End If End If Loop ts.Close MsgBox "Done" It should be no problem to concatenate any additional folders to the desktop path. Good luck. 8-) |
|
| 6428. |
Solve : help me for bootable diskette?? |
|
Answer» any body here please i need a bootable disk for diskette? |
|
| 6429. |
Solve : sleep command? |
|
Answer» Hey guys Hi Uli. dir /s sleep.exe If it isn`t found, you don't have the command on your machine. uli |
|
| 6430. |
Solve : Export registry values in REMOTE server into? |
|
Answer» Hi Hi. |
|
| 6431. |
Solve : Reading in ping output using batch file? |
|
Answer» Hey guys, |
|
| 6432. |
Solve : Scheduling tasks? |
|
Answer» Hello, |
|
| 6433. |
Solve : ms- dos download? |
|
Answer» does any body know where i can DOWNLOAD ms- dos version 2.0 thanks!!! No MICROSOFT PRODUCT is available for FREE download, EXCEPT the rarity through their site. |
|
| 6434. |
Solve : .bat file that prompts for info? |
|
Answer» Hello, In a perfect world the poster would tell us what OS is being used instead of us trying to guess with hints scatttered in the post. Please forgive my insolence, for as many people as I help on a day-to-day basis, not including the plethora of years working in I.T., it did not once even cross my mind to communicate the OS I was working with. Our client machines & my own are WinXP Pro-SP2, we like to keep things pretty standard here. Again, my apologies and thank you much for responding to my post. Quote If I understand your goal, I think you are looking for something like: You sir...ARE A GENIUS! You ROCK! That is my own way of saying thank you. It becomes very evident that I really need to learn more about the different functions of variables and use it more DAILY. Again, thank you...I have certainly come to the right place and I hope to be able to add my own instruction helping others likewise. Cheers! |
|
| 6435. |
Solve : Copying files from multiple directories into a sin? |
|
Answer» Hello All; |
|
| 6436. |
Solve : Reading from a data file in a batch file? |
|
Answer» Hi DOS People! |
|
| 6437. |
Solve : can we edit filename.ROM?? |
|
Answer» sorry... |
|
| 6438. |
Solve : Nightly Backup Batch File? |
|
Answer» Hi, |
|
| 6439. |
Solve : Run 2 Executables Simultaneously from Batch? |
|
Answer» Greetings! @echo off I haven't tried it yet, but this is the text of it. I'll come back & complain if it doesn't... Thanks, JimmyWorked immediately. Thanks you very much. Jimmy |
|
| 6440. |
Solve : New - Need some help finding error in a file.? |
|
Answer» Hi All - |
|
| 6441. |
Solve : Ridiculous CD command question? |
|
Answer» I've done a search and I cant find the answer to this seemingly simple question: I've done a search and I cant find the answer to this seemingly simple question: you can put double quotes...eg cd "c:\A directory with space" |
|
| 6442. |
Solve : Batch file to reformat all documents in a director? |
|
Answer» I NEED a batch file that will allow me to reformat all Word documents in a folder. Specifically I need to change the margins and font. Can anyone help me with this? I would very much appreciate it!CindyM, you need a program (VBS or something else) to do the change. The batch file is your last problem. |
|
| 6443. |
Solve : Installing Multiple Programs Using Logon Script? |
|
Answer» hi i'm trying to install multiple programs using a logon SCRIPT and it isn't working, its only INSTALLING the first one, here is the program:- |
|
| 6444. |
Solve : XCOPY - How to avoid the "FILE or Directory" messa? |
|
Answer» I've been USING XCOPY forever and never figured out how to avoid the nasty message: |
|
| 6445. |
Solve : Character limit on variables within bat files? |
|
Answer» I want to know if there is a way to limit the number of characters on an input variable within a .bat file. Using the %1 command to read in a variable, I want to limit this variable to 8 characters. |
|
| 6446. |
Solve : how to pause batch file for time limit then resume? |
|
Answer» the subject pritty much explains it. i just need to know how to pause a batch file after a cammand and then resume on its own after a given amount of time.Quote the subject pritty much explains it Not really, as there are different techniques on different OSes and you failed to mention yours. For Win9x (INCL. ME) you can use the choice command with the /t switch (default value after nn second; max 99) CHOICE is not available on shipped copies of NT machines, so you can use PING (ex. ping -n 21 should be close to 20 seconds). 8-) Note: PING is the better of the two as it does not tie up the CPU with wasted cycles. for win 98 (ver 4.10.2222) and below choice /ty,10 /c:yn Do you want to reboot now? %1 this will wait 10 seconds or else system will choose yes and reboot... i HOPE i can help you..MY opologies I was under the impression batch was all the same as dos. Shows what I know... I use windows Xp home and professional... I was actually wanting more than 99 SEC but i will try this... thank everyone that posts... This Site Made me start using Forums...Because ITs Sooo Good |
|
| 6447. |
Solve : File Name Script Help? |
|
Answer» Can someone please help me. Can someone please help me. So learn how to. use for loop with tokens,delimiters = '-'. eg for "tokens= delims=-" %%a do ( set swapped=%%b - %%a ) SOMETHING like that..... For help, you can TYPE for /? and see how it worksThis would be a pretty advanced batch file. Here are some questions to see if we can make it easier: Could any of the filenames have more than one '-' dash? Could any of the filenames have more than one '.' period (any besides the .mp3)? Could any of the filenames have more than one space before or after the '-' dash? Could any of the filenames have no space before or after the dash?Hi Thanks for the reply. In answer to the questions; Could any of the filenames have more than one '-' dash? - Yes Could any of the filenames have more than one '.' period (any besides the .mp3)? - No Could any of the filenames have more than one space before or after the '-' dash? - Yes Could any of the filenames have no space before or after the dash? - Yes Although the answer to most of these is yes, I understand the complexity of the Batch file if you were to consider these. This would not really be important as it would just be the odd file out of 6,000 FILES, I could MANUALLY sort these its just the majority. Cheers, Darren |
|
| 6448. |
Solve : can we find a file inside one directory and copy?? |
|
Answer» can we FIND a file inside one directory which contains many FILES and COPY the file into another file? |
|
| 6449. |
Solve : Encrypting files? |
|
Answer» I was tring to ENCRYPT some FILES on my computer through DOS using the cipher command and when I did it it showed all the files it was tring to encrypt but as it was doing it all the files said ACCESS denied. Can someone tell me how to fix this?And your OPERATING system is :-? Which program created the files and what are their attributes :-? |
|
| 6450. |
Solve : significance?? |
|
Answer» Why can't some people write significant subjects? I suggest that a Forum Moderator should be allowed to change a title as they know best how to categorize the content. Up front it's sometimes hard to know what a topic develops into. Updating the title in order to provide a good summary of the real content as it develops may be useful. There would be too many titled "Worthless Drivel" or "I Shouldn't Be Allowed To Use A Computer" or "Darwin Was Wrong". is there anywhere in the forum (maybe i have missed it) that there is a collection of the commonly asked questions and their solutions, eg how to create timers where you could use ping,sleep, etc , or how to copy files with time/date requirements...etc? something like a DOS faq?? It might be good to have one if not, so that forummers with such problems can go there to look first before asking for help...and it saves time from answering to the same type of questions again and again... just a thought The FAQ SOLUTION Database has a LOT of pertinent info. It is the last section on the main forum page. I wish people would start there as I frequently have to refer them to existing info, rather than making my fingers bloody reinventing the wheel. Oh, no! My DOS FAQ thread got bumped into the invisible zone! Save them Dilbert. Lock them up on your hard drive!!!It gets better: One or more of the threads in the "invisible zone" have been hit with the Ex Member bug that were in My Favorites. The only way to get my Favorites to work is to delete the offending thread. Unfortunately, I can't see the *censored* thread to remove it. All the ones I've seen are fine (except QA0035... AGAIN...) |
|