| Windows 7: Is it possible to get to |
08 Jul 2012
|
#1 | | |
Is it possible to get to A setting in the registry and change the screen resolution? | My System Specs |
| System Manufacturer/Model Number Custom OS WIN 7 64 CPU Intel core2 Extreame Motherboard EVGA N-FORCE 680i Memory OCZ 4gigs Graphics Card NV GTX 295 Sound Card Creative XFI Gamer Monitor(s) Displays SyncMaster 245 24" Screen Resolution 1920X1200 PSU 1010 Case Cooler Master Cooling Air Hard Drives 3 X WD 160gig Internet Speed cable |
08 Jul 2012
|
#2 | | Vista, Windows7, Mint Mate, Zorin, Windows 8 Florida in winter, Black Forest/Germany |
Why don't you just change the resolution with the desktop right click option. | My System Specs | | System Manufacturer/Model Number HP, Dell, Gateway, Toshiba - 4 laptops and 2 desktops OS Vista, Windows7, Mint Mate, Zorin, Windows 8 CPU from 1.6GHz Duo to i7 Monitor(s) Displays 2x HP w2207 Keyboard with trackball - no mices Mouse Trackball mice Hard Drives 5x HDD, 7x SSD, 12x Externals Internet Speed DSL 6000 |
08 Jul 2012
|
#3 | | Windows 7 Home Premium 64 bit. SP-1 Northern Ohio |
Why would you want to fool around with the registry for such a thing? | My System Specs | | Computer type PC/Desktop System Manufacturer/Model Number Home made Desktop OS Windows 7 Home Premium 64 bit. SP-1 CPU Intel i7-960-3.2 @ 4.25 Motherboard ASUS P6X58D-E Memory KINGSTON KHX2000C9, Hyper X,12 GIGS Graphics Card MSI/Nvidia/460GTX-Cyclone 1GD5/OC Monitor(s) Displays DYNEX 40 IN. Screen Resolution 1920-1080 or 1280-720 HDMI Keyboard M/S 3000 v 2.0 wireless Mouse M/S 5000 wireless PSU Corsair AX-850 Plus Gold Case Corsair 600T (Black) + side panel with 2 140 mm Noctua fans Cooling Corsair H50/2 Noctua NF-P12 (120 mm) Push/Pull- Hard Drives INTEL SSD 120GB-SER 510
Seagate 1TB SATA 600 7200 rpm Hard Drive Internet Speed 3.0 mb Antivirus Microsoft Security Eesentials Browser I.E. 10 default/Firefox Other Info LG BluRay-Read/Write
Sound system
KLipsch-THX
Asus Router RTN-12
2 Noctua 140 added on top of 600t case
Malwarebytes Anti Malware Professional
Windows 7 Firewall |
08 Jul 2012
|
#4 | | MS Windows 7 Ultimate SP1 64-bit Austin, Texas |
clay,
a simple registry change there isn't, but by using my friend Goggle and search for "change display resolution with powershell" , I came up with a 'resolution changer".
I've tried this script, but only on legit changes. Let's see first here is the link: Hey, Scripting Guy! How Can I Change My Desktop Monitor Resolution via Windows PowerShell? - Hey, Scripting Guy! Blog - Site Home - TechNet Blogs
Here's the actual script with a couple of explanation notes. Script: # ************************************************************ # Change the display resolution # to use: change the Set-ScreenResolution statement from # Set-ScreenResolution 800 600 # change to Set-ScreenResolution yourdesiredwidth yourdesiredheight # # Those two exit statements aren't neeed but I didn't want to # change my template. # **********************INSTRUCTIONS************************** # STEP 1 ***************************************************** # RUN PowerShell as administrator # START ORB | type POWERSHELL | CTRL+SHIFT+ENTER key combo | ALT+Y keycombo # ************************************************************ # STEP 2 ***************************************************** # COPY, using CTRL+C, every line down thru both EXIT statements # PASTE into Powershell == Right-Click at the PowerShell Prompt # (Ctrl+V does not work) # Start copying with first line without a # at start of the line # Note: Actually, you can paste the entire file if you rather # Lines starting with a # are ignored by PowerShell # ************************************************************
Function Set-ScreenResolution { param ( [Parameter(Mandatory=$true, Position = 0)] [int] $Width, [Parameter(Mandatory=$true, Position = 1)] [int] $Height ) $pinvokeCode = @" using System; using System.Runtime.InteropServices; namespace Resolution { [StructLayout(LayoutKind.Sequential)] public struct DEVMODE1 { [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 32)] public string dmDeviceName; public short dmSpecVersion; public short dmDriverVersion; public short dmSize; public short dmDriverExtra; public int dmFields; public short dmOrientation; public short dmPaperSize; public short dmPaperLength; public short dmPaperWidth; public short dmScale; public short dmCopies; public short dmDefaultSource; public short dmPrintQuality; public short dmColor; public short dmDuplex; public short dmYResolution; public short dmTTOption; public short dmCollate; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 32)] public string dmFormName; public short dmLogPixels; public short dmBitsPerPel; public int dmPelsWidth; public int dmPelsHeight; public int dmDisplayFlags; public int dmDisplayFrequency; public int dmICMMethod; public int dmICMIntent; public int dmMediaType; public int dmDitherType; public int dmReserved1; public int dmReserved2; public int dmPanningWidth; public int dmPanningHeight; }; class User_32 { [DllImport("user32.dll")] public static extern int EnumDisplaySettings(string deviceName, int modeNum, ref DEVMODE1 devMode); [DllImport("user32.dll")] public static extern int ChangeDisplaySettings(ref DEVMODE1 devMode, int flags); public const int ENUM_CURRENT_SETTINGS = -1; public const int CDS_UPDATEREGISTRY = 0x01; public const int CDS_TEST = 0x02; public const int DISP_CHANGE_SUCCESSFUL = 0; public const int DISP_CHANGE_RESTART = 1; public const int DISP_CHANGE_FAILED = -1; } public class PrmaryScreenResolution { static public string ChangeResolution(int width, int height) { DEVMODE1 dm = GetDevMode1(); if (0 != User_32.EnumDisplaySettings(null, User_32.ENUM_CURRENT_SETTINGS, ref dm)) { dm.dmPelsWidth = width; dm.dmPelsHeight = height; int iRet = User_32.ChangeDisplaySettings(ref dm, User_32.CDS_TEST); if (iRet == User_32.DISP_CHANGE_FAILED) { return "Unable To Process Your Request. Sorry For This Inconvenience."; } else { iRet = User_32.ChangeDisplaySettings(ref dm, User_32.CDS_UPDATEREGISTRY); switch (iRet) { case User_32.DISP_CHANGE_SUCCESSFUL: { return "Success"; } case User_32.DISP_CHANGE_RESTART: { return "You Need To Reboot For The Change To Happen.\n If You Feel Any Problem After Rebooting Your Machine\nThen Try To Change Resolution In Safe Mode."; } default: { return "Failed To Change The Resolution"; } } } } else { return "Failed To Change The Resolution."; } } private static DEVMODE1 GetDevMode1() { DEVMODE1 dm = new DEVMODE1(); dm.dmDeviceName = new String(new char[32]); dm.dmFormName = new String(new char[32]); dm.dmSize = (short)Marshal.SizeOf(dm); return dm; } } } "@ Add-Type $pinvokeCode -ErrorAction SilentlyContinue [Resolution.PrmaryScreenResolution]::ChangeResolution($width,$height) }
Set-screenresolution 800 600
EXIT EXIT
# ***************** NOTE - POWERSHELL VERSION***************** # if you receive this error msg: # Get-WinEvent: The system can not find the path specified # you need to update your PowerShell # you must be using Powershell 2.0 or later. # # To determine your Powershell version: # Run PowerShell # enter $host.version # you should see at least: # Major Minor Build Revision # ----- ----- ----- -------- # 2 0 -1 -1 # # If you do not see the above, update your Vista/Win 7. # ************************************************************ # *************** NOTE - EXECUTION POLICY********************* # If you haven't set the execution policy, you may need to: # Run PowerShell # enter Set-ExecutionPolicy -executionpolicy remotesigned # # ************************************************************
| My System Specs | | System Manufacturer/Model Number Toshiba Satellite S875D-S7239 laptop OS MS Windows 7 Ultimate SP1 64-bit CPU AMD A10-4600M Motherboard AMD Pumori (Socket FT1) Memory 6.00 GB Dual-Channel DDR3 @ 798MHz (11-11-12-28) Graphics Card AMD Radeon HD 7660G Sound Card High Definition Audio Device Monitor(s) Displays Generic PnP Monitor (1600x900@60Hz) Screen Resolution 1600x900@60Hz Keyboard Standard PS/2 Keyboard Mouse HP Wireless Optical Mobile Mouse Model FHA-3410 Hard Drives SSD 119GB Corsair CSSD-V128GB2 ATA Device Internet Speed What the local pub, local coffee shop offers. Other Info Optical Drive:MATSHITA BD-CMB UJ160B ATA Device
Also have an Asus ha1002xp netbook with Win 7 Ultimate installed. |
08 Jul 2012
|
#5 | | Windows 7 Home Premium 64 bit. SP-1 Northern Ohio |
Dam karl, all that for a resolution, have mercy. | My System Specs | | Computer type PC/Desktop System Manufacturer/Model Number Home made Desktop OS Windows 7 Home Premium 64 bit. SP-1 CPU Intel i7-960-3.2 @ 4.25 Motherboard ASUS P6X58D-E Memory KINGSTON KHX2000C9, Hyper X,12 GIGS Graphics Card MSI/Nvidia/460GTX-Cyclone 1GD5/OC Monitor(s) Displays DYNEX 40 IN. Screen Resolution 1920-1080 or 1280-720 HDMI Keyboard M/S 3000 v 2.0 wireless Mouse M/S 5000 wireless PSU Corsair AX-850 Plus Gold Case Corsair 600T (Black) + side panel with 2 140 mm Noctua fans Cooling Corsair H50/2 Noctua NF-P12 (120 mm) Push/Pull- Hard Drives INTEL SSD 120GB-SER 510
Seagate 1TB SATA 600 7200 rpm Hard Drive Internet Speed 3.0 mb Antivirus Microsoft Security Eesentials Browser I.E. 10 default/Firefox Other Info LG BluRay-Read/Write
Sound system
KLipsch-THX
Asus Router RTN-12
2 Noctua 140 added on top of 600t case
Malwarebytes Anti Malware Professional
Windows 7 Firewall |
08 Jul 2012
|
#6 | | MS Windows 7 Ultimate SP1 64-bit Austin, Texas |
I tried out the script and works smoothly. Didn't try wierd ones, but I just might on my Asus Netbook to see if I can set something other than their defaults which are a little off of what is needed. | My System Specs | | System Manufacturer/Model Number Toshiba Satellite S875D-S7239 laptop OS MS Windows 7 Ultimate SP1 64-bit CPU AMD A10-4600M Motherboard AMD Pumori (Socket FT1) Memory 6.00 GB Dual-Channel DDR3 @ 798MHz (11-11-12-28) Graphics Card AMD Radeon HD 7660G Sound Card High Definition Audio Device Monitor(s) Displays Generic PnP Monitor (1600x900@60Hz) Screen Resolution 1600x900@60Hz Keyboard Standard PS/2 Keyboard Mouse HP Wireless Optical Mobile Mouse Model FHA-3410 Hard Drives SSD 119GB Corsair CSSD-V128GB2 ATA Device Internet Speed What the local pub, local coffee shop offers. Other Info Optical Drive:MATSHITA BD-CMB UJ160B ATA Device
Also have an Asus ha1002xp netbook with Win 7 Ultimate installed. |
08 Jul 2012
|
#7 | | Windows 7 Home Premium 64 bit. SP-1 Northern Ohio |
I think I will just stick with Right Click on Desktop that suites my I.Q. level. | My System Specs | | Computer type PC/Desktop System Manufacturer/Model Number Home made Desktop OS Windows 7 Home Premium 64 bit. SP-1 CPU Intel i7-960-3.2 @ 4.25 Motherboard ASUS P6X58D-E Memory KINGSTON KHX2000C9, Hyper X,12 GIGS Graphics Card MSI/Nvidia/460GTX-Cyclone 1GD5/OC Monitor(s) Displays DYNEX 40 IN. Screen Resolution 1920-1080 or 1280-720 HDMI Keyboard M/S 3000 v 2.0 wireless Mouse M/S 5000 wireless PSU Corsair AX-850 Plus Gold Case Corsair 600T (Black) + side panel with 2 140 mm Noctua fans Cooling Corsair H50/2 Noctua NF-P12 (120 mm) Push/Pull- Hard Drives INTEL SSD 120GB-SER 510
Seagate 1TB SATA 600 7200 rpm Hard Drive Internet Speed 3.0 mb Antivirus Microsoft Security Eesentials Browser I.E. 10 default/Firefox Other Info LG BluRay-Read/Write
Sound system
KLipsch-THX
Asus Router RTN-12
2 Noctua 140 added on top of 600t case
Malwarebytes Anti Malware Professional
Windows 7 Firewall |
08 Jul 2012
|
#8 | | Win7 Pro x64 Stage 5.0 (26 Dimensional Jump) |

Quote: Originally Posted by Layback Bear Dam karl, all that for a resolution, have mercy. Putting the 'kill' in 'overkill' - we gotta earn those Pro and Guru tags!!
1. Receive email
2. Press print button
3. Remove printout of email, insert into scanner
4. Scan printed email
5. Save scanned image
6. Open image in OCR program, convert into text
7. Copy text, paste into email program
8. Reply *salutes*
Edit:
Side note, probably OP has trouble with right click? Can you do this in Windows Starter? There's probably something we're missing here. | My System Specs | | System Manufacturer/Model Number Self-built rig OS Win7 Pro x64 CPU Koa i5-2550K Memory 8 GB Graphics Card Sapphire ATI 6870 1GB GDDR5 Sound Card RealTek HD Audio / ATI HDMI Audio Monitor(s) Displays Samsung HDTV Monitor T23A350 Screen Resolution 1920 x 1080 Keyboard Logitech G110 Hard Drives - SSD (C:)
- HDD (D:)
- BD-ROM (E:) Internet Speed Unifi home (5mbps) |
08 Jul 2012
|
#9 | | |

Quote: Originally Posted by whs Why don't you just change the resolution with the desktop right click option. The desk top and control panel dont work.... Trouble with control panel and desktop picture.. | My System Specs | | System Manufacturer/Model Number Custom OS WIN 7 64 CPU Intel core2 Extreame Motherboard EVGA N-FORCE 680i Memory OCZ 4gigs Graphics Card NV GTX 295 Sound Card Creative XFI Gamer Monitor(s) Displays SyncMaster 245 24" Screen Resolution 1920X1200 PSU 1010 Case Cooler Master Cooling Air Hard Drives 3 X WD 160gig Internet Speed cable |
08 Jul 2012
|
#10 | | MS Windows 7 Ultimate SP1 64-bit Austin, Texas |
The script will work. Just be sure to give it a combo that is valid for your monitor. | My System Specs | | System Manufacturer/Model Number Toshiba Satellite S875D-S7239 laptop OS MS Windows 7 Ultimate SP1 64-bit CPU AMD A10-4600M Motherboard AMD Pumori (Socket FT1) Memory 6.00 GB Dual-Channel DDR3 @ 798MHz (11-11-12-28) Graphics Card AMD Radeon HD 7660G Sound Card High Definition Audio Device Monitor(s) Displays Generic PnP Monitor (1600x900@60Hz) Screen Resolution 1600x900@60Hz Keyboard Standard PS/2 Keyboard Mouse HP Wireless Optical Mobile Mouse Model FHA-3410 Hard Drives SSD 119GB Corsair CSSD-V128GB2 ATA Device Internet Speed What the local pub, local coffee shop offers. Other Info Optical Drive:MATSHITA BD-CMB UJ160B ATA Device
Also have an Asus ha1002xp netbook with Win 7 Ultimate installed. Is it possible to get to problems? All times are GMT -5. The time now is 06:54 AM. | |