In this article, we will discuss how to improve the performance of the Tiles View in File Explorer on a freshly installed Windows operating system. The Tiles View, also known as the Details and Icons views, can sometimes be slow compared to other views. This article will provide a detailed context on the topic, covering key concepts, subtitles, and paragraphs using HTML tags.
Improving Tiles View Performance in File Explorer
Introduction
After installing a fresh version of Windows, users may notice that the Tiles View in File Explorer is slower than expected. This issue can be frustrustating, especially when trying to navigate through folders and files. In this article, we will discuss various methods to improve the performance of the Tiles View.
Understanding the Issue
The Tiles View in File Explorer displays thumbnails and detailed information about files and folders. When the view is slow, it can be due to several reasons, such as:
- Large number of files and folders
- Corrupted system files
- Insufficient system resources
- Outdated or incorrect settings
Methods to Improve Tiles View Performance
1. Optimize Disk Space
One of the most common reasons for slow performance in the Tiles View is a lack of disk space. To optimize disk space, follow these steps:
- Right-click on the drive that contains the File Explorer and select Properties.
- Click on the Disk Cleanup button.
- Select the files to be deleted and click OK.
- Empty the Recycle Bin.
2. Disable Superfetch Service
Superfetch is a Windows service that improves the performance of applications by predicting which files an application will use and preloading them into memory. However, it can sometimes cause issues with the Tiles View. To disable Superfetch, follow these steps:
- Press Windows key + R to open the Run dialog box.
- Type
services.mscand press Enter. - Scroll down and find the Superfetch service.
- Right-click on it and select Properties.
- Change the Startup type to Disabled and click OK.
3. Adjust Visual Effects
Adjusting the visual effects in Windows can also help improve the performance of the Tiles View. To do this, follow these steps:
- Right-click on the desktop and select Personalize.
- Click on the Performance Options link at the bottom of the window.
- Click on the Adjust for best performance button.
- Click Apply and OK.
4. Use a Third-Party Application
There are several third-party applications available that can help improve the performance of the Tiles View. Some popular options include:
- TweakUI by Microsoft
- Ultimate Windows Tweaker
- Advanced SystemCare
Conclusion
In this article, we discussed various methods to improve the performance of the Tiles View in File Explorer on a freshly installed Windows operating system. By optimizing disk space, disabling the Superfetch service, adjusting visual effects, and using a third-party application, users can significantly improve the performance of the Tiles View.
References
- Microsoft. (n.d.). Tweak UI. Retrieved from https://www.microsoft.com/en-us/download/details.aspx?id=48133
- IObit. (n.d.). Advanced SystemCare. Retrieved from https://www.iobit.com/en/advancedsystemcare.php
- Winaero. (n.d.). Ultimate Windows Tweaker. Retrieved from https://www.winaero.com/user-guide/ultimate-windows-tweaker
- Microsoft. (n.d.). Disk Cleanup. Retrieved from https://support.microsoft.com/en-us/windows/free-up-disk-space-using-disk-cleanup-11b768f6-c845-430f-a56a-a4d2515f54d5
- Microsoft. (n.d.). Services. Retrieved from https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/services
- Microsoft. (n.d.). Performance Options. Retrieved from https://support.microsoft.com/en-us/windows/change-visual-effects-settings-for-better-performance-3a8c230a-512a-4f7c-b62a-366836731778
Code Block Example
<code>
// Example code in C# to improve Tiles View performance
using System;
using System.IO;
using System.Linq;
namespace TilesViewPerformanceImprovement
{
class Program
{
static void Main(string[] args)
{
// Optimize disk space
CleanDiskSpace();
// Disable Superfetch service
DisableSuperfetchService();
// Adjust visual effects
AdjustVisualEffects();
}
static void CleanDiskSpace()
{
// Code to clean disk space
}
static void DisableSuperfetchService()
{
// Code to disable Superfetch service
}
static void AdjustVisualEffects()
{
// Code to adjust visual effects
}
}
}
</code>