PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Win 7 Infoleiste (unten) zurückbringen


Platos
2023-01-18, 16:21:15
(Als erstes: Ist keine Frage sondern meine Lösung zu dem Problem, die ich hier teilen will)

Bei Win 7 gab es im Explorer so eine Leiste unten. Wenn man auf ein Video geklickt hat, stand da dann direkt die Auflösung und Dauer des Videos. Bei Win 10 und 11 gibt es nur noch eine ganz kleine Leiste mit der Anzahl Elemente und Dateigrösse. Microsoft ist ja spezialist im Kaputtoptimieren.

Naja, mich hat das schon immer aufgeregt, aber jetzt wollte ich mal endlich ne Lösung dafür finden, da ich nämlich sehr oft Dateien anhand der Videolänge identifiziere (weil der Name praktisch gleich ist und auch zu lang, um direkt zu erkennen). Ebenfalls brauche ich oft die Auflösung der Datei, damit ich weiter machen kann.

Mir ist schon bewusst, dass man diese Information direkt kriegt, wenn man über eine Datei fährt und wartet... ja, eben, wartet... Oder Rechtklick und Eigenschaften...

Aber das stört den Flow. Leider habe ich keine wirkliche Lösung gefunden dafür (ohne Software). Bin nur auf diesen Thread gestossen, der aber keine Lösung beinhaltet, aber vlt. sieht das ja mal jemand und kann damit was anfangen: https://www.tenforums.com/customization/103750-showing-video-aspect-ratio-file-info-tooltip.html

Aber zur "Lösung" (mit Software): OldNewExplorer: https://msfn.org/board/topic/170375-oldnewexplorer-119/#comments

Jetzt denkt vlt. jemand, ich nutze schon allerhand Software um Win 11/10 wie was anderes aussehen zu lassen und ich tue das auch, funktioniert trotzdem bisher gut:

- Ich nutze Win 11 Pro 22H2 (aktuellste Updates Stand 18.01.2023).
- Des weitern Nutze ich "Explorer Patcher" (https://github.com/valinet/ExplorerPatcher)
- Und Win 10 Icon Pack: (https://github.com/2013Windows81/IconPacks)

OldNew Explorer scheint damit zu funktionieren (und stellt nix um) mit diesen Settings (Ich habe trotzdem einen Wiederhertellungspunkt gemacht zur Sicherheit):

https://abload.de/img/oldnewexplorer-settin67de6.png

Obwohl da unten Win 7 Style und White steht, hat das irgendwie keinen Einfluss (was für mich gut ist).
[Edit: "Use alternate navigation buttons style" darf NICHT angewählt sein. Ist mir nicht aufgefallen, aber man siehts im Bild, dann werden die vor- & zurücktasten im Explorer anders.]

"Show Status Bar" ist nun nicht mehr nötig, da es ja eben die detailierte Info-bar gibt. Mit Rechtsklick auf die neue Leiste kann man noch die Grösse einstellen und somit, wie viel Information angezeigt wird (bei klein wird z.B die Bitrate nicht angezeigt): Das sieht dann bei mir so aus mit klein und Mittel in der Grösse:

https://abload.de/img/win11explorerinfoleis20dry.png

Ich kann mit dieser Lösung leben. Funktioniert soweit und habe endlich dieses Feature zurück.
Auch wenn die Anzeige "Bewertung" bisschen unnötig ist und ich schon immer fand. Aber darum kümmere ich mich ein ander mal vielleicht.

Edit: Das mit der Bewertung habe ich auch gleich gelöst mit einer Registry-Änderung. Es ist aber mühsam, da man es für jeden Dateityp erneut ändern muss. Beispiel an .mp4:

Computer\HKEY_CLASSES_ROOT\SystemFileAssociations\.mp4

Dann dort bei "PreviewDetails" doppelklicken und beim Wert dann "System.Rating;" suchen und diesen Teil einfach weglöschen. Dann den Explorer oder Windows neustarten und die Bewertung ist (bei .mp4 Dateien) weg. Man kann dafür sicher ne batch schreiben, um die ganzen Dateiendungen unter "Computer\HKEY_CLASSES_ROOT\SystemFileAssociations" abzuändern, aber da bin ich nicht gut.

Falls es jemand (z.B ich in Zukunft) vermurkst, das ist der Originalwert bei mir bei .mp4: [CODE]prop:*System.Title;*System.Media.Duration;*System.Size;*System.Video.FrameWidth; *System.Video.FrameHeight;System.Rating;*System.Keywords;*System.Comment;*System .Music.Artist;*System.Music.Genre;*System.ParentalRating;*System.OfflineAvailabi lity;*System.OfflineStatus;*System.DateModified;*System.DateCreated;*System.Shar edWith;*System.Media.SubTitle;*System.Media.Year;*System.Video.FrameRate;*System .Video.EncodingBitrate;*System.Video.TotalBitrate

Wenn man die Bewertung dann gelöscht hat, hat es nämlich auch mit "kleiner" Leiste Platz für die Framerate und Datenbitrate.

Edit2: Ich habe mal ne .reg-Datei gemacht, welche die Bewertungsfunktion von 12 Dateiendungen entfernt: .avi, .jpeg, .jpg, .m4a, .mkv, .mp3, .mp4, .tif, .tiff, .ts, .wav, und .wmv. .png hat von Haus aus keine.

Bevor ihr das ändert am besten die Registry sichern, aber hier der Code dafür:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\SystemFileAssociations\.avi]
"PreviewDetails"="prop:*System.Title;*System.Media.Duration;*System.Size;*System.Video.FrameWidth; *System.Video.FrameHeight;*System.Keywords;*System.Comment;*System.Music.Artist; *System.Music.Genre;*System.ParentalRating;*System.OfflineAvailability;*System.O fflineStatus;*System.DateModified;*System.DateCreated;*System.SharedWith;*System .Media.SubTitle;*System.Media.Year;*System.Video.FrameRate;*System.Video.Encodin gBitrate;*System.Video.TotalBitrate"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.jpeg]
"PreviewDetails"="prop:System.Photo.DateTaken;System.Keywords;*System.Photo.PeopleNames;*System.Im age.Dimensions;*System.Size;System.Title;System.Author;System.Comment;*System.Of flineAvailability;*System.OfflineStatus;System.Photo.CameraManufacturer;System.P hoto.CameraModel;System.Subject;*System.Photo.FNumber;*System.Photo.ExposureTime ;*System.Photo.ISOSpeed;*System.Photo.ExposureBias;*System.Photo.FocalLength;*Sy stem.Photo.MaxAperture;*System.Photo.MeteringMode;*System.Photo.SubjectDistance; *System.Photo.Flash;*System.Photo.FlashEnergy;*System.Photo.FocalLengthInFilm;*S ystem.DateCreated;*System.DateModified;*System.SharedWith"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.jpg]
"PreviewDetails"="prop:System.Photo.DateTaken;System.Keywords;*System.Photo.PeopleNames;*System.Im age.Dimensions;*System.Size;System.Title;System.Author;System.Comment;*System.Of flineAvailability;*System.OfflineStatus;System.Photo.CameraManufacturer;System.P hoto.CameraModel;System.Subject;*System.Photo.FNumber;*System.Photo.ExposureTime ;*System.Photo.ISOSpeed;*System.Photo.ExposureBias;*System.Photo.FocalLength;*Sy stem.Photo.MaxAperture;*System.Photo.MeteringMode;*System.Photo.SubjectDistance; *System.Photo.Flash;*System.Photo.FlashEnergy;*System.Photo.FocalLengthInFilm;*S ystem.DateCreated;*System.DateModified;*System.SharedWith"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.m4a]
"PreviewDetails"="prop:System.Music.Artist;System.Music.AlbumTitle;System.Music.Genre;*System.Medi a.Duration;System.Media.Year;*System.Size;System.Music.TrackNumber;System.Music. AlbumArtist;System.Title;*System.Audio.EncodingBitrate;*System.DateModified;Syst em.Keywords;System.ParentalRating;*System.OfflineAvailability;*System.OfflineSta tus;*System.DateCreated;*System.SharedWith"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.mkv]
"PreviewDetails"="prop:*System.Title;*System.Media.Duration;*System.Size;*System.Video.FrameWidth; *System.Video.FrameHeight;*System.Keywords;*System.Comment;*System.Music.Artist; *System.Music.Genre;*System.ParentalRating;*System.OfflineAvailability;*System.O fflineStatus;*System.DateModified;*System.DateCreated;*System.SharedWith;*System .Media.SubTitle;*System.Media.Year;*System.Video.FrameRate;*System.Video.Encodin gBitrate;*System.Video.TotalBitrate"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.mp3]
"PreviewDetails"="prop:System.Music.Artist;System.Music.AlbumTitle;System.Music.Genre;*System.Medi a.Duration;System.Media.Year;*System.Size;System.Music.TrackNumber;System.Music. AlbumArtist;System.Title;*System.Audio.EncodingBitrate;*System.DateModified;*Sys tem.OfflineAvailability;*System.OfflineStatus;*System.DateCreated;*System.Shared With"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.mp4]
"PreviewDetails"="prop:*System.Title;*System.Media.Duration;*System.Size;*System.Video.FrameWidth; *System.Video.FrameHeight;*System.Keywords;*System.Comment;*System.Music.Artist; *System.Music.Genre;*System.ParentalRating;*System.OfflineAvailability;*System.O fflineStatus;*System.DateModified;*System.DateCreated;*System.SharedWith;*System .Media.SubTitle;*System.Media.Year;*System.Video.FrameRate;*System.Video.Encodin gBitrate;*System.Video.TotalBitrate"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.tif]
"PreviewDetails"="prop:System.Photo.DateTaken;System.Keywords;*System.Photo.PeopleNames;*System.Im age.Dimensions;*System.Size;System.Title;System.Author;System.Comment;*System.Of flineAvailability;*System.OfflineStatus;System.Photo.CameraManufacturer;System.P hoto.CameraModel;System.Subject;*System.Photo.FNumber;*System.Photo.ExposureTime ;*System.Photo.ISOSpeed;*System.Photo.ExposureBias;*System.Photo.FocalLength;*Sy stem.Photo.MaxAperture;*System.Photo.MeteringMode;*System.Photo.SubjectDistance; *System.Photo.Flash;*System.Photo.FlashEnergy;*System.Photo.FocalLengthInFilm;*S ystem.DateCreated;*System.DateModified;*System.SharedWith"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.tiff]
"PreviewDetails"="prop:System.Photo.DateTaken;System.Keywords;*System.Photo.PeopleNames;*System.Im age.Dimensions;*System.Size;System.Title;System.Author;System.Comment;*System.Of flineAvailability;*System.OfflineStatus;System.Photo.CameraManufacturer;System.P hoto.CameraModel;System.Subject;*System.Photo.FNumber;*System.Photo.ExposureTime ;*System.Photo.ISOSpeed;*System.Photo.ExposureBias;*System.Photo.FocalLength;*Sy stem.Photo.MaxAperture;*System.Photo.MeteringMode;*System.Photo.SubjectDistance; *System.Photo.Flash;*System.Photo.FlashEnergy;*System.Photo.FocalLengthInFilm;*S ystem.DateCreated;*System.DateModified;*System.SharedWith"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.ts]
"PreviewDetails"="prop:*System.Title;*System.Media.Duration;*System.Size;*System.Video.FrameWidth; *System.Video.FrameHeight;*System.Keywords;*System.Comment;*System.Music.Artist; *System.Music.Genre;*System.ParentalRating;*System.OfflineAvailability;*System.O fflineStatus;*System.DateModified;*System.DateCreated;*System.SharedWith;*System .Media.SubTitle;*System.Media.Year;*System.Video.FrameRate;*System.Video.Encodin gBitrate;*System.Video.TotalBitrate"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.wav]
"PreviewDetails"="prop:System.Music.Artist;System.Music.AlbumTitle;System.Music.Genre;*System.Medi a.Duration;System.Media.Year;*System.Size;System.Music.TrackNumber;System.Music. AlbumArtist;System.Title;*System.Audio.EncodingBitrate;*System.DateModified;Syst em.Keywords;System.ParentalRating;*System.OfflineAvailability;*System.OfflineSta tus;*System.DateCreated;*System.SharedWith"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.wmv]
"PreviewDetails"="prop:*System.Title;*System.Media.Duration;*System.Size;*System.Video.FrameWidth; *System.Video.FrameHeight;*System.Keywords;*System.Comment;*System.Music.Artist; *System.Music.Genre;*System.ParentalRating;*System.OfflineAvailability;*System.O fflineStatus;*System.DateModified;*System.DateCreated;*System.SharedWith;*System .Media.SubTitle;*System.Media.Year;*System.Video.FrameRate;*System.Video.Encodin gBitrate;*System.Video.TotalBitrate"


Es ist jeweils nur das Rating rausgelöscht und sonst nichts.

Hier die Originale (wieder Rückgängig machen, aber nur jeweils der eine Eintrag):

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\SystemFileAssociations\.avi]
"PreviewDetails"="prop:*System.Title;*System.Media.Duration;*System.Size;*System.Video.FrameWidth; *System.Video.FrameHeight;System.Rating;*System.Keywords;*System.Comment;*System .Music.Artist;*System.Music.Genre;*System.ParentalRating;*System.OfflineAvailabi lity;*System.OfflineStatus;*System.DateModified;*System.DateCreated;*System.Shar edWith;*System.Media.SubTitle;*System.Media.Year;*System.Video.FrameRate;*System .Video.EncodingBitrate;*System.Video.TotalBitrate"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.jpeg]
"PreviewDetails"="prop:System.Photo.DateTaken;System.Keywords;*System.Photo.PeopleNames;System.Rat ing;*System.Image.Dimensions;*System.Size;System.Title;System.Author;System.Comm ent;*System.OfflineAvailability;*System.OfflineStatus;System.Photo.CameraManufac turer;System.Photo.CameraModel;System.Subject;*System.Photo.FNumber;*System.Phot o.ExposureTime;*System.Photo.ISOSpeed;*System.Photo.ExposureBias;*System.Photo.F ocalLength;*System.Photo.MaxAperture;*System.Photo.MeteringMode;*System.Photo.Su bjectDistance;*System.Photo.Flash;*System.Photo.FlashEnergy;*System.Photo.FocalL engthInFilm;*System.DateCreated;*System.DateModified;*System.SharedWith"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.jpg]
"PreviewDetails"="prop:System.Photo.DateTaken;System.Keywords;*System.Photo.PeopleNames;System.Rat ing;*System.Image.Dimensions;*System.Size;System.Title;System.Author;System.Comm ent;*System.OfflineAvailability;*System.OfflineStatus;System.Photo.CameraManufac turer;System.Photo.CameraModel;System.Subject;*System.Photo.FNumber;*System.Phot o.ExposureTime;*System.Photo.ISOSpeed;*System.Photo.ExposureBias;*System.Photo.F ocalLength;*System.Photo.MaxAperture;*System.Photo.MeteringMode;*System.Photo.Su bjectDistance;*System.Photo.Flash;*System.Photo.FlashEnergy;*System.Photo.FocalL engthInFilm;*System.DateCreated;*System.DateModified;*System.SharedWith"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.m4a]
"PreviewDetails"="prop:System.Music.Artist;System.Music.AlbumTitle;System.Music.Genre;*System.Medi a.Duration;System.Rating;System.Media.Year;*System.Size;System.Music.TrackNumber ;System.Music.AlbumArtist;System.Title;*System.Audio.EncodingBitrate;*System.Dat eModified;System.Keywords;System.ParentalRating;*System.OfflineAvailability;*Sys tem.OfflineStatus;*System.DateCreated;*System.SharedWith"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.mkv]
"PreviewDetails"="prop:*System.Title;*System.Media.Duration;*System.Size;*System.Video.FrameWidth; *System.Video.FrameHeight;System.Rating;*System.Keywords;*System.Comment;*System .Music.Artist;*System.Music.Genre;*System.ParentalRating;*System.OfflineAvailabi lity;*System.OfflineStatus;*System.DateModified;*System.DateCreated;*System.Shar edWith;*System.Media.SubTitle;*System.Media.Year;*System.Video.FrameRate;*System .Video.EncodingBitrate;*System.Video.TotalBitrate"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.mp3]
"PreviewDetails"="prop:System.Music.Artist;System.Music.AlbumTitle;System.Music.Genre;*System.Medi a.Duration;System.Rating;System.Media.Year;*System.Size;System.Music.TrackNumber ;System.Music.AlbumArtist;System.Title;*System.Audio.EncodingBitrate;*System.Dat eModified;*System.OfflineAvailability;*System.OfflineStatus;*System.DateCreated; *System.SharedWith"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.mp4]
"PreviewDetails"="prop:*System.Title;*System.Media.Duration;*System.Size;*System.Video.FrameWidth; *System.Video.FrameHeight;System.Rating;*System.Keywords;*System.Comment;*System .Music.Artist;*System.Music.Genre;*System.ParentalRating;*System.OfflineAvailabi lity;*System.OfflineStatus;*System.DateModified;*System.DateCreated;*System.Shar edWith;*System.Media.SubTitle;*System.Media.Year;*System.Video.FrameRate;*System .Video.EncodingBitrate;*System.Video.TotalBitrate"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.tif]
"PreviewDetails"="prop:System.Photo.DateTaken;System.Keywords;*System.Photo.PeopleNames;System.Rat ing;*System.Image.Dimensions;*System.Size;System.Title;System.Author;System.Comm ent;*System.OfflineAvailability;*System.OfflineStatus;System.Photo.CameraManufac turer;System.Photo.CameraModel;System.Subject;*System.Photo.FNumber;*System.Phot o.ExposureTime;*System.Photo.ISOSpeed;*System.Photo.ExposureBias;*System.Photo.F ocalLength;*System.Photo.MaxAperture;*System.Photo.MeteringMode;*System.Photo.Su bjectDistance;*System.Photo.Flash;*System.Photo.FlashEnergy;*System.Photo.FocalL engthInFilm;*System.DateCreated;*System.DateModified;*System.SharedWith"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.tiff]
"PreviewDetails"="prop:System.Photo.DateTaken;System.Keywords;*System.Photo.PeopleNames;System.Rat ing;*System.Image.Dimensions;*System.Size;System.Title;System.Author;System.Comm ent;*System.OfflineAvailability;*System.OfflineStatus;System.Photo.CameraManufac turer;System.Photo.CameraModel;System.Subject;*System.Photo.FNumber;*System.Phot o.ExposureTime;*System.Photo.ISOSpeed;*System.Photo.ExposureBias;*System.Photo.F ocalLength;*System.Photo.MaxAperture;*System.Photo.MeteringMode;*System.Photo.Su bjectDistance;*System.Photo.Flash;*System.Photo.FlashEnergy;*System.Photo.FocalL engthInFilm;*System.DateCreated;*System.DateModified;*System.SharedWith"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.ts]
"PreviewDetails"="prop:*System.Title;*System.Media.Duration;*System.Size;*System.Video.FrameWidth; *System.Video.FrameHeight;System.Rating;*System.Keywords;*System.Comment;*System .Music.Artist;*System.Music.Genre;*System.ParentalRating;*System.OfflineAvailabi lity;*System.OfflineStatus;*System.DateModified;*System.DateCreated;*System.Shar edWith;*System.Media.SubTitle;*System.Media.Year;*System.Video.FrameRate;*System .Video.EncodingBitrate;*System.Video.TotalBitrate"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.wav]
"PreviewDetails"="prop:System.Music.Artist;System.Music.AlbumTitle;System.Music.Genre;*System.Medi a.Duration;System.Rating;System.Media.Year;*System.Size;System.Music.TrackNumber ;System.Music.AlbumArtist;System.Title;*System.Audio.EncodingBitrate;*System.Dat eModified;System.Keywords;System.ParentalRating;*System.OfflineAvailability;*Sys tem.OfflineStatus;*System.DateCreated;*System.SharedWith"

[HKEY_CLASSES_ROOT\SystemFileAssociations\.wmv]
"PreviewDetails"="prop:*System.Title;*System.Media.Duration;*System.Size;*System.Video.FrameWidth; *System.Video.FrameHeight;System.Rating;*System.Keywords;*System.Comment;*System .Music.Artist;*System.Music.Genre;*System.ParentalRating;*System.OfflineAvailabi lity;*System.OfflineStatus;*System.DateModified;*System.DateCreated;*System.Shar edWith;*System.Media.SubTitle;*System.Media.Year;*System.Video.FrameRate;*System .Video.EncodingBitrate;*System.Video.TotalBitrate"