File Extension File Extension Guide

What is an SCR File?

A complete guide to the SCR file, the Windows screensaver that is really a program in disguise, plus how to run, install and open one safely.

๐Ÿ–ฅ๏ธ Screensaver โš™๏ธ Runs Like an EXE ๐ŸŽฌ /s /c /p Switches ๐Ÿ–ผ๏ธ Holds Icons
.SCR

Windows Screensaver

Type:Screensaver
Developer:Microsoft
Really a:PE executable
Binary:Yes (EXE)

๐Ÿ“– What is an SCR File?

An SCR file is a Windows screensaver, the moving picture or animation that fills your screen when the PC sits idle. The twist is that a screensaver is not a special kind of media file at all.

It is a program. A .scr is an ordinary Windows executable that has been given the screensaver extension and taught to recognise a few switches Windows sends it. Rename a suitable .exe to .scr and Windows will happily treat it as a saver.

That single fact shapes everything else about the format, how you run it, how you install it and why a .scr from a stranger deserves the same caution you would give any unexpected program.

โšก Quick Facts

Full NameWindows Screensaver
Extension.scr
DeveloperMicrosoft
CategoryScreensaver, executable
Real formatPE executable, like an .exe
Switches/s run, /c configure, /p preview
LocationC:\Windows\System32
HoldsProgram code, an icon and images
Related FormatsEXE, DLL, ICO

๐ŸŽฌ The Three Modes

Windows does not just launch a screensaver and hope for the best. It tells the program which job to do by passing a switch on the command line, and a screensaver knows three of them:

SwitchModeWhat happens
/sRunThe saver plays full screen, the normal show
/cConfigureIts own settings dialog opens
/pPreviewIt draws inside the tiny preview pane
๐Ÿ’ก A double click sends /s: When you double click a .scr, Windows starts it in run mode, which is why the saver jumps straight to full screen instead of opening a window you can poke at.

๐Ÿ”ฌ Inside an SCR File

Open a .scr in a hex viewer and it gives itself away at once. It is built exactly like a program:

1

The Executable Signature

It starts with the MZ marker and the PE signature, the exact fingerprint of an .exe, so Windows runs it directly rather than loading it into another program.

2

The Program Itself

The compiled code that draws the animation or slideshow and watches for the key press or mouse move that ends it.

3

Resources

The icon, the settings dialog and any bundled images, tucked into the resource section every Windows binary carries.

๐Ÿ–ผ๏ธ The icon comes out clean: Because that resource section is standard, the screensaver icon is stored as a normal ICO resource and lifts out of the file whenever you want it.

๐Ÿ“ Common Screensavers

Windows still ships a small set of these, the ones you flip through in the settings list. Each is a .scr sitting in the system folder:

ScreensaverFile
BubblesBubbles.scr
MystifyMystify.scr
RibbonsRibbons.scr
3D TextssText3d.scr
PhotosPhotoScreensaver.scr
Blankscrnsave.scr

๐Ÿ“‚ Open, Test and Install

The right click menu on a .scr gives you every option you need. Reach for it rather than a double click, which jumps straight to a full screen show:

โœ… From the Right Click Menu

  • Test: plays the saver so you can watch it.
  • Configure: opens its own options dialog.
  • Install: opens Screen Saver settings with it chosen.
  • Preview: a double click runs it full screen.

๐Ÿ—‚๏ธ Make It Stick

Drop the file into the system folder and it joins the settings list:

C:\Windows\System32\MyScreensaver.scr

Then open Settings, Personalization, Lock screen, Screen saver and pick it there.

โš–๏ธ SCR vs EXE

This is the comparison that matters, because a screensaver is far closer to a program than to a picture. Side by side, they barely differ:

FeatureSCREXE
File formatPE executablePE executable
Runs directlyYesYes
Special switches/s, /c and /pNone expected
Started byIdle time or settingsThe user
Extension.scr.exe
โœ… Good to know: Rename a screensaver to .exe and it still runs. The extension is a label Windows uses to know when to launch the file on idle, not a different kind of file.

๐Ÿงพ The Other SCR

One point of confusion is worth clearing up. The .scr extension has a second, unrelated life outside screensavers.

โš ๏ธ AutoCAD uses .scr too: In AutoCAD and a few related design tools, a .scr is a plain text script, a list of commands run in order to automate drawing tasks. It is nothing like a screensaver, it is not a program, and you edit it in a text editor. If a .scr opens as readable text, you are looking at this kind, not the Windows saver.

๐Ÿ”’ Are SCR Files Safe?

A screensaver from a store or a name you recognise is fine. The danger is baked into what the format is. A .scr runs code just like any program, so a booby trapped one does its damage the moment it starts.

Attackers lean on this because the extension looks harmless. A file named holiday.scr or photo.scr in an email is a classic trick, a program wearing a screensaver label, hoping you double click before you think.

๐Ÿšจ Treat a surprise .scr like a surprise .exe: Never run one that arrived by email or chat. To peek inside without running it, open the file as an archive in 7-Zip or in Resource Hacker, and scan anything doubtful before it goes near a double click.

๐Ÿ–ผ๏ธ Extract the Icons

A screensaver carries its icon in the resource section every executable has, so getting it out is quick and never involves running the file:

๐Ÿ“ค Pull the Icon Out

  1. Open the .scr in the Univik ICO Converter.
  2. Browse the icons the screensaver holds.
  3. Export any of them as ICO or PNG.

๐Ÿ“š The Full Toolkit

Since a screensaver is just an executable, the same resource tools open it. Extracting icons from EXE and DLL files walks through the whole process, and a .scr fits it without any change.

โ“ Frequently Asked Questions

An SCR file is a Windows screensaver. Underneath the name it is a normal program, a PE executable that Windows renamed with the .scr extension and taught to answer a few screensaver switches. That is why it plays across your screen after a spell of inactivity.

A double click runs the screensaver, since Windows treats the file as the program it is. Right click instead and you get Test to run it, Configure to change its options and Install to make it the active saver. Only do this with a .scr you trust.

Right click the .scr and choose Install, which opens Screen Saver settings with that saver already picked. You can also drop the file into C:\Windows\System32 and it appears in the settings list, ready to select and preview.

They tell the screensaver which mode to enter. The /s switch runs it full screen, /c opens its settings dialog and /p draws it inside the small preview pane. Windows passes the right switch on its own, and a double click sends /s.

In format, yes. A screensaver is a Windows PE executable, the same binary an .exe uses, opening bytes and all. The only real difference is the .scr extension and the handful of screensaver switches it responds to, so it can run any code an .exe can.

A screensaver from a known vendor or the Microsoft Store is fine. The problem is that a .scr is a full program, so attackers rename malware as a screensaver and mail it out. Treat a surprise .scr, such as photo.scr in your inbox, exactly like an unexpected .exe.

The built in ones live in C:\Windows\System32, with copies possible in the Windows and SysWOW64 folders. Files like Bubbles.scr and Mystify.scr sit there, which is how they show up in the Screen Saver settings list.

Yes. A screensaver is a PE file, so it carries icons in the same resource section any program uses. Open the .scr in the Univik ICO Converter and save the icons out as ICO or PNG images.

๐Ÿ› ๏ธ Related Tools

ICO Converter

Open a .scr, browse its icons and export them as ICO or PNG.

Open SCR Files โ†’

What Is a CPL File?

Another runnable extension people forget is code, the Control Panel applet.

Read the Guide โ†’

๐Ÿ“ Summary: Key Points About SCR Files

  • SCR is a Windows screensaver
  • Really a PE executable renamed .scr
  • Answers the /s, /c and /p switches
  • A double click runs it full screen
  • Installed from the right click menu
  • Built in savers live in C:\Windows\System32
  • The extension is also an AutoCAD script
  • A surprise .scr is a malware risk
  • Treat an unknown one like an unknown EXE
  • Holds its icon as a standard ICO