Wie kann ich den Sonderordner "Eigene Bilder" in Windows 7 wiederherstellen?

864
Hashim

Ich habe versehentlich vor einiger %USERPROFILE%\My PicturesZeit gelöscht und möchte es wiederherstellen, aber obwohl ich die letzte Stunde versucht habe, bin ich dem nicht näher gekommen. Ich habe alle meine Bilder in einen neuen Ordner mit dem Namen "Meine Bilder" verschoben und im Internet zahlreiche Methoden ausprobiert, um den "offiziellen" Ordner zu erstellen. Dazu gehört, dass ihm Attribute über CMD zugewiesen werden und sichergestellt wird, dass ein Registrierungsschlüssel vorhanden ist HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders, der über Regedit darauf verweist . Bisher hat sich nichts geändert, um das Originalsymbol "Meine Bilder" im Ordner wiederherzustellen oder die Registerkarte "Speicherort" zu aktivieren, die alle speziellen Ordner in ihren Eigenschaften haben.

Abgesehen von dem, was ich bereits versucht habe, möchte ich wissen, wie ich entweder den alten Ordner "Meine Bilder" wiederherstellen oder den aktuellen Ordner "offiziell" erstellen kann. Würde mich wirklich über eine Antwort freuen. Vielen Dank.

4

1 Antwort auf die Frage

4
Pimp Juice IT

Nothing so far has worked to restore the original My Pictures icon to the folder or enable the Location tab that all special folders have in their Properties.

So aside from what I've already tried, I'm wanting to know how I can either restore the old My Pictures folder or make the current one I have "official". Would really appreciate an answer.

TO GET THE DEFAULT ICON BACK ONLY

Right-click on the new My Pictures folder and select the Properties option. Go to the Customize tab, and then in the Folder Pictures section, select the Restore Default option, and press Apply and then OK. Now check the folder for the default icon, etc.

enter image description here


TO GET THE DEFAULT ICON AND LOCATION TAB BOTH BACK

Run the below batch script so just save the logic to a .CMD or a .BAT file on your Windows PC somewhere with the issue, double-click, let it complete, then check to confirm all is back to normal.

@echo on taskkill /f /im explorer.exe timeout /t 2 /nobreak >nul if not exist "%UserProfile%\Pictures" mkdir "%UserProfile%\Pictures" reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "My Pictures" /t REG_SZ /d "C:\Users\%USERNAME%\Pictures" /f reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "My Pictures" /t REG_EXPAND_SZ /d %%USERPROFILE%%"\Pictures" /f attrib +r -s -h "%USERPROFILE%\Pictures" /S /D timeout /t 1 /nobreak >nul start explorer.exe GOTO EOF 

SOURCE: Two Method Instructions

Schön erklärtes Update für einen dozy Fehler an erster Stelle ;-) + 1 für beide, aber es ist nicht das erste oder letzte Mal, dass jemand es tut. Tetsujin vor 8 Jahren 0
Vielen Dank dafür! Es scheint den Trick gemacht zu haben. Ein Problem mit dem Code jedoch - etwas scheint die Ausführung der letzten Zeile zu verhindern, sodass ich den Explorer manuell starten musste. Ansonsten funktioniert es super. Hashim vor 8 Jahren 0