Can't change the screen resolution of Windows 8. Change the screen resolution in all versions of Windows. Removing the video driver in Windows Safe Mode

I welcome all visitors to my blog, and today, as usual, we will solve one of the most pressing and popular questions, how to change the screen resolution in Windows 7, XP and 8? In my article, I will consider this procedure using the example of several operating rooms. Windows systems, so absolutely each of you, after reading, will be able to independently change the resolution.

Before starting, I want to say right away that there is nothing to be afraid of. If you select the wrong resolution, the screen may go black and nothing will be visible. You can press the "Esc" button to cancel the resolution you just selected.

Changing the screen resolution in Windows XP

Now let's start, perhaps, with Windows XP. I will tell you two ways to change the screen resolution for this operating system, read this section of the article to the end and choose which method is more acceptable for you. By the way, in all OS there are at least 2 ways to do this procedure.

The first option - click right click mouse on the desktop and select "Properties".

Go to the "Options" tab in the window that you just opened. Then you will see a slider anchored to the horizontal axis.

It can be moved with the mouse left and right, respectively, the further you drag it (to the right), the higher the screen resolution will be and vice versa - to the left. After you select the most successful resolution, click the "OK" button.

The screen will darken for a few seconds, after which the monitor will display an updated picture in front of you. Another message will also appear in which we can confirm our actions or refuse them, in case of incorrect display of the desktop.

Note: If the screen goes dark for more than 5 seconds and remains black, just press ESC to close the message shown in the screenshot above.

The second way is to change the resolution through the "Control Panel". To do this, go to the "Start" menu, "Control Panel". We click on the item called "Screen" and a window opens in front of us, in which we select the "Parameters" tab. Next comes a similar situation with the slider described above. I myself do not use this method, because I believe that it requires more clicks than the first one.

Change resolution in Windows 7

Now let's talk about how to change the screen resolution in Windows 7. This is done a little differently and much easier and faster. It is enough to right-click on the desktop and in the pop-up window immediately select the item "Screen resolution".

There are no sliders like in Windows XP here. Opposite the inscription "Resolution" you can see a drop-down list in which the required resolution is selected. After choosing the resolution, press the "OK" button. The monitor screen darkens for a couple of seconds and, when turned on again, starts displaying the selected resolution. In the pop-up window, you can agree with him or cancel the actions and try another, more suitable one.

Alternatively, you can use the "Control Panel", as it was in Windows XP. To do this, from the "Start" menu, go to the "Control Panel". In the upper right corner of the screen, next to the "View" label, set the "Categories" parameter, if there is any other one there. Then, in the "Design and Personalization" section, we see the sub-items, of which we are interested in the last one, on which we click. A window opens, with which we have already worked a little earlier.

Change resolution in Windows 8

So we got to the version of Windows 8. Despite the similarity to Windows 7, changing the resolution in Windows 8 is done differently, now I will explain how to change the screen resolution in Windows 8.

The first way. Press "Win" + "X" on the keyboard, then select "Control Panel" in the menu that appears.

In the category "Design and personalization" select the item: "Setting the screen resolution". In the "Resolution" section, in the drop-down list, click on the desired parameter and save the changes. Then you can see how this resolution will look on your monitor. In the pop-up window, either agree ("Apply" - "Save changes"), or refuse and try another permission.

You can go the second way, faster and easier. To do this, you must be in desktop mode. Right-click in an empty space, in the drop-down menu, click on "Screen Resolution". Further actions will be absolutely identical to those described just above.

If you are wondering how to change the screen resolution for your operating system, then I recommend that you carefully read the section of the article that relates to your OS. This must be done so that you do not worry about any actions on the part of the computer.

Question: The screen resolution does not change on Windows 8.1


I updated the video card drivers and during the update the screen resolution changed, the resolution became 1024x768 and cannot be changed.

Answer: Roll back the driver. Newer is not always better

Question: Screen resolution is not normal


Subject.
Video card: ATI Mobility Radeon HD 4500 Series
The drivers are installed.
There were 7 wines, updated to 10. The resolution "floated", instead of 1368x768 I now have 1024x768, I thought it was in the drivers, updated, installed, everything is as it should.
The problem was not resolved.

Added after 30 minutes
The video card is determined in the device manager, but when you look at the adapter in the panel where the resolution changes, the Windows adapter shows

Answer: The driver for the video card should be installed from the off site of the laptop manufacturer. Provided that there is a driver for win10. On AMD video cards in laptops, drivers from the off site of AMD are often not suitable.

Question: Change INI file depending on screen resolution


Hello!

GIVEN: The start.exe program displays a background image and two columns of text. The program settings are saved in the start.ini file. In the settings, among other things, the parameters of the path to the file with the picture, the location and size of the columns with the text are specified. Files in one directory. Everything works as it should. But after changing the screen resolution of the monitor (or if, for example, you run the program on another computer with a different resolution), the text is displaced, including beyond the screen. In order for the text to be displayed correctly, you have to manually correct start.ini, and then restart the program. The resolutions can be very different from the popular ones, for example: 1024x768,1280x1024,1920 × 1080.

TASK: automate screen resolution checking and, if necessary, make changes to parameters in start.ini before starting start.exe, start start.exe. The text that appears on the screen should look correct.

I suppose that the text looks correct, the batch file should contain the parameters tested at different resolutions, which are selected depending on the current resolution. I take on the task of testing). Help me please. Thanks.)

The part of start.ini that has to be changed manually on a regular basis (after the "=" sign) is given below.


; The path to the background image. It is desirable to specify the full path.
BackgroundPicture =% exedir% \ picture1024x768.jpg
; Permissible user inactivity time, sec. (accuracy 5 sec)
InactivityTime = 3600

; First column parameters x + 150
LeftPos = 200
TopPos = 250
Width = 525
Height = 569

; Second column parameters x + 150
LeftPos = 850
TopPos = 250
Width = 535
Height = 575

Answer:

Message from alpap

Windows Batch file
1 2 3 4 5 6 7 8 9 @ echo off rem Here put all the options .ini with the appropriate name, for example 1366x768.ini (x is a Latin letter), any path set "rein = C: \ papka" for / f "skip = 3 tokens = 1,2 delims =" %% i in ( "powershell" Get-WmiObject -Class Win32_DesktopMonitor | select-object -property screenwidth, screenheight "") do (for %% a in (" % rein% \ *. ini ") do ( rem path C: \ continue to the folder where.ini is located if %% ~ ix %% ~ j == %% ~ na copy / y " %% ~ a ""C:")) pause

Either wmic is out of fashion, or the party is a success ...

Message from taurusspb

I need the batch file to determine the current screen resolution of the monitor ...

As an option:

Windows Batch file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 @ echo off setlocal set "js = javascript: close (new ActiveXObject (" set "js = % js% "Scripting.FileSystemObject") " set "js = % js% .GetStandardStream (1) .Write (" set "js = % js% screen.width + "x" + screen.height)); " for / f %% i in ("mshta" % js% "^ | findstr x") do (if " %% i " equ "" (echo: An error has been occured. goto: eof) echo: Screen resolution: %% i if not exist " % ~ dp0PAPKA \ %% i.exe "(echo: Unsupported screen resolution. goto: eof) " % ~ dp0 \ PAPKA \ %% i.exe ") endlocal exit / b

Question: the screen resolution is not set


The problem is this: on an IBM thinkpad 600e laptop, the screen resolution is not set to less than 1024x768. It costs windows xp sp2. There is a choice to put only the resolution of 1024x768 and 800x600. But when 800x600 is applied, black borders appear around the screen image. Window windows boot and at a higher resolution it is always displayed small. Before reinstall windows permission was applied. How to do it now? Help me please!

Answer: tramal2016 Does Windows somehow define your TV as a monitor? SVGA Monitor or Plug & Play Monitor? How exactly? Click on the desktop on a free field with the right mouse button, then - Screen resolution - Additional parameters - Adapter tab - Button List of all modes. In the same place, in the Monitor tab, specify the frequency of 60 Hz and remove the bird - Hide modes that the monitor may not support.
What modes are available after that?
Sound the LG TV model.
Check the connectors on the VGA cable, maybe which leg did you bent by accident?

Question: When turned on, the screen resolution changes


I have already read similar topics on this forum, but it helped (
In general, when you turn on the laptop, the resolution changes to the minimum, tell me how to fix it?
I checked for viruses, the drivers are new.

Answer:

Message from Beetlejuice541

which skype to install

I would write to them in support ...

Added after 54 seconds

Message from Beetlejuice541

drivers and Windows are not at all in business

Have you tried the office. to put the driver? can we still be in business?
PS: my sister has the same laptop (not quite, without G), all the rules ... Skype does not change anything. truth not XP, but 7.

Question: Why in Windows 7 the screen resolution of the laptop is the same as mobile phone?


Greetings friends!
The problem is that friends brought their laptop, they interrupted Windows, but only somehow unsuccessfully. The bottom line is that when Windows starts up, a welcome message appears, everything is fine and then bam, the conductor resets the screen resolution to some fantastically minimal settings. The taskbar stretches to the floor of the screen at the bottom, where only a few icons next to the clock fit, and in the second part of the screen, above the taskbar, only a few icons from the desktop clamber. And all this on a monitor with a resolution of 1366x768. I cannot manually change the screen parameters because any open window I can only see one quarter and a lot of the switches are just hidden off the screen. But as you enter safe mode, there are all the rules. I checked dr.web for viruses - everything is clean. Firewood is all fresh, updated from a safe one, but it's not about them. Anyone have any ideas on how to fix this?

Answer: Fuh, gee. In short, I don’t know how it happened, but the problem was in the screen settings, namely in the "Resize all elements" parameters - there was a custom increase of as much as 500%! And this is all at a resolution of 800 by 600. I started from safe mode, went to Control Panel> Screen and returned it back to 100%, after that everything fell into place. Now I know how to play a trick on your friend ahahaha)

Question: How to understand the pattern of screen resolution. (16: 9)?


How to understand the pattern of screen resolution. (16: 9)
For example 1280x720 and 1920x1080, how can I get other resolutions?
The same 1600x900, for example, I want to somewhere use a resolution less than 1280x720 and that it was 16: 9, how do I know what resolution it should be?

Answer: The lowest resolution used by a computer is 640x360.
To increase the resolution, add the lowest one (640x360).
P.S. The video card costs NVIDIA GeForce 210

Answer: ...

Question: Changing the screen resolution


Fujitsu nh532 laptop
When you close the lid, the screen resolution changes to the minimum, presumably 800x600
Returns to normal 1920 x 1080 when opened
But labels and window sizes get confused.
Lid closing settings - do nothing

Answer: CheshireesCat, but as you suppose, if the cover is closed, presumably look at the power settings of the video card CheshireesCat,
You can post screenshots of power settings (covers, power buttons ...)
If you pin the icons on the desktop, what happens.
You can also lay out the icons BEFORE and AFTER closing the lid

Screen Resolutions are a configurable virtual setting on each personal computer, which determines the output quality of the transmitted image. Usually, this parameter automatically is matched to the size and format of the monitor, taking into account its characteristics. But, each user can change it to suit their own characteristics and needs.

For what influences monitor format:

  • To playable content, as well as the ability to play it.
  • The quality and clarity of the image.
  • The number of objects to be displayed.
  • The size of the black borders at the edge of the output image.

In addition, depending on the type of the monitor itself, amount of points per inch. So, on CRT displays, a low picture quality is maintained, and on screens of a new type, made using LCD technology, a higher one.

For example, on old computer and laptops recommended set the monitor resolution to no more than 1280x800 dots per inch, since this is the optimal indicator for the displayed image on unproductive hardware. As you probably already understood, the quality of the picture depends on speed PC. That is why this parameter can be changed by every user.

How to change resolution in Windows XP, 7, 8

Change of quality to Windows XP:

Change of quality to Windows 7 and 8 proceeds according to a similar scheme, only the visual design of the context menu items differs:

Change resolution in Windows 10

V Windows 10 the operating system usage logic has been almost completely redesigned. V new version The OS can change the screen format in two ways.

We use the settings

Through the control panel

What to do if the resolution does not change

If, the screen resolution does not change in a standard way(through the desktop), then the user should try to enter the item parameter changes through the control panel. Also, the impossibility of performing the operation may be due to the fact that the monitor do not support selected format.

How to change the screen resolution

12/15/2013 & nbsp windows | for beginners

This may also be of interest to you:

The question about changing the resolution in Windows 7 or 8, as well as doing it in the game, although it belongs to the category "for the very beginners", but is asked quite often. In this instruction, we will touch not only directly on the steps required to change the screen resolution, but also some other things.

In particular, I will tell you why the required resolution may not be in the list of available ones, for example, with a Full HD 1920 x 1080 screen, it is impossible to set the resolution higher ...

0 0

As you know, the screen resolution has an important role in the installation and use of the Windows 8 operating system and the updated version 8.1. If the resolution does not match minimum requirements(1024x768), then many applications that come with this operating system simply will not work. This can happen when trying Windows installations 8 for netbooks, where some models use a non-standard screen resolution - 1024x600. Today we will look at a method to work around these restrictions using the example of the HP Mini 110 netbook.

Why exactly are we talking about netbooks? The thing is, and it is not a secret, the performance of the Windows 8 operating system is much higher than its predecessors, for example, Windows XP, Windows 7 about the OS Windows Vista even out of the question. On top of that, when testing new system on outdated hardware, it showed excellent results in which it bypassed Windows XP installed on the same hardware, by about 30%. Netbooks have ...

0 0

Hello, friends! Today we will figure out how to change the screen resolution in Windows.

This is done simply. On an empty place of the desktop, right-click and select "Screen Resolution"

The "Screen settings" window opens. In the "Resolution" field, open the drop-down list and select the recommended one (in my laptop it is 1366 x 768)

The recommended resolution of the monitor or laptop screen can be found in the specification for the device (Usually the recommended resolution is written on the product box. If there is no box, you can look at the equipment manufacturer's website by searching by model. The laptop or monitor model is usually written on the device case).

Resolution is the number of dots displayed horizontally and vertically on your screen. How much you will see directly depends on the resolution. useful information on the screen and what size this information will be (about the size, see the second paragraph of this article - how to enlarge the image).

0 0

Changing the screen resolution plays an important role in Windows 8. A higher resolution allows you to see more tiles on the Start screen, but a lower resolution allows you to see text better. Connection external monitor or TV means you'll want to adjust the resolution as well as which screen has which desktop.

You can get to the window screen resolution from the desktop.

If on the Start screen, click the Windows Key. Otherwise, skip this step Press Windows Key + D to clear your desktop Right click on an empty space and click Change Resolution

Right click anywhere free space desktop and select Change Resolution.

You can also get there from the control panel. Once in Control Panel under Appearance and Personlization, select Adjust Screen Resolution.

Adjust the Screen Resolution section is what you ...

0 0

The procedure for changing the screen resolution is familiar to most Windows users, but some of the nuances of this operation remain unknown even to experienced users. Therefore, let's once again answer in detail the question of how to change the screen resolution - even if you know how to do it, you will find something new for yourself.

Windows 7

Windows users 7 you must have already studied the system up and down, but sometimes they may also have difficulties with performing simple actions. So, to change the resolution:

Right-click on the desktop and go to the "Screen Resolution" section. Set the required value in the "Resolution" line. Save the changes by clicking the "OK" button.

It's simple, but some users have problems with displaying text and icons after following this procedure. To avoid such moments, follow the guidelines below:

Set the resolution that is marked as recommended. Clarify the specific meaning ...

0 0

Monitor types

The screen resolution of a monitor or laptop determines the legibility of text or images shown on the display. At high resolutions, for example 1900x1200 pixels, all objects will look sharper. Also, objects become smaller, and accordingly more of them will fit on the screen. And at a low resolution, for example, 1024x768 pixels, the size of images and text increases, only their clarity becomes worse.

The available resolution for use depends on the monitor itself. For example, older CRT monitors are usually 17 inches and only support 800x600 or 1024x768 pixels.

LCD monitors or laptop screens have a diagonal of 17 and above, and also support higher resolutions. And the larger the monitor itself, the higher the resolution it can support. The ability to increase the screen resolution depends on the diagonal of the monitor, as well as on the video adapter used.

How to change...

0 0

A lot of users of the new operating system from Microsoft complain that they just can't figure out how to change the screen resolution, because the feature has disappeared from Personalization:

Some are starting to get used to the wrong screen resolution, others are starting to demolish Windows and return to the old 7 / 8.1, and we will try to explain how this can still be done on Windows 10, and even several different ways... We want to say right away - there is no point in getting used to the wrong resolution. You must use the capabilities of your laptop or computer as much as it is designed for, so if a problem occurs, it must be addressed immediately.

You cannot change the screen resolution from "Personalization" 100 percent. In order to do this without leaving the "Parameters", you need to click on the gear, and you will be taken to the updated "Control Panel":

It has only 9 submenus so far, but with updates it will be ...

0 0

The question about changing the resolution in Windows 7 or 8, as well as doing it in the game, although it belongs to the category "for the very beginners", but is asked quite often. In this instruction, we will touch not only directly on the steps required to change the screen resolution, but also some other things. See also: (+ video instruction),.

In particular, I will tell you why the required resolution may not be in the list of available ones, for example, with a Full HD 1920 x 1080 screen, it is impossible to set the resolution higher than 800 × 600 or 1024 × 768, why it is better to set the resolution on modern monitors, corresponding to the physical parameters of the matrix, and of what to do if everything on the screen is too large or too small.

For operating systems Windows 8 and Windows 8.1 can change the screen resolution in exactly the same way as described above. At the same time, I recommend following the same recommendations.

However, in the new OS, there is another way to change the screen resolution, which we will consider here.

  • Move the mouse pointer to any of the right corners of the screen to display the panel. On it, select "Settings", and then, at the bottom - "Change computer settings."
  • In the options window, select Computer and Devices, then Display.
  • Adjust the screen resolution and other display settings you want.

Changing the screen resolution in Windows 8

Perhaps it will be more convenient for someone, although personally I use the same method to change the resolution in Windows 8 as in Windows 7.

Using graphics card management utilities to change the resolution

In addition to the options described above, you can also change the resolution using various graphics control panels from NVidia (GeForce video cards), ATI (or AMD, Radeon graphics) or Intel.

For many users, when working in Windows in the notification area there is an icon for accessing the functions of the video card and in most cases, if you right-click on it, then you can quickly change the display parameters, including the screen resolution, simply by selecting the one you need in menu.

Changing the screen resolution in the game

Most games that run in full screen have their own resolution, which you can change. Depending on the game, these settings can be found in the items "Graphics", "Additional graphics options", "System" and others. Note that in some very old games, you cannot change the screen resolution. One more note: installing more high resolution in the game can lead to the fact that it will "slow down", especially on not too powerful computers.

That's all I can tell you about changing the screen resolution in Windows. Hope the information is helpful.