General Change Template of Drive, Folder, or Library in Windows 11 File Explorer


  • Staff
Folder_views_banner.png

This tutorial will show you how to manually change the template of a drive, folder, or library for your account in Windows 11.

Windows 11 includes the default General items, Documents, Pictures, Music, and Videos templates used to optimize the layout and view of every drive, folder, or library.

Windows 11 uses Automatic Folder Type Discovery to detect the contents of a folder and automatically optimize the folder for the proper template. If a folder contains a mixture of file types, Windows will use the General items template. If there is an overwhelming number of files with the same file type in a folder, Windows will automatically optimize the folder with the proper template to match the majority.

A template is just a default layout and view, you can customize the layout and view of a folder to how you like in File Explorer.


Contents



EXAMPLE: Default templates

General_Items.png
Documents.png

Pictures.png
Music.png

Videos.png





Option One

Change Template of a Drive or Folder


1 Open File Explorer (Win+E).

2 Perform one of the following actions: (see screenshots below)
  • Select a drive (except Windows "C:" drive) or folder, click/tap on See more (3 dots) button on the command bar, and click/tap on Properties.
  • Right click or press and hold on a drive (except Windows "C:" drive) or folder, and click/tap on Properties.
  • Right click or press and hold on an empty space on the background of an open drive (except Windows "C:" drive) or folder, and click/tap on Properties.
Folder_properties-1.png
Folder_properties-2.png
Folder_properties-3.png

3 Click/tap on the Customize tab in Properties. (see screenshots below step 5)

4 Select the General items, Documents, Pictures, Music, or Videos template you want to optimize this drive or folder for. (see screenshots below step 5)

5 Check or uncheck Also apply this template to all subfolders for what you want.

6 Click/tap on OK. (see screenshots below)

Customize_Properties-1.png
Customize_Properties-2.png





Option Two

Change Template of a Library


1 Open Libraries in File Explorer (Win+E).

2 Perform one of the following actions: (see screenshots below)
  • Right click or press and hold on a library (ex: "Saved Pictures"), and click/tap on Properties.
  • Select a library (ex: "Saved Pictures"), click/tap on See more (3 dots) button on the command bar, and click/tap on Properties.
Library_template-1.png
Library_template-2.png

3 Select the General items, Documents, Pictures, Music, or Videos template you want to optimize this drive or folder for. (see screenshot below step 4)

4 Click/tap on OK. (see screenshot below)

Library_template-3.png





Option Three

Specify Template for All Drives and Folders using BAT file


Specifying a template for all drives and folders will disable Automatic Folder Type Discovery.

Specifying a template for all drives and folders does not affect the Quick access, This PC, Libraries, and Network shell folders.


1 Do step 2 (undo), step 3 (General items), step 4 (Documents), step 5 (Pictures), step 6 (Music), or step 7 (Videos) below for which template you want to specify.

2 To Undo Specified Template for All Drives and Folders

This is the default setting to undo a specified template for all drives and folders.

This will reset the template and views of all folders back to default, and enable Automatic Folder Type Discovery.


A) Click/tap on the Download button below to download the BAT file below, and go to step 8 below.​

Undo_specified_template_for_all_folders_for_current_user.bat


(Contents of BAT file for reference)
Code:
@echo off

Reg Delete "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU" /F
Reg Delete "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags" /F

:: To kill and restart explorer
taskkill /f /im explorer.exe
start explorer.exe

3 Specify General items Template for All Drives and Folders

A) Click/tap on the Download button below to download the BAT file below, and go to step 8 below.​

Specify_all_folders_use_General_Items_template_for_current_user.bat


(Contents of BAT file for reference)
Code:
@echo off

:: Resets folder view settings, window size and position of all folders
Reg Delete "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU" /F
Reg Delete "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags" /F

:: To reset "Apply to Folders" views to default for all folder types
REG Delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Defaults" /F

:: Specify General Items template to all folders
REG ADD "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell" /V FolderType /T REG_SZ /D NotSpecified /F


:: To kill and restart explorer
taskkill /f /im explorer.exe
start explorer.exe

4 Specify Documents Template for All Drives and Folders

A) Click/tap on the Download button below to download the BAT file below, and go to step 8 below.​

Specify_all_folders_use_Documents_template_for_current_user.bat


(Contents of BAT file for reference)
Code:
@echo off

:: Resets folder view settings, window size and position of all folders
Reg Delete "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU" /F
Reg Delete "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags" /F

:: To reset "Apply to Folders" views to default for all folder types
REG Delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Defaults" /F

:: Specify Documents template to all folders
REG ADD "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell" /V FolderType /T REG_SZ /D Documents /F


:: To kill and restart explorer
taskkill /f /im explorer.exe
start explorer.exe

5 Specify Pictures Template for All Drives and Folders

A) Click/tap on the Download button below to download the BAT file below, and go to step 8 below.​

Specify_all_folders_use_Pictures_template_for_current_user.bat


(Contents of BAT file for reference)
Code:
@echo off

:: Resets folder view settings, window size and position of all folders
Reg Delete "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU" /F
Reg Delete "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags" /F

:: To reset "Apply to Folders" views to default for all folder types
REG Delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Defaults" /F

:: Specify Pictures template to all folders
REG ADD "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell" /V FolderType /T REG_SZ /D Pictures /F


:: To kill and restart explorer
taskkill /f /im explorer.exe
start explorer.exe

6 Specify Music Template for All Drives and Folders

A) Click/tap on the Download button below to download the BAT file below, and go to step 8 below.​

Specify_all_folders_use_Music_template_for_current_user.bat


(Contents of BAT file for reference)
Code:
@echo off

:: Resets folder view settings, window size and position of all folders
Reg Delete "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU" /F
Reg Delete "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags" /F

:: To reset "Apply to Folders" views to default for all folder types
REG Delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Defaults" /F

:: Specify Music template to all folders
REG ADD "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell" /V FolderType /T REG_SZ /D Music /F


:: To kill and restart explorer
taskkill /f /im explorer.exe
start explorer.exe

7 Specify Videos Template for All Drives and Folders

A) Click/tap on the Download button below to download the BAT file below, and go to step 8 below.​

Specify_all_folders_use_Videos_template_for_current_user.bat


(Contents of BAT file for reference)
Code:
@echo off

:: Resets folder view settings, window size and position of all folders
Reg Delete "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU" /F
Reg Delete "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags" /F

:: To reset "Apply to Folders" views to default for all folder types
REG Delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Defaults" /F

:: Specify Videos template to all folders
REG ADD "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell" /V FolderType /T REG_SZ /D Videos /F


:: To kill and restart explorer
taskkill /f /im explorer.exe
start explorer.exe

8 Save the BAT file to your desktop.

9 Unblock and run the BAT file.

10 You will now notice your screen flicker and a command prompt quickly open and close as the explorer process is restarted to apply the registry changes.

11 When finished, you can delete the downloaded BAT file if you like.


That's it,
Shawn Brink

 

Attachments

  • Undo_specified_template_for_all_folders_for_current_user.bat
    475 bytes · Views: 361
  • Folder_views.png
    Folder_views.png
    10.7 KB · Views: 174
  • Specify_all_folders_use_Documents_template_for_current_user.bat
    931 bytes · Views: 206
  • Specify_all_folders_use_General_Items_template_for_current_user.bat
    938 bytes · Views: 275
  • Specify_all_folders_use_Music_template_for_current_user.bat
    921 bytes · Views: 190
  • Specify_all_folders_use_Pictures_template_for_current_user.bat
    929 bytes · Views: 195
  • Specify_all_folders_use_Videos_template_for_current_user.bat
    923 bytes · Views: 169
Last edited:
This works great! I have just one question regarding this:

Let's suppose that I run the batch file to set the template type to "General Items" for all items. After doing so, I navigate to a folder in File Explorer and select View > Extra Large Icons. I notice then that the template type is still set to "General items", as I would expect, but due to my choice it still shows items as large icons, treating it much like it was optimized for pictures.

Note that even if I run the batch file again, the Extra Large Icons will remain the selected option. I understand that this is different than the template type applied to the folder, but it is closely related.

Is anyone aware of a registry or command-line method to just blanket set the view to something else, for example "List"?
 

My Computers

System One System Two

  • OS
    Win11 Pro 23H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Home Built
    CPU
    Intel i7-11700K
    Motherboard
    ASUS Prime Z590-A
    Memory
    128GB Crucial Ballistix 3200MHz DRAM
    Graphics Card(s)
    No GPU - CPU graphics only (for now)
    Sound Card
    Realtek (on motherboard)
    Monitor(s) Displays
    HP Envy 32
    Screen Resolution
    2560 x 1440
    Hard Drives
    1 x 1TB NVMe Gen 4 x 4 SSD
    1 x 2TB NVMe Gen 3 x 4 SSD
    2 x 512GB 2.5" SSDs
    2 x 8TB HD
    PSU
    Corsair HX850i
    Case
    Corsair iCue 5000X RGB
    Cooling
    Noctua NH-D15 chromax.black cooler + 10 case fans
    Keyboard
    CODE backlit mechanical keyboard
    Mouse
    Logitech MX Master 3
    Internet Speed
    1Gb Up / 1 Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    Additional options installed:
    WiFi 6E PCIe adapter
    ASUS ThunderboltEX 4 PCIe adapter
  • Operating System
    Win11 Pro 23H2
    Computer type
    Laptop
    Manufacturer/Model
    Lenovo ThinkBook 13x Gen 2
    CPU
    Intel i7-1255U
    Memory
    16 GB
    Graphics card(s)
    Intel Iris Xe Graphics
    Sound Card
    Realtek® ALC3306-CG codec
    Monitor(s) Displays
    13.3-inch IPS Display
    Screen Resolution
    WQXGA (2560 x 1600)
    Hard Drives
    2 TB 4 x 4 NVMe SSD
    PSU
    USB-C / Thunderbolt 4 Power / Charging
    Mouse
    Buttonless Glass Precision Touchpad
    Keyboard
    Backlit, spill resistant keyboard
    Internet Speed
    1Gb Up / 1Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    WiFi 6e / Bluetooth 5.1 / Facial Recognition / Fingerprint Sensor / ToF (Time of Flight) Human Presence Sensor
Thanks. Very much appreciated. I was aware of those methods, but unfortunately I was hoping for a command line method so that I could incorporate in my huge batch file that modifies about a bazillion settings within Windows from the defaults to my personal preferences :-)
 

My Computers

System One System Two

  • OS
    Win11 Pro 23H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Home Built
    CPU
    Intel i7-11700K
    Motherboard
    ASUS Prime Z590-A
    Memory
    128GB Crucial Ballistix 3200MHz DRAM
    Graphics Card(s)
    No GPU - CPU graphics only (for now)
    Sound Card
    Realtek (on motherboard)
    Monitor(s) Displays
    HP Envy 32
    Screen Resolution
    2560 x 1440
    Hard Drives
    1 x 1TB NVMe Gen 4 x 4 SSD
    1 x 2TB NVMe Gen 3 x 4 SSD
    2 x 512GB 2.5" SSDs
    2 x 8TB HD
    PSU
    Corsair HX850i
    Case
    Corsair iCue 5000X RGB
    Cooling
    Noctua NH-D15 chromax.black cooler + 10 case fans
    Keyboard
    CODE backlit mechanical keyboard
    Mouse
    Logitech MX Master 3
    Internet Speed
    1Gb Up / 1 Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    Additional options installed:
    WiFi 6E PCIe adapter
    ASUS ThunderboltEX 4 PCIe adapter
  • Operating System
    Win11 Pro 23H2
    Computer type
    Laptop
    Manufacturer/Model
    Lenovo ThinkBook 13x Gen 2
    CPU
    Intel i7-1255U
    Memory
    16 GB
    Graphics card(s)
    Intel Iris Xe Graphics
    Sound Card
    Realtek® ALC3306-CG codec
    Monitor(s) Displays
    13.3-inch IPS Display
    Screen Resolution
    WQXGA (2560 x 1600)
    Hard Drives
    2 TB 4 x 4 NVMe SSD
    PSU
    USB-C / Thunderbolt 4 Power / Charging
    Mouse
    Buttonless Glass Precision Touchpad
    Keyboard
    Backlit, spill resistant keyboard
    Internet Speed
    1Gb Up / 1Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    WiFi 6e / Bluetooth 5.1 / Facial Recognition / Fingerprint Sensor / ToF (Time of Flight) Human Presence Sensor
This works great! I have just one question regarding this:

Let's suppose that I run the batch file to set the template type to "General Items" for all items. After doing so, I navigate to a folder in File Explorer and select View > Extra Large Icons. I notice then that the template type is still set to "General items", as I would expect, but due to my choice it still shows items as large icons, treating it much like it was optimized for pictures.

Note that even if I run the batch file again, the Extra Large Icons will remain the selected option. I understand that this is different than the template type applied to the folder, but it is closely related.

Is anyone aware of a registry or command-line method to just blanket set the view to something else, for example "List"?
Thanks. Very much appreciated. I was aware of those methods, but unfortunately I was hoping for a command line method so that I could incorporate in my huge batch file that modifies about a bazillion settings within Windows from the defaults to my personal preferences :-)

Hello mate, :-)

I've updated the BAT files to include a reset before specifying the template to help with this. This way the template will get applied to all folders each time you run the BAT overriding any current folder view.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    HP Spectre x360 2in1 14-eu0098nr (2024)
    CPU
    Intel Core Ultra 7 155H 4.8 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Graphics card(s)
    Integrated Intel Arc
    Sound Card
    Poly Studio
    Monitor(s) Displays
    14" 2.8K OLED multitouch
    Screen Resolution
    2880 x 1800
    Hard Drives
    2 TB PCIe NVMe M.2 SSD
    Internet Speed
    Intel Wi-Fi 7 BE200 (2x2) and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender and Malwarebytes Premium
Absol-freaking-loutely cool. It works flawlessly. I just don't know how you do it!

BTW, I think that a quick word of thanks is in order. Over the past few days, I've created a really big batch file that modifies MANY Windows default settings to match my personal preferences. This was done almost exclusively by using your brilliant tutorials. I only have a very tiny list of things I've not figured out yet, but I can deal with having to manually tweak just a tiny handful of items after a clean install.

Thanks again for all the hard work. I can't even begin to express how much this is appreciated.
 

My Computers

System One System Two

  • OS
    Win11 Pro 23H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Home Built
    CPU
    Intel i7-11700K
    Motherboard
    ASUS Prime Z590-A
    Memory
    128GB Crucial Ballistix 3200MHz DRAM
    Graphics Card(s)
    No GPU - CPU graphics only (for now)
    Sound Card
    Realtek (on motherboard)
    Monitor(s) Displays
    HP Envy 32
    Screen Resolution
    2560 x 1440
    Hard Drives
    1 x 1TB NVMe Gen 4 x 4 SSD
    1 x 2TB NVMe Gen 3 x 4 SSD
    2 x 512GB 2.5" SSDs
    2 x 8TB HD
    PSU
    Corsair HX850i
    Case
    Corsair iCue 5000X RGB
    Cooling
    Noctua NH-D15 chromax.black cooler + 10 case fans
    Keyboard
    CODE backlit mechanical keyboard
    Mouse
    Logitech MX Master 3
    Internet Speed
    1Gb Up / 1 Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    Additional options installed:
    WiFi 6E PCIe adapter
    ASUS ThunderboltEX 4 PCIe adapter
  • Operating System
    Win11 Pro 23H2
    Computer type
    Laptop
    Manufacturer/Model
    Lenovo ThinkBook 13x Gen 2
    CPU
    Intel i7-1255U
    Memory
    16 GB
    Graphics card(s)
    Intel Iris Xe Graphics
    Sound Card
    Realtek® ALC3306-CG codec
    Monitor(s) Displays
    13.3-inch IPS Display
    Screen Resolution
    WQXGA (2560 x 1600)
    Hard Drives
    2 TB 4 x 4 NVMe SSD
    PSU
    USB-C / Thunderbolt 4 Power / Charging
    Mouse
    Buttonless Glass Precision Touchpad
    Keyboard
    Backlit, spill resistant keyboard
    Internet Speed
    1Gb Up / 1Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    WiFi 6e / Bluetooth 5.1 / Facial Recognition / Fingerprint Sensor / ToF (Time of Flight) Human Presence Sensor
Absol-freaking-loutely cool. It works flawlessly. I just don't know how you do it!

BTW, I think that a quick word of thanks is in order. Over the past few days, I've created a really big batch file that modifies MANY Windows default settings to match my personal preferences. This was done almost exclusively by using your brilliant tutorials. I only have a very tiny list of things I've not figured out yet, but I can deal with having to manually tweak just a tiny handful of items after a clean install.

Thanks again for all the hard work. I can't even begin to express how much this is appreciated.

You're always most welcome. :party:
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    HP Spectre x360 2in1 14-eu0098nr (2024)
    CPU
    Intel Core Ultra 7 155H 4.8 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Graphics card(s)
    Integrated Intel Arc
    Sound Card
    Poly Studio
    Monitor(s) Displays
    14" 2.8K OLED multitouch
    Screen Resolution
    2880 x 1800
    Hard Drives
    2 TB PCIe NVMe M.2 SSD
    Internet Speed
    Intel Wi-Fi 7 BE200 (2x2) and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender and Malwarebytes Premium
In order to disable 'Automatic Folder Type Discovery', I applied Specify_all_folders_use_General_Items_template_for_current_user.bat, which seems to work properly overall.
But sometimes, when I open a folder containing audio files, the view of the folder seems to switch back to Music. Any idea how to fix that ?
(Windows 11 22H2 22261.1555, StartAllBack 3.6.3)
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom
    CPU
    Intel Core i7-11700K @ 3.6GHz
    Motherboard
    ASUS ROG MAXIMUS XIII HERO
    Memory
    Corsair Vengeance LPX Black DDR4-3200
    Graphics Card(s)
    Built-in (Intel Graphics)
    Sound Card
    Built-in
    Monitor(s) Displays
    NEC P242W
    Hard Drives
    2x Samsung 980 Pro M.2 (1+2TB)
    PSU
    Corsair RM650x
    Case
    Fractal Design Core 2500
    Cooling
    Noctua NH-U12S
    Keyboard
    Logitech K800
    Mouse
    Logitech M100

Latest Support Threads

Back
Top Bottom