Adjusting File Explorer's List View in Older Windows 10 Versions (Upgrading to 1909)
If you have recently upgraded to Windows 10 version 1909 and have noticed that the File Explorer's List view appears different, you're not alone. Many users have reported issues with the List view in older versions of Windows 10 after upgrading to the latest version.
What is File Explorer's List View?
File Explorer's List view is a way to display files and folders in a vertical list, with details such as file name, size, and modification date visible for each item. It is a popular view mode for users who want to see more information about their files and folders without opening each one.
Why Does the List View Look Different in Older Versions of Windows 10 After Upgrading to 1909?
The List view in File Explorer has been updated in Windows 10 version 1909 to include new features and a modernized look. However, this update may cause the List view to appear different or unfamiliar to users who are accustomed to the older version.
How to Adjust the File Explorer's List View in Older Versions of Windows 10 (Upgrading to 1909)
If you prefer the older version of the List view in File Explorer, you can adjust the settings to revert to the classic view. Here's how:
- Open File Explorer and navigate to the folder you want to view in List view.
- Click on the "View" tab in the Ribbon menu at the top of the File Explorer window.
- In the "Layout" section, click on "List" to switch to List view.
- To adjust the columns displayed in the List view, right-click on any column header and select "More..." from the context menu.
- In the "Choose details" window, select the columns you want to display and clear the ones you don't want to see.
- Click "OK" to apply the changes.
Code Block: Adjusting the List View in File Explorer using PowerShell
You can also adjust the File Explorer's List view using PowerShell. Here's an example script that sets the List view to display the Name, Size, and Date modified columns:
$widows = @{Name="50"; Size="75"; DateModified="120"}
Get-ChildItem -Path "C:\YourFolder" | Format-Table -AutoSize -Property @{Name="Name"; Expression={$_.Name}; Width=$windows.Name}, @{Name="Size"; Expression={$_.Length}; Width=$windows.Size}, @{Name="DateModified"; Expression={$_.LastWriteTime}; Width=$windows.DateModified}
Upgrading to Windows 10 version 1909 may cause the File Explorer's List view to appear different. However, you can adjust the settings to revert to the classic view. Additionally, you can use PowerShell to adjust the List view programmatically.