Zeigen Sie "Eigene Dateien" / "Meine Videos" / etc an. ohne "Mein" Präfix in Windows 7

4739
Jacob

Obwohl Windows 7 im Home-Ordner spezielle Ordner als Documents/ Videos/ etc speichert, werden diese in Windows Explorer weiterhin als My Documents/ My Videos/ etc angezeigt . Ich habe es vorgezogen, wie Vista sie angezeigt hat (dh ohne das MyPräfix " ").

Gibt es eine Möglichkeit, dies in Windows 7 zu konfigurieren?

14
Sie setzen das "Mein" wieder ein? Warum sollten sie das tun? Verdammt. Phoshi vor 14 Jahren 0
Windows 7 zeigt standardmäßig "Mein" nicht an Shoban vor 14 Jahren 0
Soweit ich es verstanden habe, kam das "My" zurück, weil die Bibliothek "Documents" mit dem Ordner "Documents" verwechselt wurde. Larry Osterman vor 14 Jahren 0
@Shoban: Läufst du immer noch RC? Sie haben es nur in RTM zurückgelegt. Jacob vor 14 Jahren 1

3 Antworten auf die Frage

18
Jacob

Ich habe es selbst herausgefunden: In jedem speziellen Ordner gibt es eine desktop.iniDatei, die angibt, wie es angezeigt werden soll. Es gibt dort eine Zeile, die wie folgt aussieht:

LocalizedResourceName=@%SystemRoot%\system32\shell32.dll,-21770 

Diese Zeile weist Windows an, den lokalisierten Namen aus einer Zeichenfolgenressource in shell32.dll zu verwenden. Wenn Sie diese Zeile löschen, sich abmelden und erneut anmelden, stimmt der angezeigte Name mit dem Dateinamen überein.

Ich vermute, dass das manuelle Umbenennen des Ordners genau das tut.

8
William Hilsum

Gehen Sie am einfachsten in den Ausgangsordner, z. B. c:\users\<name>oder in Ausführungstyp. %userprofile%Klicken Sie dann mit der rechten Maustaste auf einen der myOrdner und wählen Sie "Umbenennen". Entfernen Sie dann das myPräfix.

Roh, aber funktioniert gut!

Ja, habe es gerade getestet. RCIX vor 14 Jahren 0
Dies hat bei mir in Windows 7 nicht funktioniert; Tatsächlich funktioniert es und kehrt dann zurück. Es war sehr frustrierend. Rob vor 13 Jahren 1
@Rob Das funktioniert gut in Windows 7, da ich es auf mehreren Maschinen getestet und getestet habe! William Hilsum vor 13 Jahren 0
Ich habe das gleiche Verhalten wie Rob gesehen. Ich kann es ändern, es dauert eine Weile, und dann Wochen oder Monate oder einige Zeit später kommt es bacl. jpmc26 vor 8 Jahren 0
3
cquirke

Shell folders such as "(My) Documents" are named at two levels, and UIs that rename "folders" are ambiguous as you don't know which level is being renamed.

At the file system directory level, is the name you'd see via file system managers, the Dir command, and so on.

The Windows shell (Windows Explorer, "My Computer" etc.) browses the namespace, not the file system as such, so it displays the namespace level.

Shell folders are linked to target file system directories in both directions; there are registry settings that point from namespace folder to file system directory, and within the file system directory there is a Desktop.ini that points back to the namespace.

Specifically, Desktop.ini may define: - an overriding "localized" folder name - whether this name is to be transferred when folder is copied - an ID that links to a set of special behaviours for that namespace item type

Sometimes the namsespace name is applied circumstantially, e.g. when logged into user account John, you may see "My Documents", whereas from other user accounts, you may see "John's Documents". Such behaviour may be defined within the logic for that type of namespace item, as pointed to by the ID in the Desktop.ini

Problems arise in at least two cases...

1) Multiple namespace items map to a single directory

In this situation, there's only one Desktop.ini to point back to these multiple referring namespace folders, and most likely "the last one wins".

2) Windows 7 periodically re-asserts default namespace names

Let's say you've carefully named the raw directory to taste, mapped the shell folder to this target, and set your desired namespace name within the Desktop.ini in the directory. You've viewed this from various UIs and all is as it should be.

Yet an a few days or weeks, the namespace names are back to "My..." again, and when you edit the Desktop.ini, you confirm the unwanted default name is being asserted there. You edit it back, but the same thing happens again, and again.

Problem (2) is the one I'm trying to solve, the search for which brought me to this thread.

Beeindruckend. Wenn ich ein Betriebssystem entwickelte, hätte ich nie daran gedacht, diese Funktionen hinzuzufügen. alle Zeit ihrer Zeit voraus und Zeit gut investiert! jozxyqk vor 8 Jahren 0