WizYo Sytes Net Tech Support
What a great place to share :) Here you will find flashes of brilliance caught for all the world to enjoy. .. Actually, these are brief articles describing how I fixed a problem. Every day, I find information online that helps me solve a mystery. So this is me giving back to the community. Thanks for stopping by.. and don't forget to tell your friends!

Beware SATA drive configuration in new servers !

Be sure to "enable" the "enable SATA RAID" selection in the BIOS of new IBM servers prior to loading any software. If not, the server will only use one hard drive and mirroring will not be available. In order to recover from not enabling RAID in the BIOS, the server has to be completely wiped and reloaded starting from RAID configuration.

Again, neither the ServeRAID Manager, nor IBM ServerGuide will enable RAID automatically.

If this happens to you, my recommendation is to blow away the server and reload it properly. I did not have this information and was finished with loading all software on the new server before discovering the mirror had not been established. In an attempt to save my config, I tried imaging the server with Ghost. The imaging process went smoothly, but the server failed to boot. After locating the proper RAID driver and running a repair install of Windows Server 2003, the following issues appeared:

Windows Setup
type: Information

Windows Setup cannot run under Safemode.  Setup 
will restart now.


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

lsass.exe - System Error
type: Red X

Security Accounts Manager initialization failed 
because of the following error:  Directory 
Service cannot start.  Error Status: 0xc00002e1.  
Please click OK to shutdown the system.  You can 
use the recovery console to diagnose the system 
further.

===   ===   ===   ===   ===   ===   ===   
Microsoft KB article 258062 had some nice suggestions, but the server just didn't want to cooperate. (Q258062) "Directory Services cannot start" error message when you start your Windows-based or SBS-based domain controller

I may have had better luck using NTbackup with System State option enabled, but for now, we're already engaged in a complete reload.

 

 

( IBM EServer xSeries 226 Serial ATA )

Wednesday, March 30, 2005
(0) comments

Autoexec.NT is corrupt and unusable

Adware infected systems running Windows 2000 or Windows XP often have their Autoexec.NT file deleted from the System32 folder. A simple fix is to copy the file from Repair to System32 as follows:

  • Click Start and then Run
  • Type CMD and press Enter
  • Type CD\Windows\System32 or CD\WinNT\System32 and press Enter (most Win2K systems use Winnt, but some do not)
  • Type Copy ..\Repair\Autoexec.NT and press Enter (a messaging stating 1 File Copied should appear)
Test running your application to confirm this operation is successful.

Config.NT can be replaced the same way if it is missing or corrupt and unusable

 

 

( Win2K WinXP )

Tuesday, March 29, 2005
(0) comments

Windows 2000 won't boot

System goes through POST, but instead of starting Win2K, only a flashing cursor appears. Suspect corrupt boot loader. Boot with Windows 98 diskette image on my utility CD. File system just happens to be Fat32! Just for kicks, run Winnt.exe to see what it will do. Allow to run for a few seconds, but abort (Ctl-Alt-Del) during file copy bar graph screen. System comes up with OS selection list! Manually select top item (Windows 2000 Professional) and boot system successfully.

Apparently, a system recovery was begun, but failed at some point. The Boot.ini file had some strange entries:

[Boot Loader]
Timeout=50
Default=C:\$WIN_NT$.~BT\BOOTSECT.DAT
[Operating Systems]
multi(0)disk(0)rdisk(0)partition(1)\WINNT="Microsoft Windows 2000 Professional" /fastdetect
C:\ = "Previous Operating System on C:"
C:\$WIN_NT$.~BT\BOOTSECT.DAT = "Windows 2000 Installation/Upgrade"

After correcting, the file looks like this:

[Boot Loader]
Timeout=3
Default=multi(0)disk(0)rdisk(0)partition(1)\WINNT
[Operating Systems]
multi(0)disk(0)rdisk(0)partition(1)\WINNT="Microsoft Windows 2000 Professional" /fastdetect

These Microsoft documents may have helped if I hadn't accidentally gotten it to work:
How to troubleshoot the "NTLDR Is Missing" error message in Windows 2000
How To Create a Boot Disk for an NTFS or FAT Partition in Windows

 

 

( Win2K Boot Loader Boot.ini Pro Professional )

Monday, March 28, 2005
(0) comments

How to Copy DVD's

When a DVD begins to crack and show signs of wear, the process of creating a backup disk can be quite a challenge.

DVD Shrink v3.2.0.15 was supposed to to the trick, but it didn't seem to work that well. After much frustration, discover these instructions while looking for Overlapped I/O operation in progress which was probably the result of the hard drive filling up. It only had couple gig free and DVD's can hold 4.7GB. Add extra hard drive and install DVD Decrypter, which automatically selects the blank drive for temporary storage! Nero came bundled with the burner and is quite handy for burning the files from DVD Decrypter. Good luck ~!

 

 

( )

Friday, March 25, 2005
(0) comments

Freeware Undelete program for Windows

This program works on old Windows 98. It crashes if you push it, but my customer is thrilled to have some old accounting files back !

PC Inspector File Recovery - alternate download link

 

 

( )


(0) comments

My Problems with Microsoft VPN have been solved !

Just received this from a colleague:

=== === === === === === ===
Guys,

I finally resolved my problem with my Microsoft VPN client not working. I thought I would share since this was kinda tough to find.

I have both Cisco and Microsoft VPN clients installed. The problem was my that while my Cisco VPN was working fine, my MS VPN would connect to the server and then hang during the authenticating user name and password phase. Eventually reporting that it could not connect. This held true for all of my MS VPN connections. Today I resolved to find and fix it so I rooted through the event viewer looking for error messages and then researched them on the NET.

Turns out a program called TrueVector was failing to load because a file was missing. Searching on the NET revealed that this TrueVector service was part of ZoneAlarm and ... the Cisco VPN client.

On a whim, I uninstalled my Cisco client and reinstalled, and both are now working again !

EO
=== === === === === === ===

 

 

( )

Thursday, March 24, 2005
(0) comments

Veritas "current block size is incorrect"

Windows Server 2003 with Veritas Backup Exec reporting the following error:
Test Backup -- The job failed with the following error: When accessing a new tape
 of a multivolume partition, the current block size is incorrect.
Veritas support recommends this solution, but I have found a little more complicated work-around:
  • Close BackupExec
  • Stop BackupExec services
  • Open NTbackup
  • Insert tape and perform a small test backup
  • Restart BackupExec services
  • Perform a Quick Erase on the tape
  • Perform a small test backup using BackupExec
I like to use a small batch file with the following commands to stop and then restart the services (listed in a text file in the same directory).
FOR /F "eol=; tokens=* delims=@" %%i in (besvc.txt) do net stop "%%i"
pause
FOR /F "eol=; tokens=* delims=@" %%i in (besvc.txt) do net start "%%i"
The text file should have the exact name of the services to control.
Backup Exec Job Engine
Backup Exec Server
Backup Exec Agent Browser
Backup Exec Device & Media Service
Backup Exec Remote Agent for Windows Servers

 

 

( Veritas BackupExec Win2K3 Win2003 )

Wednesday, March 23, 2005
(0) comments

Outgoing email failing with MS Outlook on your new ISP ?

Check the box for "My outgoing server (SMTP) requires authentication" and tick the button for "Use same settings as my incoming mail server"

 

 

( Microsoft email )

Friday, March 18, 2005
(0) comments

Can't FTP out with your new ISA 2004 server ?

Don't waste time trying to get the client to work before trying this fix !

Summary:

  • Right click your access rule under firewall settings
  • Choose Configure FTP
  • Uncheck Read Only & Click OK

 

 

( Microsoft Proxy passive active ftp.exe 550 access is denied )


(0) comments

Scam alert ! - Pluto Data Ltd $29.99 8883238955

Watch your Visa credit card bill for an item from "Pluto Data, LTD." for $29.99

Apparently, someone has hacked Visa and is randomly adding these charges. Amounts for $19.99 and $39.99 have also been reported. The company phone number just rings to voicemail. Good luck !

MSN article

broadband news

search Google for more info

Google news search

 

 

( 29.99 888-323-8955 )

Thursday, March 17, 2005
(0) comments

Windows Server 2003 network drive disconnect

currently, this item has no fix :(

Existing pier to pier network of Windows XP Pro stations. Add Windows Server 2003 and set up as file server with active directory domain. Trouble appears in the form of intermittent network disconnections. Changed port on switch, NIC in server and patch cable. Server never seems to drop from network. Can run a continuous ping to it just fine.

This guy has the same trouble.

tried the following command, but no good:
net config server /autodisconnect:-1

 

 

( Win2k3 drives disconnecting )

Wednesday, March 16, 2005
(0) comments

WizYo Archive

- December 2003 - January 2004 - February 2004 - March 2004 - April 2004 - May 2004 - June 2004 - July 2004 - August 2004 - September 2004 - October 2004 - November 2004 - December 2004 - January 2005 - February 2005 - March 2005 - April 2005 - May 2005 - June 2005 - July 2005 - August 2005 - September 2005 - October 2005 - November 2005 - December 2005 - January 2006 - February 2006 - March 2006 - April 2006 - May 2006 - June 2006 - July 2006 - August 2006 - September 2006 - October 2006 - December 2006 - January 2007 - February 2007 - March 2007 - May 2007 - June 2007 - July 2007 - August 2007 - September 2007 - October 2007 - November 2007 - December 2007 - January 2008 - May 2008 - June 2008 - July 2008 - August 2008 - September 2008 - October 2008 - January 2009 - February 2009 - April 2009 - July 2009 - August 2009 - September 2009 - November 2009 - December 2009 - June 2010 - May 2011 - August 2011 - September 2011 - October 2011 - March 2012 - May 2012 - October 2012 - November 2012 - April 2013 -

Back to top.

Home
WizYo
Sytes Net

Links
~hot~ Links


this site !

GuestBook
Guests

Free Hit Counter

Blog!

Tell a friend about Tech Support available here !

Free Phone with iTunes
- Previous -
 
- Why does Microsoft make it so darn difficult to co...
 
- 64-bit Windows 7 Driver for IBM 6400 Printer
 
- HP Restore Plus! fail
 
- Google data mining via Street View
 
- down with Carbon barons !!
 
- Windows 7 Home as FileServer - tweak
 
- Dell Inspiron 1440 Windows 7 laptop
 
- Ivans not working properly
 
- WMIC random tip
 
- Manual IPL (reboot) AS/400
 
- Search -
 

Google

Daily Specials

Submit Site - Website Promotion

 


it's private

 

This page is powered by Blogger. Isn't yours?