Custom Search

Presario CQ61-335SQ SPECIFICATIONS


Compaq Presario CQ61-335SQ

SPECIFICATIONS:  

Product NameCQ61-335SQ
Product NumberVL293EA
Microprocessor2.1 GHz Intel Pentium DualCore Mobile Processor T4300
Microprocessor CacheLevel 2 cache 1 MB
Memory4096 MB (2 x 2048 MB)
Memory MaxUp to 8 GB DDR2
Video GraphicsNVIDIA GeForce G 103M
Video Memory2302 MB total (512 MB dedicated)
Hard Drive320 GB SATA (5400 rpm)
Multimedia DriveLightscribe Super Multi DVD Writer (+/-R +/-RW) with Double Layer support
Display15.6" Diagonal High Definition HP LED Brightview Infinity Display (1366 x 768)
Network CardEthernet 10/100BT integrated network interface
Wireless Connectivity802.11b/g WLAN
SoundAltec Lansing speakers
KeyboardFull size keyboard with integrated numeric keypad
Pointing DeviceTouch Pad with On/Off button and dedicated vertical Scroll Up/Down pad
External Ports
  • 5-in-1 integrated Digital Media Reader for Secure Digital cards, MultiMedia cards, Memory Stick, Memory Stick Pro, or xD Picture cards
  • 3 USB 2.0 (3rd shared with eSATA port)
  • 1 HDMI connector
  • 1 VGA port
  • 1 eSATA+USB
  • 1 RJ45 ethernet connector
  • 1 headphone-out
  • 1 mic-in
Dimensions37.8 cm (L) x 25.2 cm (W) x 3.51 cm (min H) / 4.12 cm (max H)
Weight2.68 kg
Power
  • 90 W AC Power Adapter
  • 6-cell Lithium-Ion (Li-Ion) battery
What's In The BoxWebcam with integrated microphone

How to DISABLED TASK MANAGER on LIMITED USER ACCOUNT

Press Start > Run > type “gpedit.msc “ (without the quotes) and press enter. Select Administrative Templates\System\Ctrl+Alt+Delete Options then Enable


  • Now all users on your server are already disabled including administrators account.
  • Copy the below VB Script, copy and paste to notepad. Save as “enabled taskmanager.vbs”

Option Explicit
'Declare variables
Dim WSHShell, rr, rr2, MyBox, val, val2, ttl, toggle
Dim jobfunc, itemtype

On Error Resume Next

Set WSHShell = WScript.CreateObject("WScript.Shell")
val = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr"
val2 = "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr"
itemtype = "REG_DWORD"
jobfunc = "Task Manager is now "
ttl = "Result"

'reads the registry key value.
rr = WSHShell.RegRead (val)
rr2 = WSHShell.RegRead (val2)

toggle=1
If (rr=1 or rr2=1) Then toggle=0

If toggle = 1 Then
WSHShell.RegWrite val, 1, itemtype
WSHShell.RegWrite val2, 1, itemtype
Mybox = MsgBox(jobfunc & "disabled.", 4096, ttl)
Else
WSHShell.RegDelete val
WSHShell.RegDelete val2
Mybox = MsgBox(jobfunc & "enabled.", 4096, ttl)
End If
  • Now run the script in all administrator account to Enabled the task manager.



You might also like: