Help! My computer does not allow me to create new folders

My computer just recently started not letting me create new folders. I do not have Google Chrome. I have Windows XP and have not had any trouble until this point in time. The New Folder option is not even listed when I right-click on the desktop and does not respond when clicked in another folder. I have Norton Security, but it might be a virus...I have no idea what it could be and why it is doing this now. I need help.

Hello Nicole82,
I see that you are having an issue with the creating a new folder option on your computer. This is a weird issue but I have a couple of suggestions that could help.
I would like you to click the start menu and type "desktop" in the search bar under all programs.  Select the program desktop and when the page opens there should be a "new folder" option at the top of the screen. Click that option and create a folder. Then go to the desktop and right click and see if you have the option to create new folders.
↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

Similar Messages

  • Help my computer does not recognise my hard drive

    Hi All,
    Yesterday I turned my computer on to find that it would not start up. I tried following advice etc about starting up in safe mode etc but no help what I have found is that he computer does not recognise the hard drive anymore so when I out the osx install disk in and run system profiler and disk utility it does not show a hard drive. I have not done anything for this to happen. Can anyone help me with this.
    Thanks.
    Paul

    Instead of using older OS X CD/DVD install to a new drive.
    Where is your backup and clone?
    Buy some drives! that is a must.
    Pick up a FW case, you will need it to put the old drive in, and later, so you have an external and off line drive for backups and maintenance.
    A copy of TechTool Pro 4/5 and Disk Warrior (DW first).
    SuperDuper to clone your drives.
    Demo of Prosoft Data Rescue 3 to scan the drive once you have a system and you put the 'dead' drive in FW case.
    Then do backups and preventative maintenance on a very regular basis and have at least two backup sets.
    If you have been doing that, and know and have read those instructions in the past....

  • HELP: "web-app" does not allow "filter"

    Here is my web.xml, but everytime I tried to start the web server 6.1, it complains:
    info: CORE3282: stdout: PARSE error at line 108 column -1
    info: CORE3282: stdout: org.xml.sax.SAXParseException: Element "web-app" does not allow "filter" here.
    failure: ContextConfig[simple] WEB3524: Parse error in application web.xml
    org.xml.sax.SAXParseException: Element "web-app" does not allow "filter" here.
    at org.apache.crimson.parser.Parser2.error(Parser2.java:3160)
    The following is my web.xml file, thank you let me know what make it!
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_3.dtd">
    <web-app>
    <display-name>webapps-simple</display-name>
    <description>
    The jakarta-tomcat-4.0.3 sample apps ports over to Sun One Web Server.
    </description>
    <distributable></distributable>
    <servlet>
    <servlet-name>HelloWorldExample</servlet-name> <servlet-class>samples.webapps.simple.servlet.HelloWorldExample</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>HelloWorldExample</servlet-name>
    <url-pattern>/helloworld</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    </welcome-file-list>
    <taglib> <taglib-uri>http://java.apache.org/tomcat/examples-taglib</taglib-uri> <taglib-location>/WEB-INF/tlds/example-taglib.tld</taglib-location>
    </taglib>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Protected Area</web-resource-name>
    <url-pattern>/jsp/security/protected/*</url-pattern>
    <http-method>DELETE</http-method>
    <http-method>GET</http-method>
    <http-method>POST</http-method>
    <http-method>PUT</http-method>
    </web-resource-collection>
    <auth-constraint>
    <role-name>tomcat</role-name>
    <role-name>role1</role-name>
    </auth-constraint>
    </security-constraint>
    <filter>
    <filter-name>Validation Filter</filter-name> <filter-class>filter.ISValidationFilter</filter-class>
    <init-param> <param-name>onlyAllowRequestWithToken</param-name>
    <param-value>true</param-value>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>Validation Filter</filter-name>
    <url-pattern>/filtered/*</url-pattern>
    </filter-mapping>
    </web-app>

    I also getting the same error
    my web.xml
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
         <filter>
              <filter-name>Security Filter</filter-name>
              <filter-class>org.securityfilter.filter.SecurityFilter</filter-class>
              <init-param>
                   <param-name>config</param-name>
                   <param-value>/WEB-INF/securityfilter-config.xml</param-value>
                   <description>Configuration file location (this is the default value)</description>
              </init-param>
              <init-param>
                   <param-name>validate</param-name>
                   <param-value>true</param-value>
                   <description>Validate config file if set to true</description>
              </init-param>
         </filter>
         <filter-mapping>
              <filter-name>Security Filter</filter-name>
              <url-pattern>/*</url-pattern>
         </filter-mapping>
    <!-- Action Servlet Configuration -->
    <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
    <param-name>config</param-name>
    <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <init-param>
    <param-name>debug</param-name>
    <param-value>3</param-value>
    </init-param>
         <init-param>
              <param-name>application</param-name>
              <param-value>ApplicationResources</param-value>
         </init-param>
    <init-param>
    <param-name>detail</param-name>
    <param-value>3</param-value>
    </init-param>
    <load-on-startup>2</load-on-startup>
    </servlet>
    <!-- Action Servlet Mapping -->
    <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
    </servlet-mapping>
    <!-- The Welcome File List -->
    <welcome-file-list>
    <welcome-file>abc.jsp</welcome-file>
    </welcome-file-list>
    <taglib>
    <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
    <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
    </taglib>
    </web-app>
    if I change as you said
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    line with
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    then it's not loading the application
    pls suggest me
    my mail id is [email protected]

  • Help ,Disk utility does not allow me to partition my internal HD

    hello , i want to partition my internal hard drive but for some reason disk utility does not allow me to , when i click on the partition window everything is greyed out, i read on other thread that file vault might be the problem but is already off , i can t figure out what the issue is any ideas ??? here is a screenshot.

    Not if you want to be able to restore the Boot Camp partition using Boot Camp Assistant. There are alternative boot loaders you can use to add Windows and Linux to an OS X drive. You would first need to restore your drive by deleting the Boot Camp partition you now have. Then take a look at The rEFInd Boot Manager: Getting rEFInd - Roderick W. Smith.

  • TS3899 out going mail has been rejected by the server because it does not allow relaying from my new ipad but ok with my mac laptop

    my new ipad will not send mail "server has rejected because it does not allow relaying" my iphone and mac is ok and also the ipad will recieve mail

    SEARCH!!!
    http://lmgtfy.com/?q=iphone+server+does+not+allow+relaying

  • HELP! Computer does not recognize ipod (click wheel)

    My ipod is not recognized on my computer at work or at home. The apple does come up on the ipod when I hook it up to the computer but shortly after an sad face comes and then the charge icon that is not moving. Please help. The computer is not recognizing the ipod so I can't even restore or update it.

    Try this link regarding computer not reconzing iPod and sad face
    http://docs.info.apple.com/article.html?artnum=61711
    http://docs.info.apple.com/article.html?artnum=61771

  • Has anyone else noticed that on CC the pentool does not allow you to create an open path? When I try to make two open paths(eg; two separate lines), the pentool connects them automatically. Also it does not automatically close a path. This is both a probl

    This is a big headache having the pentool respond this way. Does anyone else have this problem? I have also installed CC 2014 on my home computer and have the same problem. so it seems to be a problem with the program.

    Hi Doug,
    I'm sure I did not notice a difference in Esc key behavior simply because I have never tried to use the Esc key to stop the Pen Tool from picking up the current path.
    I just tested with all these versions of Photoshop:  6.0, CS2, CS3, CS4, CS5, CS6, CC 14.x, and CC (2014) on my PC workstation running Windows 8.1.
    Observations:
    Photoshop versions 6.0, CS5, and CS6 DO terminate the creation of the current path at the current point upon pressing the Esc key. However, Photoshop versions CS2, CS3, CS4, CC 14.x, and CC (2014). do not terminate the creation of the path upon pressing Esc, and will continue the path with another pen click.  Photoshop CC 14.x and CC (2014) may make it SEEM like the path creation is terminated because they hide the points, but the next click continues the path and causes all the points to reappear.
    In every case holding the control key down (to temporarily choose the Direct Selection Tool) and clicking off the current path terminates the creation with an open path and allows the creation of another separate path.
    No version closes the path (made the path into a closed shape) upon pressing Esc.  The only way I know to close a path is to bring the cursor back to the starting point, watch for a little o to appear next to the cursor, then click the mouse.
    With Photoshop 6.0, CS2, CS3, CS4, and CS5 the response of the Pen Tool was instantaneous.  There was a definite slowdown / sluggishness in Photoshop CS6 and CC 14.x, which is now corrected in Photoshop CC (2014), which is again instantly responsive.
    The only other thing I can think of regarding closing a path might be that when using the Pen Tool there are choices in the Options Bar about whether you're creating a shape or a path.  Are you ensuring you have that set the same way as you have had it set in the past?
    -Noel

  • XI does not allow me to add new segment....?

    Hi,
    I created a message from XSD...The XSD allows one node to be repeated say 5 number of times.
    But when I create the Message out of this XSD, it has just one node for this .Now I want to create another similar node...
    Any idea how  to do that?
    Thanks

    Hi,
    have you tried changing the XSD node to something like this:
    <xsd:element ref="Orders" minOccurs="0" maxOccurs="unbounded" />
    if defined like this it will allow many Orders nodes
    Regards,
    michal

  • Photoshop Elements 9 -Contact Book does not allow me to add new contacts.

    I am using PS Elements 9. I added 17 new contacts when I first used it but now it won't save any new contact information. So any new people I want to email from within PS9  I can't. Anyone know why this happens and how can it be fixed. Any help appreciated.

      It should be working, how are you trying to do it?
    On the top menu of Organizer click on Edit >>Contact Book
    Click New Contact
    Enter details and click OK
    Select photos, click Share >>Photomail
    Your new contact should show up in the list and you can add a checkmark and click next etc.
     

  • The RFX before upgrade does not allow me to add items from catalog

    hello gurus
    I have a problem with the RFX, we did an upgrade to SRM7.0 from SRM5.0.
    The RFX that existed before upgrade in the server does not allow me to add new items from catalog.
    each RFx I created after the upgrade works fine.
    My client needs to work with the RFx still open, add items and make bids.
    I have reviewed the upgrade guide and found nothing regarding an update of purchasing documents.
    I have
    SRM 7.0 SPS03 EHP1
    MDM 7.1 SP06
    MDM catalog 3.0SP10

    in SRM 5.0 the system was MDM catalog. Actually, after the upgrade , i have SRM7.01 with MDM catalog.
    i donn´t know if it is about version, SP or compatability issue, but i believe the upgrade not affect the purchaser documents.
    Those look as locked to modify. on tap Position, the buttom ADD LINE, only i can see Position, not anymore option like MDM catalog, free text.
    it is a big problem, because the client has documents opened. i need to resolve this issue. Actually i am working in a sandbox system, but i afraid to have the same problem in PRD system after upgrade.
    regards

  • Have Yahoo Mail Plus, which does not allow ads. When on my work computer and log into my Yahoo account, ads do appear?? This does not happen on Explorer. Help

    Have a Yahoo Mail Plus account, which does not allow for ads. It works fine on Explorer, but when used on Firefox the same ads always appear both at the top and left margins "Dr. Oz New Weight Loss Secret". Yahoo says it is a Firefox issue. Please help.

    another thing you can try is to [[Reset Firefox – easily fix most problems|reset firefox]].
    in case there are still adverts shown in places where they aren't supposed to be afterwards, it sounds like an issue with malware on the system. please run a full scan of your pc with the security software already in place and different tools like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes], [http://www.microsoft.com/security/scanner/default.aspx microsoft safety scanner] or [http://www.kaspersky.com/security-scan kaspersky security scan].
    [[Troubleshoot Firefox issues caused by malware]]

  • How come my external hard drive is no longer visible in finder even after ticking it in preferences? it shows in the disk utilities but does not allow me to find a problem or fix the problem? Please help.

    it shows in the disk utilities but does not allow me to find a problem or fix the problem? Please help. also my external hard drive is a seagate free agent go, 500GB. it is visible on my tv but has no files in it… i'm scared i've lost everything?

    Honestly i cannot remember sorry, i got it like 5 maybe 6 yrs ago and just started downloading things to it as the memory on the computer started filling up and when i wanted to see photos/videos on my TV.
    My wife did tell me after i had written this post that she did try and record TV to it as it was plugged in. I think by doing so somehow has deleted everything.   It reads on my TV yet has no files in it but won't show up on my computer. hope this helps.
    Starting to think it is going to cost more to retrieve files on it than it will be to buy a newer and larger one.

  • Firefox with GoogleDocs, "Your browser does not allow access to your computer's clipboard." Solution?

    This question was asked two months ago and never solved, so I thought I'd bring it up again, as it's new to me and perhaps Firefox has changed since then. I know it's Google, but as it pokes at Firefox, thought I'd take a shot. This is the previous question:
    [[https://support.mozilla.com/en-US/questions/867479?s=firefox+access+to+clipboard&r=3&as=s|Previous question]]
    Basically, when using GoogleDocs with a right-click cut/copy and paste, it doesn't function. I get the error message above: "Your browser does not allow access to your computer's clipboard." It's as simply broken as that. I recently had an issue in Firefox with the clipboard that required a system restore to solve, so that may be related.
    I have done three different virus/malware scans on my computer, and everything comes back clean. Which it should be, as I'm a very careful user.

    Yes, that was the first thing that I tried. I really couldn't get it to do... anything useful at all. So I'm guessing it's somehow different in detail, though the question is the same; Firefox vs. the Windows clipboard. It's difficult of course, when working with Google, to figure out where Firefox's code issues end and Google's overblown invasive code begins.
    At any rate, no, that extension did not help. But thank you for the suggestion.
    I'm sure that there's a solution out there somewhere....

  • I have used Illustrator CS3 on my two try or three previous computers. Now I try to install Illustrator CS3 on a my new (4 weeks old) computer. Adobe does not allow me, but demands me to proof myself being an owner of Illustrator CS2 or older. I don't man

    I have used Illustrator CS3 on my two try or three previous computers. Now I try to install Illustrator CS3 on a my new (4 weeks old) computer. Adobe does not allow me, but demands me to proof myself being an owner of Illustrator CS2 or older. I don't manage to speak English on phone, bad hearing, to fast spoken, odd expressions.What can I do? Is there a possibility to write a complain?

    You can use online chat to talk with Adobe.  For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • I tried to update, but my apple ID does not allowing me , always giving me 'Your device or computer could not be verified. Contact support for assistance

    I tried to update, but my apple ID does not allowing me , always giving me 'Your device or computer could not be verified. Contact support for assistance '. I changed my apple ID passwords, still same. help me please

    Back up all data before proceeding.
    Step 1
    Triple-click anywhere in the line below on this page to select it:
    /Library/Preferences/SystemConfiguration/NetworkInterfaces.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Move the selected item to the Trash. You may be prompted for your administrator login password. Restart the computer and test.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    Log out, log back in, and test. If there's no improvement, continue.
    Step 2
    Reset your computer’s PRAM.

Maybe you are looking for

  • Creating a new FXML File (Eclipse IDE) cannot finish

    Following steps on: http://docs.oracle.com/javafx/scenebuilder/1/use_java_ides/sb-with-eclipse.htm#BABBFEBD 5. In the FXML File dialog box, complete the creation of the new FXML document using the following steps:... I get the panel to fill in but no

  • Save as pdf 1.7 and above in preflight - fixups missing?

    Why is the highest version number just 1.6, in the list of available "Save as pdf" fixups? I'm running CC, Acobat XI pro. Is it just not recommended to use higher versions? If that's the case, I'll stick to 1.6. The customer that I'm making this pref

  • DLO Homedock Deluxe + Album Art on TV w/Classic...

    Has anyone here with the latest model of the DLO Homedock Deluxe been able to get album art displayed on their TV with it while using an iPod Classic? I understand that between firmware updates from Apple and DLO, the video-out issue has been resolve

  • Downloaded elements 12 and now wont open

    downloaded elements 12 and now wont open

  • The solution for Sprint problem

    The timeout for transfer is set to July 2nd. Ask them politely to reset the timeout. They aren't supposed to but it works immediately.