Asus u56e Laptop Hangs/Freezes

DSWhite,

Please try the tutorial suggested by F5ing.

Also, I'd like for you to clean out your Event Logs for which I'll give a procedure.

if you are still having the problem, then we will take at the fresh logs for Critical events and Error events.

CLEAR EVENT LOGS USING POWERSHELL


Step 1: Create a powershell script
Open NotePad.

Copy following into notepad:
Get-WinEvent -ListLog * -Force |
% { $_.logname;Wevtutil.exe cl $_.logname };
Wevtutil.exe cl system

Save as ClearEvents.ps1 in %userprofile%\desktop

Close Notepad

Step 2: Create a shortcut to have powershell run the script
Right-Click
on an empty spot on your desktop
Choose NEW -> Shortcut

In the box,
Enter powershell.exe & %userprofile%\desktop\ClearEvents.ps1
NEXT
button

Type CLEAR EVENTS (or any name of your choice)
FINISH button


Step 3: Run the script
The shortcut must be run as administrator.
RIGHT-CLICK on your CLEAR EVENTS shortcut
Choose Run as Administrator

If Powershell complains,then
Run PowerShell as administrator and set the script execution policy
START ORB |
type PowerShell | do NOT hit Enter |
right-click on PowerShell (at top of list) |
choose Run as administrator

Enter following commands:
Set-ExecutionPolicy remotesigned
EXIT

You can now proudly declare yourself a PowerShell user and aficionado. Now all you need is a COMPUTER GEEK badge. Batch files are so blasé.

There is nothing magic about %userprofile%\desktop. If you already have a C:\Scripts folder, then you may prefer to store the ClearEvents.ps1 script there.

Want to stay in Powershell after running the script? Add -noexit to the shortcut’s target (right-click on the shortcut. Properties, Shortcut tab, Target field).
powershell.exe -noexit & %userprofile%\desktop\ClearEvents.ps1

You can now amaze your friends with your command of PowerShell!


========================================================
 

My Computer My Computer

At a glance

MS Windows 7 Ultimate SP1 64-bitAMD A10-4600M6.00 GB Dual-Channel DDR3 @ 798MHz (11-11-12-28)AMD Radeon HD 7660G
Computer 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(s)
AMD Radeon HD 7660G
Sound Card
High Definition Audio Device
Monitor(s) Displays
Generic PnP Monitor (1600x900@60Hz)
Screen Resolution
1600x900@60Hz
Hard Drives
SSD 119GB Corsair CSSD-V128GB2 ATA Device
Keyboard
Standard PS/2 Keyboard
Mouse
HP Wireless Optical Mobile Mouse Model FHA-3410
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.
I think my problem has something to do with my Realtek Audio HD audio drivers, cuz it freezes only when im playing music or using a youtube video in flash, so i think there's something to do with that, gonna uninstall all my audio components and see how that might work
 

My Computer My Computer

At a glance

Windows 7 Home Premium 64-bit SP1Intel Core i5 @ 2.40GHz6.00 GB Dual-Channel DDR3 @ 665MHz (9-9-9-24)Generic PnP Monitor - Intel(R) HD Graphics 3000
Computer Manufacturer/Model Number
Asus U56E
OS
Windows 7 Home Premium 64-bit SP1
CPU
Intel Core i5 @ 2.40GHz
Motherboard
ASUSTeK Computer Inc. U56E (CPU 1)
Memory
6.00 GB Dual-Channel DDR3 @ 665MHz (9-9-9-24)
Graphics Card(s)
Generic PnP Monitor - Intel(R) HD Graphics 3000
Sound Card
Realtek High Definition Audio
Hard Drives
625GB Western Digital WDC WD6400BPVT-80HXZT3 (SATA)
Here is an easier to follow write-up on clearing your event logs:

PHP:
# ************************************************************
# Clear the EVENT LOGS
#
# **********************INSTRUCTIONS**************************
# STEP 1 *****************************************************
# RUN PowerShell as ADMINISTRATOR
# START ORB | type POWERSHELL | CTRL+SHIFT+ENTER key combo | ALT+Y keycombo
# ************************************************************
# STEP 2 *****************************************************
# COPY, starting with the first line that does NOT start with a #
# COPY, using CTRL+C, every line thru both EXIT statements 
# PASTE into Powershell
# You PASTE by Right-clicking at the PowerShell Prompt
#  (Ctrl+V does not work)
# ************************************************************

Get-WinEvent -ListLog * -Force | % { $_.logname;Wevtutil.exe cl $_.logname };Wevtutil.exe cl system

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 Computer My Computer

At a glance

MS Windows 7 Ultimate SP1 64-bitAMD A10-4600M6.00 GB Dual-Channel DDR3 @ 798MHz (11-11-12-28)AMD Radeon HD 7660G
Computer 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(s)
AMD Radeon HD 7660G
Sound Card
High Definition Audio Device
Monitor(s) Displays
Generic PnP Monitor (1600x900@60Hz)
Screen Resolution
1600x900@60Hz
Hard Drives
SSD 119GB Corsair CSSD-V128GB2 ATA Device
Keyboard
Standard PS/2 Keyboard
Mouse
HP Wireless Optical Mobile Mouse Model FHA-3410
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.
Back
Top