My Documents contains shortcuts to my music, my pictures, and my videos

In Explorer Windows Win 7 (64), libraries for My Documents, my music, my pictures, and my videos are correctly displayed.

However, the left pane shows that in My Documents, in addition to personal folders, I created, there are shortcuts for my music, my pictures, and my videos. These show that access is denied when I click on them.

If I select My Documents in the left pane the three shortcuts are not displayed in the right pane.

How can I remove or delete these shortcuts in the left pane display in My Documents?
Thank you
Dave

They are shortcuts, so you can right-click / they / them and click on delete.

Shortcuts always display the curved right arrow symbol,.

Then right click the libraries list and click on restore default libraries.

See you soon.

Tags: Windows

Similar Questions

  • Shortcuts to my pictures, my music and my videos is locked?

    These "Access denied" shortcuts appear under Libraries\Documents\My Documents in two administrative accounts on an old computer with Windows SP1, newly installed at home since an OEM Setup disk.  (Usual folders my pictures, my music and my videos also appear directly under Libraries\Pictures, Libraries\Music and Libraries\Videos and * * are available.)  One that is inexplicably locked administrators is C:\Documents and Settings.  These locked folders/shortcuts appear or not hidden files or system files are enabled in Windows Explorer/Tools/Folder Options/View tab.  These two seem to be driven by check the box "Refuse" to "the folder list / read data" under Properties/Security/Advanced/permissions/edit the permissions/all the world/change. These locked elements do not, however, appear in a Standard user account or no hidden files or system files are activated.  I have not tinkered with the NTFS permissions on the volume C:\.

    I also have a newer computer, installed in OEM WIndws 7 SP1 which does not show either [correction follows:] locked shortcuts or the C:\Documents and Settings folder.  Although locked shortcuts are probably not a problem, I used to look in the folder C:\Documents and Settings of an administrator account in Windows XP.

    Are these from manifestations of a deeper problem, or must they be ignored?  They can / should be corrected?  If so, how can it be done safely? -JCW2

    No, those are shortcuts of compatibility.  The 'Documents and Settings' for example, which is not really a folder.  It was at the time of Windows 98, but now it's just 'users' (to make it easier to translate, the shortest path and remove spaces that are annoying when writing scripts and coding).

    But some programs do not have a variable name, they want a real spelled exactly 'Documents and Settings' folder and these bad programs crash if they can't find it.  The same programs usually crash when they ran on a different language of comptuer, because obviously the name of the folder will not be stated this way in another language.

    So for compatibility, a redirection of folder called a junction is placed instead.  You see access denied, but if a program tries to 'write' in this folder, it will be automatically redirected to the proper place.

    You can hide these junctions of compatibility by defining your default folder Options View tab.

  • Fix my Documents, my music, my pictures on XP files

    Hello.

    I've recently been organizing my pictures and music collection on my computer. Nothing special, just move the files. But now, something strange is happening in my My Documents folder. It now shows 'Music management' bar in the left pane of the folder. The folder now thinks that it's a music folder and I see the musical note background image in the folder window.

    The folder my pictures poster now a bar '"Video tasks' in the left pane of the folder. I couldn't find a way to fix these default folders.

    But wait, there is more. The problem with my hard drive C: folder, which also indicates the 'Music management' bar in the left pane of file.

    I've tried right-clicking on folders My Documents, my pictures and hard drive and then selecting Properties to see if I could change the template under the option "use this file as a template. However, to my horror, I didn't see any tab to customize in the Properties dialog box.

    How can I fix my folders My Documents, my pictures and drive hard for the left pane of the windows folder to come back if their windows?  Is there a button to 'repair' anywhere?

    I am using Windows XP Pro with SP3.

    Assumes,
    Canada

    I think that I found the solution to this problem.

    To resolve this issue, try the following:

    1. Create a new folder on your desktop (or use a folder, preferably not exist a system folder).
    2. Right-click on the folder and then click the Customize tab.
    3. Choose the Documents under "optimize this folder for.
    4. Press OK.
    5. Resize the folder, choose the desired view icon. Is not serious.
    6. In the menu folder, click Tools, Folder Options, and then click theview tab.
    7. Under "Views of folders", click apply to folders.
    8. Press OK.

    Now, open the My Documents folder, and an other folders, such as my pictures, my videos, etc..

    After that I tried this, all folders on my hard drive started showing the correct settings on the left panel. I did have to create a new account. I used my only existing.

  • If the name of the document contains, but NOT this

    I am trying to write the following script:

    If the name of the document contains 'before' and 'square', has.

    If the name of the document contains "recto" and NOT "square", do B.

    If the name of the document contains "back" and "square, do C.

    If the name of the document contains 'back' and 'square', NOT do D.

    Here is the code with the conditionals in the same order:

    for (i = 0; i < documents.length; i++){
        var curDoc = app.activeDocument = app.documents[i];
        var workingName = curDoc.name;
        if(workingName.match(/^*(front)*$/) != null && workingName.match(/^*(square)*$/) != null) {...} 
        if(workingName.match(/^*(front)*$/) != null && workingName.match(/^*(square)*$/) == null) {...} 
        if(workingName.match(/^*(back)*$/) != null && workingName.match(/^*(square)*$/) != null) {...} 
        if(workingName.match(/^*(back)*$/) != null && workingName.match(/^*(square)*$/) == null) {...} 
    }
    

    However, these ARE not return true and false as expected. As far as I know, taken individually, each regex match ground works.  I suspect that the problem lies in the & &, == null, and! = null shares, but am a bit of a loss.

    Specifically, a file named "before. TIF"is evaluated as TRUE for this condition:

    if(workingName.match(/^*(front)*$/) != null && workingName.match(/^*(square)*$/) != null) 
    

    If(workingName.match(/^*(front)*$/)! = null & & workingName.match(/^*(square)*$/)! = null) {...}

    It makes no sense, it does NOT contain the word "square" for the second half of this condition and thus the entire thing, must be set to false. Instead it's the treatment the & & (and) one | (or).

    Is (regexMatch! = null & & otherRegexMatch! = null) wrong approach?

    I tried with this and the tiff was not serious:

    #target photoshop
    for (i = 0; i < documents.length; i++){
        var curDoc = app.activeDocument = app.documents[i];
        var workingName = curDoc.name;  
    
        if(workingName.match(/(front)/g) && workingName.match(/(square)/g)) {alert(workingName +'   ' +1 +'   '+ workingName.match(/(front)/g) + '   '+workingName.match(/(square)/g) )}
        if(workingName.match(/(front)/g) && !workingName.match(/(square)/g)) {alert(workingName +'   ' +2 +'   '+ workingName.match(/(front)/g) + '   '+workingName.match(/(square)/g) )}
        if(workingName.match(/(back)/g) && workingName.match(/(square)/g)) {alert(workingName +'   ' +3)}
        if(workingName.match(/(back)/g) && !workingName.match(/(square)/g)) {alert(workingName +'   ' +4)}
        }
    
  • Adobe Muse (CC 2015.1) active not too big but still get error "The Document contains a link to an asset being non-existent".

    I receive the error "the Document contains a link to an asset being non-existent" despite the fact that the property in question has not been expanded beyond the original size. When I point to the item on the list of assets he confirms this, but he said also 'Page size point' and its dimensions are larger than the assets. I do not know what size "page" refers to, or if it has to do with the error.

    Asset.jpg

    as the error, your image to distort seen through some screens and generally making most of the images looks like *... open in photoshop (or whatever the editor floots your boat) and resize the image to have more dpi | pixels then save this image as your new.

  • Document contains a link to an asset being nonexistent

    "The document contains a link to an asset being non-existent.

    He said that I should refer to the active panel to solve the problems of the assets, but there is nothing in the active panel to tell me what is the cause of the problem. Am I missing something?

    Hello

    When put you a muse and later in the design process image size greater than its original size, then Muse gives you an alert indicating that the image may look pixelated.

    You can go to the components Panel and find the asset with the following symbol.

    If you hover over and he will tell you the original size and the re-sampled. In the case of resampling is causing pixelation of the image, then you can create an extension using Photoshop and relink the assets in the active panel.

    If you do not respect a pixelation, then you can ignore this error.

    Kind regards

    Vivek

  • What kind of image is in a document. INDD so when the file is opened you get the message 'document contains 6 links to sources that are missing' and when you click OK to recreate a link to missing files, the document opens with the images?

    What kind of image is in a document. INDD so when the file is opened you get the message 'document contains 6 links to sources that are missing' and when you click OK to recreate a link to missing files, the document opens with the images? Missing images are not on my computer, but when the document opens the images are there. I can copy and paste the INDD images in Illustrator. Y files/images/I am able to copy and paste the images that have been incorporated into the INDD file in AI of the INDD file? If this is not what type of image am I copy and paste? Can I take the images that I stuck in there and place them in a new INDD document and have the images to reproduce without problems?

    The images could be anything - check the links Panel.

    What you see (and copy) is just the screen preview, not the actual image data.

  • The present no embedded fonts in scanned documents containing plain text are not get converted fonts incorporated after OCR applied. But the texts are searchable. The text even unincorporated font that is formatted as text (not scanned) become stupid

    The present no embedded fonts in scanned documents containing plain text are not get converted fonts incorporated after OCR applied. But the texts are searchable. Even fonts not embedded text that is formatted as text (not digital) are themselves converted to fonts embedded by adobe distiller.

    Fix. Expected behavior.

    Output of the OCR is not incorporated. With Acrobat Pro, a preflight check is available to embed the fonts.

    On the use of Distiller - using a work option distill configured appropriately that the PDF created from the authoring application (FrameMaker, InDesign, MS Word, etc.) will have embedded fonts.

    Be well...

  • Annotations programmatically when a document contains several pages

    Hi all

    I am creating an application where a text markup must be programmatically created and applied to the currently open pdf document. I used the docs\AutoVueAPIProgrammersGuide.pdf & examples\AWTSample\AWTSample.java for reference. I managed to create the markup programmatically and apply it on the pdf document when it had only a single page. But when the document contains several pages my markup is applied on the same page, even after moving to subsequent pages using vueBean.setPage (vueBean.getPage () + 1);

    Looking at the behavior of the VueBean it seems that the VueBean has reset the view to the other page, but the control is always on the previous page. Is there something else I need to put other than the page number on the VueBean.

    Thanks in advance,
    Dwarka

    You need to set on the specifications page.
    Create the spec (in this case TextBoxSpec), the value of the page on the subject (setPage()), then create entity to use it.

    If you create a markup entity using another method and then please post your code snippet and we will help you with it.

  • Tree of the page of this document contains an invalid node

    We have some PDF files that our users add pages and bookmarks for from time to time.

    In one of them, once we go to the bookmark n61 I get the message error "tree page of this document contains an invalid node.  I have this same message for each bookmark after n ° 61

    I can remove the bookmarks, but still cannot access the pages.  If I try to navigate by paging down through the PDF only a small thumbnail of the pages screens.

    When I try to delete the pages concerned, I get the error message, "Dict object EXPECTED."

    I tried to extract only the pages above where to start the «problem» bookmarks  Unfortunately, I get the error 'tree page of this document contains an invalid node' when I try to do.

    Any ideas how I can fix this problem?  I appreciate any help or ideas about this.

    Thank you.

    The document is damaged. If you cannot back up the document from its original sources, and there is no version of the file from a backup, then you can try printing to the virtual printer of Acrobat pdf file to create a new version of the file. This is not the same quality as the original, but it might be acceptable.

  • Is there a method to extract the document contained watermarks?

    Is there a method to extract the document contained watermarks?

    Can I do this?

    Leonard, it's true that there are opportunities to do using the custom function. I mean the functino of ExtractWatermark() must be written by ourself and that no function is in the SDK.

    Kind regards

    Joe

  • How can I send my music to icloud and free up storage on my ipad that is full

    I own an ipad and iphone 6. the ipad is about 4 years old approx. full of downloaded and transferred other CDs and my storage capacity is busiest. How can I send my music to icloud and free up storage on my ipad. My iphone has not been synchronized with ipad. Cannot update my ipad for this reason software also.

    Thank you very much

    You can send music in the cloud of a device. You can delete music, and if it's purchased iTunes music you (if it is still in the store and you have not reached the country since purchasing it) may of it redownload purchased in the iTunes Store app tab. Because you own music (for example copied from CD) you'd need have subscribed to Match iTunes on your computer and downloaded the music to her computer, to show him in the cloud.

    You have all your music in your computer's iTunes library? Update of the iOS via a computer version should also require less free space on the device (but the update via a computer requires your content in the iTunes library, the update process will take up a back, wipe the iPad and install the iOS update and restore the backup, the backup contains things such as your documents photos, contacts, settings, etc, music, apps, etc. is picked up in the iTunes library)

  • iPhone 6 s - photo app does not allow users to take pictures and listen to music at the same time

    The repro steps:

    • iPhone 6 s - photo app does not allow the user to take pictures and listen to music at the same time

      Music app vs photo app

    (1) play a sound track in the music app
    (2) the swtich to app photo (on the "Photo" mode)
    (3) music stops

    Pandora app vs photo app

    1) turn on pandora
    2) switch to the camera on the 6s iphone app
    (3) stopping the music

    PLEASE FIX AS SOON AS POSSIBLE *.

    My iPhone stopped playing music when you take photos?

    Nothing to trouble since he was not taken in charge.

  • How can I organize my music with iTunes and iTunes game folder?

    I used iTunes for Windows for a few years and 2 years ago started with iTunes game. There are 81 000 files in my folder of music, with 35 000 files in a subfolder of my iTunes. iTunes has about 10,000 songs. Some songs are in my music only and some are in the music/iTunes/media folder. Some are both. With 81 000 files, it is impossible to set this manually. Is it possible to do this with iTunes?  I've never played music with other programs. Is the set of the 'my music' folder in Windows managed by iTunes?  I have a double file Finder application that will get rid of DUP, but I worry that a lot of the music is not in iTunes game. How can I fix the entire folder? Where can I I start again with iTunes game?

    These links may help:

    Manage and backup your iTunes media library - Apple Support

    iCloud library: understand the differences between music from Apple and iTunes game - Apple Support

    The link above:

    When iTunes game adds these songs in your music library from iCloud, iTunes game is not change or modify your original files music located on iTunes for Mac or PC, or on your iOS devices, where they have been added.

  • I have just Setup iPhone 3GS from my wife. Through iTunes, I loaded music, Photos, Contacts, and calendar. There is no Photos icon on the screen. They are responsible because appear it as choices in the selection of paper painted. help please. Thank you.

    I have just Setup iPhone 3GS from my wife. I.O.S. 6.1.6. Through iTunes, I loaded music, Photos, Contacts, and calendar. There is no 'Photos' icon on the screen. The photos are loaded because appear it as choices in the selection of wallpaper. I would be grateful for any help with this. Thank you.

    Jimbo1307 wrote:

    I have just Setup iPhone 3GS from my wife. I.O.S. 6.1.6. Through iTunes, I loaded music, Photos, Contacts, and calendar. There is no 'Photos' icon on the screen. The photos are loaded because appear it as choices in the selection of wallpaper. I would be grateful for any help with this. Thank you.

    Double check the app folder or home screen.

    Cannot delete the built-in app, so go to settings - general - reset - Reset available to the home screen.

Maybe you are looking for