Windows 7 Tips and Tweaks
Revised 4 Sept 2020
Copyright © 2010–2020 by Stan Brown, Oak Road Systems
And in August 2015, I bought a Windows 8.1 laptop. Most of the tips here also work in Windows 8.1, though of course the start menu is completely different. (I know about the excellent and free Classic Shell, but I’m trying to give the native interface a fair shot.) I have no intention of accepting the so-called upgrade to Windows 10, because it’s a major privacy threat, and I’m on guard against unwanted Windows updates that add the “telemetry” spyware to Windows 7 and 8.
This page is a partial list of the tweaks I had to go out and find. If it was easy to do, or if it was in the books I consulted, then I didn’t bother to record it here. You can think of this page as my own personal list of “hard-to-find stuff I’ll want to do again if I have to reinstall Windows”.
Caution: Except as noted, I’ve tried everything on this page. If something here trashes your system please don’t blame me, but please do let me know so that I can add a warning.
In Windows XP I spent a lot of time creating shortcuts to various files or programs that I used frequently, because the “Recent” list wasn’t long enough and wasn’t arranged as I like. That’s not necessary in Windows 7.
Instead, I just click the Windows orb (the start button) (or press the Windows logo key on my keyboard), and type a few letters of the file or program name. Windows brings up a matching list as I type. Then I click on the entry I want: done! Or I use the arrow keys and press Enter.
I don’t even have to type the beginning of the file name. For example, I have a file called TV_Shows. If I type shows, that’s enough for Windows to bring up that file.
I haven’t quite sussed out the search algorithm yet. It does seem that the first time I open a given file, it doesn’t come up in the search. But after that it does.
Amazingly, Windows defaults to rebooting without warning after doing an automatic update. If that happens, you lose what you’ve been working on. You can curb that behavior.
Open regedit
and navigate to
If
is already there, set it to 1. If it’s not there, create it as a 32-bit DWORD and set it to 1.Now you’ll still get the popups asking your permission to update. You can “snooze” the popup if you want. Or you can follow this procedure to disable Windows Update entirely for the current session.
Some applications set themselves up to run only one instance. If I click on the taskbar for an open program, or even press the shortcut keys I assigned, all that happens is that the already-open instance comes to the front and is given focus.
But sometimes I really do want a second instance—two Vim windows to edit two unrelated files, for example. I can create a second instance by shift-clicking the taskbar icon for the program.
Assuming you have UAC set to the default, sometimes you’ll have to run a program with elevated privilege. Usually Windows itself will prompt you, but that doesn’t happen with something you run from the command prompt, like the convert command, which converts a partition from FAT to NTFS.
In such a case the Windows help system advises you to right-click on a shortcut to the command prompt and select Run as administrator, but this doesn’t work! The UAC dialog appeared (“Do you want to allow the following program to make changes to this computer?”) and I answered Yes, but convert still said I had insufficient privilege.
To get elevated privilege truly, you have to Ctrl+Shift-click the shortcut: press and hold the Ctrl and Shift keys, click the shortcut, and release those keys.
I’ve no idea why there are two routes to get elevated privilege, and they have different results, but that’s the case, at least in my Windows 7 Home Premium. A Usenet article [email protected] posted in alt.windows7.general on 2010-08-15 by Jeff Layman (but unfortunately not archived by Google) sheds some light, or adds to the mystery:
convert will run in the second one, but not the first. Bizarre!
If you want some commands to execute automatically every time
you open a command prompt, put them in a batch file. Then open
regedit
and navigate to
or
(Use HKLM to make the change for all users, or HKCU for just the current user.)
Create the value
as a string and set it to equal the path and name of the batch file that you created. It’s effective immediately: no need to log off or reboot.But say you do want to modify the All Programs part of the start menu. For instance, you may have some program that you always want to run as administrator, so you want to insert a shortcut with administrator privileges in the start menu. That shortcut should go in one of two folders:
Games are an exception. For games, right-click the Games item of the start menu and select open, then drag any shortcuts into the folder. Don’t have a Games item? Right-click the start button and select
» » .You can easily add shortcuts of your own to the
shell:sendto
, and the SendTo
folder will open.
By the way, you can see an enhanced
menu by holding down the Shift key while you right-click any item and then click .For the specific task of removing all drive letters from the
menu, run this command (all on one line) in a command window with administrative rights:reg add
HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
/v
NoDrivesInSendToMenu /t REG_DWORD /d 1
Source: a comment from Kayden in Customize the Send To Menu in Windows 10, 8, 7, or Vista.
It seems like every program you install adds one or more entries to the context menu (right-click menu) of files. Sometimes that’s nice, but an awful lot of them are just clutter.
There’s a nice set of two programs free programs from Nirsoft to deal with these: ShellMenuView and ShellExView. (Some context-menu items are handled internally as shell menu, others as shell extensions. Hence the two utilities.)
You could also do it yourself by editing the registry, as explained in How to Clean Up Your Messy Windows Context Menu from the How-To Geek. Usually I’m a fan of Registry hacks instead of separate utilities, but in this case I prefer the utilities.
Explorer’s regedit
and navigate to
then select the particular extension, expand the
key under it, and delete the pointers to programs that you don’t want to appear in the list.When you double-click a file and Windows doesn’t know what to do with it, you get a two-way choice, “Use the Web service to find the correct program” or “Select a program from a list of installed programs”. I don’t know about you, but I never want to go out on the Web to find a program to open a file on my computer. So I take the second choice, click OK, and then get the list of programs I wanted to see in the first place.
Thanks to
Skip the Annoying “Use the Web service to find the correct program” Dialog,
you can get rid of that
preliminary dialog and have Windows jump right to the list of
open-with possibilities when you double-click that file. Open
regedit
and navigate to
Create the value
as a 32-bit DWORD (unless it’s already there), and set its value to 1.The change is effective immediately: no need to reboot or even to log off and on again.
Before Windows XP, file and folder names sorted alphabetically in Explorer and in common dialogs. Starting with XP, and continuing through Windows 7, ABC10 now sorts after ABC2, rather than before. Some people like that, but I prefer a strict character-by-character sort.
A simple Registry edit controls this behavior. Open regedit and navigate to
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Currentversion\Policies\Explorer
If the value NoStrCmpLogical isn’t there, create it as a 32-bit DWORD. Set it to 1 to make file and folder names sort character by character, or 0 to make them sort the Windows 7 default way. The change is effective when you log off and log on; or if you close Explorer.exe in task Manager and then restart it.
Instead of using the GUI Registry Editor, you could open a command prompt as administrator and execute this command (all on one line):
reg add
HKLM\SOFTWARE\Microsoft\Windows\Currentversion\Policies\Explorer
/v NoStrCmpLogical /t REG_DWORD /d 1
Microsoft’s article The sort order for files and folders whose names contain numerals is different in Windows Vista, Windows XP, and Windows Server 2003 than it is in Windows 2000 says you can do this on a per-user basis by accessing the key within HKEY_CURRENT_USER rather than HKEY_LOCAL_MACHINE. (The article tries to direct you to the Windows 7 Solution Center, but searching for filename sort order brings you right back.) I haven’t tried to do it for just one user, yet.
You have a Details view of a folder in Explorer, but the columns are too narrow and information is cut off. Instead of painstakingly resizing each one, press Ctrl+<Numpad+>—that’s the Ctrl key and the + on the numeric keypad together—and all columns will be resized to fit the data that they contain.
This works in Windows Explorer and also in a wide range of applications. It even shrinks columns that are too wide, taking up more space than their data needs.
Don’t have a numeric keypad? See How to Resize All Window Columns with a Single Keystroke for a technique to remap some other key combination.
Need the full path of a file so that you can paste it into some application? Hold the Shift key, right-click, and select
. That copies the path and file name onto the clipboard, and you can then paste it wherever.In Windows 7, the shift-right-click menu often gives more choices than the plain right-click menu.
By default, Windows strips off .TXT, .EXE, .DOCX, and such from file names that Explorer displays to you. This can be quite confusing when you have files with the same name and different extensions. To fix this:
One Windows annoyance drives people up the wall: for no apparent reason, they can’t delete or modify a file.
The solution is to take ownership of the file. While you can do this manually through
» » » , it’s a giant pain for even one file, let alone multiple files.Fortunately, “Brink” at Sevenforums.com has created a script to add
to the right-click menu for files, folders, and drives. See the article Take Ownership Shortcut.Run the script once, and it modifies your right-click menus permanently. You can then take ownership of any of those objects with just a couple of clicks.
Actually, there are two variants, “take ownership” and “take ownership with pause”. I prefer “take ownership with pause” in step 3, because it sets the right-click menu item
to pop up a window showing success or failure. (The same article also has a script to remove those entries from the right-click menus.)My thanks to Paul for his post in alt.windows7.general pointing out Brink’s article.
You don’t actually have privilege to write to the root folder of the C: drive, so if a program tries to do it you will probably find that the file has been written to
(also known as
)or a subfolder. Click the start button and paste that location, including percent signs, into the search window. An Explorer window will open on that location.
I spent a lot of time trying to see how this feature was an improvement over my folder hierarchy. Microsoft’s own Organizing with Windows 7 Libraries didn’t help, and neither did the books. Finally, with some discussion in the newsgroup, I came to the conclusion that libraries don’t have much to offer me because I am the only computer user in the house and I’m already fairly well organized.
How to Disable “Libraries” Feature in Windows 7? gives you scripts to disable the Libraries feature, to leave the feature in place but simply remove its icon from Windows Explorer, and to restore Windows 7’s default behavior. I haven’t tried them yet, but the author is a Microsoft MVP and that usually means reliable information.
This is a very personal thing, but I tend to hit the Caps Lock key without realizing it, and then find myself writing about the dUKE OF yORK. Windows 7 lets you remap keys through the System Registry, just as Windows XP did. Since I tend to hit Caps Lock when I meant to hit Shift, I like to remap the Caps Lock key to act like another Shift key.
If you want to do it yourself, see the next section. But it’s easier to use the free program AutoHotkey. I also use it to correct the typos I commonly make—things like testbook for textbook—and to send long sequences of keystrokes to multiple windows. It’s best in class, in my opinion.
There’s a nice article on Lifehacker, The Best Time-Saving AutoHotkey Tricks You Should Be Using.
AutoHotkey (above) is easier, but sometimes it can’t help you—when you’re logging into Windows, for instance. So I chose to apply a Registry edit that changes Caps Lock to Shift from the moment Windows boots. The How-To Geek’s article How to Disable Caps Lock Key in Windows 7, 8, or Vista explains how, and supplies the Registry edit to do it. (Other options on that page include changing Caps Lock to Ctrl and disabling it entirely.)
The most comprehensive list I know is archived here. It’s worth scrolling down to “Windows logo key keyboard shortcuts” to see all the new combinations with the Windows logo key.
If that list is too intimidating, try Lifehacker’s Master List of New Windows 7 Shortcuts, which focuses just on the new ones.
There are a number of methods, assuming that the current font actually has the character you’re trying to enter. Here are two methods should work in almost any application:
Exception: if the number is less than 0256, you’ll get the character from the current code page, which may or may match the Unicode code point. (For U.S. users, with the default Windows code page 1252, characters 0032–0126 and 0160–0255 do match Unicode, but Microsoft has non-standard characters in the other positions. For example, Alt+0148 gives curly quotes even though there’s no Unicode character 0148.)
You may need to make a Registry edit to activate this method. Under
, set the value EnableHexNumpad to 1. (If it doesn’t exist, create it as a REG_SZ.). This edit is effective after you log off and on; there’s no need to reboot.Remember, use decimal values with leading zeroes to make four digits, or hex values with leading +. For more details on these methods, and for other methods, see How to Enter Unicode Characters in Microsoft Windows at Fileformat.info.
Don’t assume you necessarily have to enter Unicode numbers. There are other possibilities.
Tick the box for Advanced View, and set
to .The
box finds a character by its description. With set to , you can survey groups of related characters easily. On the other hand, with set to , you can enter a Unicode character’s four-digit hex code, if you know it.However you find your character, double-click it and it appears in the
window. Repeat for more characters if you want, then click . Paste the characters into your document, usually with Ctrl+V<.You select character groups by using the ▼ next to
in the middle of the page. Click a character to copy, Alt+click for multple.My Dell laptop unaccountably is missing the Pause/Break key as well as Scroll Lock. Some other laptop keyboards are missing some keys like PrtSc or PrintScreen, and some third-party keyboards don’t have the Windows key. You can bring up an on-screen keyboard that has all the keys: click the start button, type OSK and press Enter. Be sure to use the
menu to set up your preferences.Thanks to Shenan Stanley, who published this tip in a Windows XP newsgroup; it still works in Windows 7.
I haven’t tried this yet, but I was given a recommendation of Save and Restore Desktop Icon Layout in Windows Vista. Though it says “Vista”, it works also in Windows 7, I’m told.
Here’s a very cool trick. If you have a wheel on your mouse, click on the desktop and then press and hold the Ctrl key while turning the mouse wheel to shrink or enlarge your icons.
That’s method 3 in Change Desktop Icon Size in Windows 7. If you don’t have a mouse wheel, you can still use method 1 or 2.
Even if you don’t knowingly browse sleazy sites, you can still get ads popping up and have unwanted cookies silently stored on your computer. Even worse, merely visiting some sites can install malware on your computer. I clicked one link carelessly last week, and this week’s malware scan showed cookies from several shady sites.
Of course you have antivirus and antispyware software installed, but an additional line of defense is simply to block your computer from those sites. The easy mechanism for this is the HOSTS file, stored by default in
. The file that comes with Windows is just a stub, but lots of folks will give you a HOSTS file that blocks known offending sites.I chose Blocking Unwanted Parasites with a Hosts File at the MVPs site, which happened to be first in the Google results. It has excellent step-by-step instructions, with pictures, that show you exactly how to install it in Windows 7, Vista, or XP.
By the way, it doesn’t matter which browser you use. The HOSTS file works at the level of Windows that all Internet access depends on.
Every laptop has its own special key combination to enable or disable the wireless adapter. Is there any way to do it from within Windows? The answer is yes, thanks to some help I got in the alt.windows7.general newsgroup.
First, execute this command:
netsh interface show interface
to find the name of your wireless interface. Mine is “Wireless Network Connection”, but yours might be different.
Then, set up a pair of batch files. One contains this line:
netsh interface set interface "Wireless Network Connection" disabled
and the other contains this line:
netsh interface set interface "Wireless Network Connection" enabled
(Again, use your adapter’s name in Windows, which won’t necessarily be “Wireless Network Connection”.)
Finally, set up shortcuts to the two batch files, and set properties of each shortcut to run as administrator. If you wish, assign key shortcut keys in
as well.Now you can turn wireless on or off by double-clicking a shortcut or pressing your chosen key combination.
See also: An alternative, using wmic, is discussed in this thread.
The How-To Geek suggests that you can make the start button search only applications, not documents. If you don’t see that searches are slow, I wouldn’t mess with your present settings. But if searches are slow, you can follow the procedure in Make Windows 7 Start Menu Search Find Your Applications Faster.
I personally like the convenience of hitting the windows key (or clicking the start button) and typing the first few characters of a document’s file name, so I would not make the change above. But the same article has a second section, “Increase Search Speed by Tweaking Search Locations”, that explains how to limit the locations that are indexed, and that may be worth doing.
It obviously takes longer to index the contents of files than just their names. If you use good file naming conventions, you can restrict your search to the names of files and make your searches faster. To do that, click the start button, type indexing and select
» » . Set the radio button at the bottom for and click , then .You get up to get a cup of coffee, and you get distracted by some urgent task. No problem, you think, my computer will just go to sleep. But two hours later, when you return, it’s wide awake and its battery is nearly drained. Or, you click
» and the computer sleeps but immediately wakes up. Either way, a frustrating and mysterious situation.Conventional advice is to check a long list of possible causes, but wouldn’t it be easier if you could just find out directly what’s waking up your computer? Well, thanks to this article, you can: How To Prevent Your Computer From Waking Up Accidentally. It took me about two minutes, following this procedure, to find and fix the problem, and now my computer goes to sleep and doesn’t wake up until I wake it up.
This happened to me on returning from hibernation, but others have reported it in other contexts, such as while watching a movie.
This can be caused by “unresolved problems” in Action Center. A Windows program called TrustedInstaller.exe goes of looking for solutions. To see if this is your problem, run Task Manager (Ctrl+Shift+Esc), then on the Performance tab click . On the Disk tab, look at the upper window, look for TrustedInstaller.exe. If it’s there and using a lot of disk accesses, bingo!
To fix this, open Action Center and wait long enough for Windows to find (or more likely, fail to find) solutions to your unreported problems. On my computer, this took several minutes. I’d guess you could also just clear the history of unreported problems, but since I’ve got no remaining history I can’t test this.
To prevent the problem from recurring, in Action Center click
» . In the radio buttons, select “Each time a problem occurs, ask me before checking”, or “Never check for solutions”.This topic got much too long for this collection of short tips, so please look for it here: Curb Unneeded Services in Windows 7.
For fans of keyboard over mouse, or people who just want to know what’s available, here’s a list of commands to launch Control Panel applets and other configuration screens directly, without a lot of mousing and clicking through menus.
This was inspired by an article “Tip: my msc and cpl cheat sheet” by “T’ in the newsgroup alt.windows7.general on 9 Mar 2020. I added some notes about Windows 7 Home Premium, and with more information from Lifewire’s Command Line Commands for Control Panel Applets plus my own experimentation.
All of these can be copy/pasted into a Run window (
» or Win+R) or a command prompt. In cases where multiple commands do the same thing, I have generally listed only the shortest. If you find you use one of the long commands frequently, you may want to create a shortcut (right-click on desktop and create » ).All tools in Administrative Tools folder | control admintools |
Authorization Manager | azman.msc |
AutoPlay | control /name Microsoft.AutoPlay |
Backup and Restore | control /name Microsoft.BackupAndRestore |
Biometric Devices (not in Win7 Home Premium) | control /name Microsoft.BiometricDevices |
BitLocker (not in Win7 Home Premium) | control /name Microsoft.BitLockerDriveEncryption |
Bluetooth Properties (not on all Win7 PCs) | bthprops.cpl |
Certificates Manager | certmgr.msc |
Color Management | control /name Microsoft.ColorManagement |
Component Services | comexp.msc |
Computer Management | compmgmt.msc |
Computer Recovery (System Restore) | control /name Microsoft.Recovery |
Computer’s System Properties | SystemPropertiesRemote |
Control Panel main window | control |
Credential Manager | control /name Microsoft.CredentialManager |
Date and Time | timedate.cpl |
Defaults for email, web, media player, etc. | ComputerDefaults |
Device Manager | devmgmt.msc (or hdwwiz.cpl) |
Devices and Printers | control printers |
Disk Cleanup | cleanmgr |
Disk Management (create, modify, delete partitions) | diskmgmt.msc |
Ease of Access Center (accessibility) | control access.cpl |
Event Viewer | eventvwr |
Folder Options | control folders |
Fonts | control fonts |
Game Controllers (joystick etc.) | joy.cpl |
Getting Started | control /name Microsoft.GettingStarted |
Group Policy Editor (not in Win7 Home Premium) | gpedit.msc |
HomeGroup Settings | control /name Microsoft.HomeGroup |
Indexing Options | control /name Microsoft.IndexingOptions |
Infrared Properties (obsolete) | irprops.cpl |
Install a program from the (local) network | control /name Microsoft.GetPrograms |
Internet Properties | inetcpl.cpl |
iSCSI Initiator | control /name Microsoft.iSCSIInitiator |
Keyboard Properties | control keyboard |
Local Security Policy (not in Win7 Home Premium) | secpol.msc |
Local Users and Groups Manager (disabled in Win7 Home Premium) | lusrmgr.msc |
Location and Other Sensors | control /name Microsoft.LocationAndOtherSensors |
Location Information | telephon.cpl |
Microsoft CardSpace (not on all Win7 PCs) | infocardcpl.cpl |
Mouse Properties | main.cpl |
NAP Client Configuration | napclcfg.msc |
Network and Sharing Center | control /name Microsoft.NetworkAndSharingCenter |
Network Connections | ncpa.cpl |
Network Setup wizard | control netsetup.cpl |
Notification Area Icons (Select which icons and notifications appear on the taskbar) | control /name Microsoft.NotificationAreaIcons |
Pen and Touch | TabletPC.cpl |
People Near Me | collab.cpl |
Performance Monitor (different from Performance tab in task manager) | perfmon |
Personalization (Change the visuals and sounds on your computer) | control desktop |
Power Options | powercfg.cpl |
Print Manager | printmanagement.msc (not in Win7 Home Premium; use “control printers”, then right-click a printer) |
Programs and Features | appwiz.cpl |
Rate and improve your computer’s performance | control /name Microsoft.PerformanceInformationAndTools |
Region and Language | intl.cpl |
Resultant Set of Policy (not in Win7 Home Premium) | rsop.msc |
Scanners and Cameras | control /name Microsoft.ScannersAndCameras |
Screen Resolution | desk.cpl |
Security Action Center | wscui.cpl |
Services Manager | services.msc |
Shared Folders | fsmgmt.msc |
Sound | mmsys.cpl |
Speech Properties—Text to Speech | control /name Microsoft.TextToSpeech |
Speech Recognition | control /name Microsoft.SpeechRecognition |
Sync Center (not in Win7 Home Premium) | control /name Microsoft.SyncCenter |
System Properties | sysdm.cpl |
Task Manager (or Ctrl+Shift+Esc) | taskmgr |
Task Scheduler | taskschd.msc |
Taskbar and Start Menu Properties | control /name Microsoft.TaskbarAndStartMenu |
Troubleshoot computer problems | control /name Microsoft.Troubleshooting |
Trusted Platform Module Management (if available) | tpm.msc |
User Accounts | control userpasswords |
Windows Firewall | Firewall.cpl |
Windows Firewall with Advanced Security | WF.msc |
Windows Management Instrumentation (WMI) console | WmiMgmt.msc |
There are lots and lots of configuration dialogs in Windows 7. They’re not all in Control Panel, and just finding the one you want isn’t trivial. Sometimes it would be nice to have a sort of super control panel where all configuration dialogs are collected. Well, you can create one yourself, and pretty easily too.
Now when you double-click that folder you have skillions of configuration dialogs all in one place. (For my Windows 7 Home Premium, “skillions” equals 270. Your number may be different.)
The list may be intimidating. Try
» and then » . (If you don’t have the - - menu at the top of the window, press the Alt key to make it visible.)I found the key piece of information, the CLSID, in Ina Fried’s article Understanding Windows 7’s “GodMode”.
The How-To Geek explains why this works, and gives some other “magic” CLSIDs, in Enable the Secret “How-To Geek” Mode in Windows 7.
Of course you want to keep some of the system fonts. But, for English-language users, system fonts like Che Dotum and Batang are just a waste of space on your disk, and they clutter up font-selection dialogs. (The Windows feature for hiding fonts doesn’t work in some third-party programs.) But when you try to delete these unwanted fonts, after leading you through the dialogs Windows says that these are system fonts that can’t be deleted.
ChrisH posted a solution in Removing Foreign Language Fonts. You’ll want to read the details there, but the high-level overview is: take ownership of the font files, then boot to Safe Mode with Command Prompt, and delete the files.
A front end to Windows 7 configuration is the free Ultimate Windows Tweaker v 2.2, a Tweak UI for Windows 7 & Vista from The Windows Club (Microsoft MVPs). This application is ready to run; there’s nothing to install.
One caution: there’s a
button but no button. In this application, means cancel; you have to click to give effect to your changes.Unwanted updates to Windows 10 have probably not been an issue since the free-upgrade period expired at the end of July 2016. But there’s no knowing whether Microsoft will start up that nonsense again. Just in case, here’s a link to the GWX Control Panel stand-alone executable. If you prefer, an installer for Windows is available.
If you have to replace your hard drive, unless you have a current backup you’ll have a tough time figuring out which device drivers you need. The time to make that list is now, while your system is healthy. The How-To Geek drew my attention to two methods:
I’m a fan of Usenet newsgroups, finding them a lot more convenient to access with one client than a whole bunch of single-issue forums, each with a different login and a different interface.
The newsgroup alt.windows7.general is a great place to ask questions at all levels, if your own research can’t find an answer.
Unfortunately there aren’t searchable archives. For some unknown reason, Google has chosen not to archive this one newsgroup.
First and foremost, there’s Google. Sometimes a search drowned me in irrelevant results (as when I tried to find what a folder called “Desktop Icons” was doing on my desktop), but usually I found what I needed relatively quickly.
Here are some useful Web sites I discovered in my searches, and that I’ve returned to:
In theory, you can get help on commands by typing commandname /?, but in fact the help you get that way is rudimentary at best. Here are resources for the command line:
Updates and new info: https://oakroadsystems.com/tech/