"I tryed somthing. Instead of setting the multiplier to x7 and the other thing to 400 to get 2.80GHz, I changed it to x8 and the Frequency to 350 to get the same 2.80GHz"It's NOT the same 2.8GHz. One runs at 1600MHz FSB, the other runs at 1400MHz FSB. In other words, 8 x 350MHz is slower than 7 x 40Read more
“I tryed somthing. Instead of setting the multiplier to x7 and the other thing to 400 to get 2.80GHz, I changed it to x8 and the Frequency to 350 to get the same 2.80GHz”
It’s NOT the same 2.8GHz. One runs at 1600MHz FSB, the other runs at 1400MHz FSB. In other words, 8 x 350MHz is slower than 7 x 400MHz. I recommended that you use 400MHz for a reason.
Go back to 7 x 400MHz, memory multipler of 2.0, lock the PCIe at 100MHz, & increase the CPU voltage. Notice that I put “for starters” for the 1.20v setting, it’s up to you to find which voltage setting will allow the system to boot & run stably with the overclock settings. Intel lists the max safe voltage for the Q8400 as 1.3625v. Try the settings I recommended but bump the voltage up to 1.35v. If it runs stably at 7 x 400MHz at 1.35v, try 8 x 400MHz. If you have to, bump the voltage up again.
ijackWhen I search using: "Setup Lock" there are a few "hits" for a Dell Optiplex (desktop) model, and many for the Dell Vostro laptop series, many of which have it mentioned only in a list of fixes for a bios update for Astro 3300.I looked at several pages of "hits" - no Latitude models seen. LotsRead more
ijack
When I search using: “Setup Lock” there are a few “hits” for a Dell Optiplex (desktop) model, and many for the Dell Vostro laptop series, many of which have it mentioned only in a list of fixes for a bios update for Astro 3300. I looked at several pages of “hits” – no Latitude models seen.
Lots of desktop mboard bioses have the capability of using a password to lock the bios Setup settings, but in most if not all cases, it’s easy to remove the passwords by simply removing the mboard battery, or by moving a clear cmos jumper, or a clear passwords jumper to the clear position,, or by shorting certain contacts that accomplishes the same thing as moving a jumper to the clear position. None of those methods clear passwords on modern (less than about 13 years old) laptops.
Obviously I wasn’t aware that you can lock the settings in the bios of certain laptops yet be able to access Setup. Most (up until this subject I would had said All) laptops have only the options to set a system access password – you must provide it in order to access the computer at all – and/or a hard drive access password – you must provide it in order to use the hard drive – and/or a bios access password – you must provide it in order to access the bios Setup.
He hasn’t mentioned being prompted for a password.
There's some general stuff here:https://forum.videolan.org/viewtopi...Also keep watching in case an Opera user comes along.Always pop back and let us know the outcome - thanks
"On your TV, follow the instructions on the screen to obtain an 8-digit Windows Media Center Setup Key. Write down this 8-digit setup key. This is the key that you will use to affiliate your Extender with your computer that has Windows Media Center."Set up a Windows Media Center ExtenderWindows 7 NeRead more
“On your TV, follow the instructions on the screen to obtain an 8-digit Windows Media Center Setup Key. Write down this 8-digit setup key. This is the key that you will use to affiliate your Extender with your computer that has Windows Media Center.“
ok, so if you open a blank word document, click on the fancy logo top left to open the menu, now bottom right beside X Exit Word, there is "Word Options", select that, under "proofing" tab, and what you likely want is in the "Auto Correct" options, click on Auto correct, and it brings up a whole lisRead more
ok, so if you open a blank word document, click on the fancy logo top left to open the menu, now bottom right beside X Exit Word, there is “Word Options”, select that, under “proofing” tab, and what you likely want is in the “Auto Correct” options, click on Auto correct, and it brings up a whole list of auto features.
To err is human but to really screw things up, you need a computer!
PXE means it's trying to boot from the network because it doesn't see your hard drive. Either the cables have come loose or your drive has died. Open up the case and check that the cables are secure. Other then that you may be looking at a new hard drive.
PXE means it’s trying to boot from the network because it doesn’t see your hard drive. Either the cables have come loose or your drive has died. Open up the case and check that the cables are secure. Other then that you may be looking at a new hard drive.
Never mind. I was calling the method incorrectly. The parens are not needed. I also didn't have an extension for the backup log file. My final batch file for those interested:@ECHO OFF SETLOCAL :: Parse date. FOR /F "tokens=2-4 delims=/ " %%A IN ("%DATE%") DO ( SET MM=%%A SET DD=%%B SET YY=%%C ) ::Read more
Never mind. I was calling the method incorrectly. The parens are not needed. I also didn’t have an extension for the backup log file. My final batch file for those interested:
@ECHO OFF
SETLOCAL
:: Parse date.
FOR /F "tokens=2-4 delims=/ " %%A IN ("%DATE%") DO (
SET MM=%%A
SET DD=%%B
SET YY=%%C
)
:: Ensure log directory exists.
IF NOT EXIST "D:\Logs\EventViewer" (
MKDIR "D:\Logs\EventViewer"
)
:: Execute WMIC to first backup events, then clear the log.
FOR %%A IN (Application Security System) DO (
IF NOT EXIST "D:\Logs\EventViewer\%YY%.%MM%.%DD%.%%A.evt" (
WMIC PATH Win32_NTEventlogFile WHERE LogfileName="%%A" ^
CALL BackupEventlog "D:\Logs\EventViewer\%YY%.%MM%.%DD%.%%A.evt"
WMIC PATH Win32_NTEventlogFile WHERE LogfileName="%%A" ^
CALL ClearEventLog
)
)
:: Leave
EXIT /B
This will backup and then clear the Application, Security, and System events in Event Viewer, saving them to “D:\Logs\Event Viewer”.
When your only tool is a hammer, every problem looks like a nail.
To use the sleep command in the above code u need"Windows Server 2003 Resource Kit Tools"download it from http://technet.microsoft.com/en-us/...thenSave the above code with some name.cmd or name.batthe above code generates three logs every hour..in the folder D:\Monitoring\20110210you will get the oRead more
To use the sleep command in the above code u need
“Windows Server 2003 Resource Kit Tools” download it from
then Save the above code with some name.cmd or name.bat the above code generates three logs every hour.. in the folder D:\Monitoring\20110210 you will get the output in this format in a logfile “Log20110210.txt”
———————————————————- SERVER TIMESTAMP STATUS ——————————————————— 172.16.71.46 19:11:34 Success
You will also get log file of ping and tracert as follows Ping_20110210_19’11’34’96.txt
Pinging 172.16.71.46 with 32 bytes of data: Reply from 172.16.71.46: bytes=32 time<1ms TTL=127 Reply from 172.16.71.46: bytes=32 time<1ms TTL=127 Reply from 172.16.71.46: bytes=32 time<1ms TTL=127 Reply from 172.16.71.46: bytes=32 time=1ms TTL=127 Ping statistics for 172.16.71.46: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 1ms, Average = 0ms
Tracert_20110210_19’11’34’96.txt
Tracing route to 172.16.71.46 over a maximum of 30 hops 1 <1 ms <1 ms 1 ms 172.16.69.2 2 <1 ms <1 ms <1 ms 172.16.71.46 Trace complete.
Solved Intel Q8400 Overclocking Help
"I tryed somthing. Instead of setting the multiplier to x7 and the other thing to 400 to get 2.80GHz, I changed it to x8 and the Frequency to 350 to get the same 2.80GHz"It's NOT the same 2.8GHz. One runs at 1600MHz FSB, the other runs at 1400MHz FSB. In other words, 8 x 350MHz is slower than 7 x 40Read more
It’s NOT the same 2.8GHz. One runs at 1600MHz FSB, the other runs at 1400MHz FSB. In other words, 8 x 350MHz is slower than 7 x 400MHz. I recommended that you use 400MHz for a reason.
Go back to 7 x 400MHz, memory multipler of 2.0, lock the PCIe at 100MHz, & increase the CPU voltage. Notice that I put “for starters” for the 1.20v setting, it’s up to you to find which voltage setting will allow the system to boot & run stably with the overclock settings. Intel lists the max safe voltage for the Q8400 as 1.3625v. Try the settings I recommended but bump the voltage up to 1.35v. If it runs stably at 7 x 400MHz at 1.35v, try 8 x 400MHz. If you have to, bump the voltage up again.
I Can’t Change My Boot Order I Think It Is Locked By Administ
ijackWhen I search using: "Setup Lock" there are a few "hits" for a Dell Optiplex (desktop) model, and many for the Dell Vostro laptop series, many of which have it mentioned only in a list of fixes for a bios update for Astro 3300.I looked at several pages of "hits" - no Latitude models seen. LotsRead more
When I search using: “Setup Lock” there are a few “hits” for a Dell Optiplex (desktop) model, and many for the Dell Vostro laptop series, many of which have it mentioned only in a list of fixes for a bios update for Astro 3300.
I looked at several pages of “hits” – no Latitude models seen.
Lots of desktop mboard bioses have the capability of using a password to lock the bios Setup settings, but in most if not all cases, it’s easy to remove the passwords by simply removing the mboard battery, or by moving a clear cmos jumper, or a clear passwords jumper to the clear position,, or by shorting certain contacts that accomplishes the same thing as moving a jumper to the clear position.
None of those methods clear passwords on modern (less than about 13 years old) laptops.
Obviously I wasn’t aware that you can lock the settings in the bios of certain laptops yet be able to access Setup.
Most (up until this subject I would had said All) laptops have only the options to set a system access password – you must provide it in order to access the computer at all – and/or a hard drive access password – you must provide it in order to use the hard drive – and/or a bios access password – you must provide it in order to access the bios Setup.
He hasn’t mentioned being prompted for a password.
Solved VLC Plugin For Opera Browser , How ??
There's some general stuff here:https://forum.videolan.org/viewtopi...Also keep watching in case an Opera user comes along.Always pop back and let us know the outcome - thanks
https://forum.videolan.org/viewtopi…
Also keep watching in case an Opera user comes along.
Always pop back and let us know the outcome – thanks
Win 7 Windows Media Center Extender Key?
"On your TV, follow the instructions on the screen to obtain an 8-digit Windows Media Center Setup Key. Write down this 8-digit setup key. This is the key that you will use to affiliate your Extender with your computer that has Windows Media Center."Set up a Windows Media Center ExtenderWindows 7 NeRead more
Set up a Windows Media Center Extender
Windows 7 News!
Solved How Do I Add a Small ‘th’ To a Number, ie 3rd 5th, 2nd
ok, so if you open a blank word document, click on the fancy logo top left to open the menu, now bottom right beside X Exit Word, there is "Word Options", select that, under "proofing" tab, and what you likely want is in the "Auto Correct" options, click on Auto correct, and it brings up a whole lisRead more
To err is human but to really screw things up, you need a computer!
message edited by HopperRox
Solved Error: Filename, Directory Name, Or Volume Label Syntax
the name of the game is gun. nevermind. tried another download and it worked.
Broadcom UNDI PXE – 2.1 v12.2.2 Kas Tai?
PXE means it's trying to boot from the network because it doesn't see your hard drive. Either the cables have come loose or your drive has died. Open up the case and check that the cables are secure. Other then that you may be looking at a new hard drive.
VBS To WMIC – ReturnValue = 123
Never mind. I was calling the method incorrectly. The parens are not needed. I also didn't have an extension for the backup log file. My final batch file for those interested:@ECHO OFF SETLOCAL :: Parse date. FOR /F "tokens=2-4 delims=/ " %%A IN ("%DATE%") DO ( SET MM=%%A SET DD=%%B SET YY=%%C ) ::Read more
Never mind. I was calling the method incorrectly. The parens are not needed. I
also didn’t have an extension for the backup log file. My final batch file for those
interested:
@ECHO OFF SETLOCAL :: Parse date. FOR /F "tokens=2-4 delims=/ " %%A IN ("%DATE%") DO ( SET MM=%%A SET DD=%%B SET YY=%%C ) :: Ensure log directory exists. IF NOT EXIST "D:\Logs\EventViewer" ( MKDIR "D:\Logs\EventViewer" ) :: Execute WMIC to first backup events, then clear the log. FOR %%A IN (Application Security System) DO ( IF NOT EXIST "D:\Logs\EventViewer\%YY%.%MM%.%DD%.%%A.evt" ( WMIC PATH Win32_NTEventlogFile WHERE LogfileName="%%A" ^ CALL BackupEventlog "D:\Logs\EventViewer\%YY%.%MM%.%DD%.%%A.evt" WMIC PATH Win32_NTEventlogFile WHERE LogfileName="%%A" ^ CALL ClearEventLog ) ) :: Leave EXIT /BThis will backup and then clear the Application, Security, and System events in
Event Viewer, saving them to “D:\Logs\Event Viewer”.
When your only tool is a hammer, every problem looks like a nail.
Solved Use Batch Or VBS To Create a New VPN Connection
FYII found a site that has useful information that helped me figure out a solution to my problem!http://www.jessebowes.com/blog/vpn-...
I found a site that has useful information that helped me figure out a solution to my problem!
http://www.jessebowes.com/blog/vpn-…
Need a Batch File To Run Tracert Once Per h
To use the sleep command in the above code u need"Windows Server 2003 Resource Kit Tools"download it from http://technet.microsoft.com/en-us/...thenSave the above code with some name.cmd or name.batthe above code generates three logs every hour..in the folder D:\Monitoring\20110210you will get the oRead more
“Windows Server 2003 Resource Kit Tools”
download it from
http://technet.microsoft.com/en-us/…
then
Save the above code with some name.cmd or name.bat
the above code generates three logs every hour..
in the folder D:\Monitoring\20110210
you will get the output in this format in a logfile “Log20110210.txt”
———————————————————-
SERVER TIMESTAMP STATUS
———————————————————
172.16.71.46 19:11:34 Success
You will also get log file of ping and tracert as follows
Ping_20110210_19’11’34’96.txt
Pinging 172.16.71.46 with 32 bytes of data:
Reply from 172.16.71.46: bytes=32 time<1ms TTL=127
Reply from 172.16.71.46: bytes=32 time<1ms TTL=127
Reply from 172.16.71.46: bytes=32 time<1ms TTL=127
Reply from 172.16.71.46: bytes=32 time=1ms TTL=127
Ping statistics for 172.16.71.46:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 1ms, Average = 0ms
Tracert_20110210_19’11’34’96.txt
Tracing route to 172.16.71.46 over a maximum of 30 hops
1 <1 ms <1 ms 1 ms 172.16.69.2
2 <1 ms <1 ms <1 ms 172.16.71.46
Trace complete.