|
| | |||||||
| Windows XP Discuss the Microsoft Windows XP Operating System |
| | LinkBack | Thread Tools |
| |||
| XP is not user friendly, this is frustrating a start, search for for "cookies" finds a cookie is there at I:\Documents and Settings\Myname\Cookies a search with start, programs, assessories, command prompt using I:\Documents and Settings\Myname\Cookies also finds the cookie is there BUT IF I TRY TO DELETE IT in my autoexec.bat file at bootup, with the statement Del /q/s I:\Documents and Settings\Myname\Cookies\*.* i get the message "The system cannot find the path specified." the PATH i am using is: PATH I:\ what am i missing??? |
| |||
| Re: XP is not user friendly, this is frustrating nucleus wrote: > a start, search for for "cookies" finds a cookie is there > at I:\Documents and Settings\Myname\Cookies > > a search with start, programs, assessories, command prompt > using I:\Documents and Settings\Myname\Cookies also finds > the cookie is there > > BUT IF I TRY TO DELETE IT in my autoexec.bat file at bootup, > with the statement > Del /q/s I:\Documents and Settings\Myname\Cookies\*.* > i get the message "The system cannot find the path specified." > > the PATH i am using is: PATH I:\ > > what am i missing??? Long file names and quotation marks at least. Is your Windows XP configured to parse the autoexec at startup? It doesn't *have* to be... -- Shenan Stanley MS-MVP -- How To Ask Questions The Smart Way http://www.catb.org/~esr/faqs/smart-questions.html |
| |||
| Re: XP is not user friendly, this is frustrating At the very least the spaces in between the words 'Documents and Settings' will cause fits. From a command prompt try the following: CD I:\""documents and settings""\Myname\Cookies If the above works then you can try the delete command. If there are spaces in your user name you will need the resolve this also. JS "nucleus" <rose122550******.com> wrote in message news:b293387c-b480-47d2-9421-d7a929d5de30@i29g2000prf.googlegroups.com... >a start, search for for "cookies" finds a cookie is there > at I:\Documents and Settings\Myname\Cookies > > a search with start, programs, assessories, command prompt > using I:\Documents and Settings\Myname\Cookies also finds > the cookie is there > > BUT IF I TRY TO DELETE IT in my autoexec.bat file at bootup, > with the statement > Del /q/s I:\Documents and Settings\Myname\Cookies\*.* > i get the message "The system cannot find the path specified." > > the PATH i am using is: PATH I:\ > > what am i missing??? |
| |||
| Re: XP is not user friendly, this is frustrating nucleus wrote: > a start, search for for "cookies" finds a cookie is there > at I:\Documents and Settings\Myname\Cookies > > a search with start, programs, assessories, command prompt > using I:\Documents and Settings\Myname\Cookies also finds > the cookie is there > > BUT IF I TRY TO DELETE IT in my autoexec.bat file at bootup, > with the statement > Del /q/s I:\Documents and Settings\Myname\Cookies\*.* > i get the message "The system cannot find the path specified." > > the PATH i am using is: PATH I:\ > > what am i missing??? You're missing that XP doesn't use autoexec.bat. The file is there only for backwards compatibility with old programs. Malke -- Elephant Boy Computers www.elephantboycomputers.com "Don't Panic!" MS-MVP Windows - Shell/User |
| |||
| Re: XP is not user friendly, this is frustrating nucleus wrote: > a start, search for for "cookies" finds a cookie is there > at I:\Documents and Settings\Myname\Cookies > > a search with start, programs, assessories, command prompt > using I:\Documents and Settings\Myname\Cookies also finds > the cookie is there > > BUT IF I TRY TO DELETE IT in my autoexec.bat file at bootup, > with the statement > Del /q/s I:\Documents and Settings\Myname\Cookies\*.* > i get the message "The system cannot find the path specified." > > the PATH i am using is: PATH I:\ > > what am i missing??? Long file names and quotation marks at least. Is your Windows XP configured to parse the autoexec at startup? It doesn't *have* to be... -- Shenan Stanley MS-MVP -- How To Ask Questions The Smart Way http://www.catb.org/~esr/faqs/smart-questions.html |
| |||
| Re: XP is not user friendly, this is frustrating thanks for the replies, everybody. JS, the quotation marks did solve that one problem. what i do not understand, is why XP sometimes requires quotation marks on some delete commands in autoexec.bat and on other delete commands in autoexec.bat, it works without quotation marks. is there some link you could suggest for me to learn more about the quotation marks in XP? Malke, why do you say XP DOES NOT use autoexec.bat? it does work on XP Pro at boot time. it does execute my delete commands. Shenan, yes ParseAutoexec is set to 1. it was like that at XP build time (i did not change that). On Dec 13, 1:06 am, "Shenan Stanley" <newshel...******.com> wrote: > > Long file names and quotation marks at least. > Is your Windows XP configured to parse the autoexec at startup? It doesn't > *have* to be... > > -- > Shenan Stanley > MS-MVP > -- > How To Ask Questions The Smart Wayhttp://www.catb.org/~esr/faqs/smart-questions.html- Hide quoted text - > > - Show quoted text - |
| |||
| Re: XP is not user friendly, this is frustrating nucleus wrote: > a start, search for for "cookies" finds a cookie is there > at I:\Documents and Settings\Myname\Cookies > > a search with start, programs, assessories, command prompt > using I:\Documents and Settings\Myname\Cookies also finds > the cookie is there > > BUT IF I TRY TO DELETE IT in my autoexec.bat file at bootup, > with the statement > Del /q/s I:\Documents and Settings\Myname\Cookies\*.* > i get the message "The system cannot find the path specified." > > the PATH i am using is: PATH I:\ > > what am i missing??? nucleus wrote: > thanks for the replies, everybody. > > JS, the quotation marks did solve that one problem. what i do > not understand, is why XP sometimes requires quotation marks > on some delete commands in autoexec.bat and on other delete > commands in autoexec.bat, it works without quotation marks. > is there some link you could suggest for me to learn more > about the quotation marks in XP? > > Malke, why do you say XP DOES NOT use autoexec.bat? it does > work on XP Pro at boot time. it does execute my delete commands. > > Shenan, yes ParseAutoexec is set to 1. it was like that at XP > build time (i did not change that). If there is a space in the filename/directory to get to the file in question - put quotes around it. I would put quotes around it if anything is over 8 characters (between \'s) as well... Your line: Del /q/s I:\Documents and Settings\Myname\Cookies\*.* would be: Del /q /s "I:\Documents and Settings\Myname\Cookies\*.*" If you were deleting something simplistic, like C:\windows\filename.ext, you wouldn't need the quotes. -- Shenan Stanley MS-MVP -- How To Ask Questions The Smart Way http://www.catb.org/~esr/faqs/smart-questions.html |
| |||
| Re: XP is not user friendly, this is frustrating I looked but could not find a really good easy to understand and with the detail you need. I did find this: http://en.wikipedia.org/wiki/Delimiter Keep in mind that 'White Space' (a space separating two parts of command that is syntactically correct) is valid for command line switches, pipes, etc. You can type the word 'help' (without the single quotes) at the command prompt and get a list of commands and 'help del' will show more detail on the DEL command. JS "nucleus" <rose122550******.com> wrote in message news:c74443c3-1604-40b1-8383-b06fb3b2f471@e6g2000prf.googlegroups.com... > thanks for the replies, everybody. > > JS, the quotation marks did solve that one problem. what i do > not understand, is why XP sometimes requires quotation marks > on some delete commands in autoexec.bat and on other delete > commands in autoexec.bat, it works without quotation marks. > is there some link you could suggest for me to learn more > about the quotation marks in XP? > > Malke, why do you say XP DOES NOT use autoexec.bat? it does > work on XP Pro at boot time. it does execute my delete commands. > > Shenan, yes ParseAutoexec is set to 1. it was like that at XP > build time (i did not change that). > > On Dec 13, 1:06 am, "Shenan Stanley" <newshel...******.com> wrote: >> >> Long file names and quotation marks at least. >> Is your Windows XP configured to parse the autoexec at startup? It >> doesn't >> *have* to be... >> >> -- >> Shenan Stanley >> MS-MVP >> -- >> How To Ask Questions The Smart >> Wayhttp://www.catb.org/~esr/faqs/smart-questions.html- Hide quoted text - >> >> - Show quoted text - > |
| Bookmarks |
| Thread Tools | |
| |
| | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| (OT) Alternative to Vista? Try the user friendly PCLINUXOS 2007! | Tiberius | Windows Vista | 5 | 09-06-2008 12:58 PM |
| XP is not user friendly, this is frustrating | nucleus | Windows XP | 2 | 12-13-2007 06:59 AM |
| IE7 New Tab Opening NOT User-Friendly | BiggsHomes | Windows Vista | 4 | 01-02-2007 10:47 AM |
| Vista not very User Friendly | Piet Fourie | Windows Vista | 5 | 01-01-2007 09:59 PM |
| A new user friendly Remote Access Software ! | bob1miller | Tablet PC - Software Discussions | 0 | 01-08-2005 01:49 PM |
| New To Technology Questions? | Do You Need Help with Your Computer or Device? | Do You Need Help with this site? |