-
VMware ESXi: Setup did not find any hard disk drives installed in your computer (Windows XP)
Posted on October 23rd, 2008 20 comments
Print
Error Message:
Setup did not find any hard disk drives installed in your computer.
If you get this error when installing Windows XP in VMware ESXi, simply do the following:
- Download this floppy image which contains the VMware SCSI drivers: vmscsi-1.2.0.4.flp.
- Upload the floppy image to the datastore using the VI Client.
- Edit the virtual machine settings and select Floppy Drive 1, then choose the option on the right to “Use existing floppy image in datastore:” and select the floppy image.
- Power on the virtual machine.
- Press F6 when you see the message “Press F6 if you need to install a third party SCSI or RAID driver…” at the bottom of the screen.
- Connect Floppy Drive 1.
- Press S, then press Enter to select the VMware SCSI Controller driver, then press Enter again to continue with the setup.
That’s it! The Windows XP setup should now be able to detect the hard drives
.Source: VMware Knowledgebase Document
-
Windows cannot access the specified device, path, or file
Posted on March 17th, 2008 No comments
Print
Error Message:
Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to access the item.
If you get this error when you tried to run an executable file, simply do the following:
- Right-click on the file and choose Properties.
- In the General tab, click the Unblock button at the bottom and hit OK.
Try running the executable file again and it should now work.
-
Exchange 2007 SP1: Message rejected as spam by Content Filtering
Posted on March 11th, 2008 3 comments
Print
Error Message:
550 5.7.1 Message rejected as spam by Content Filtering.
One of our users reported that after we applied Service Pack 1 and Update Rollup 1 to Exchange Server 2007, some of the emails that he has scheduled to send daily were getting rejected with the message above.
I guess the integrated anti-spam in Exchange got updated as well.
You can configure Content Filtering in Exchange to bypass specific users or domains.
Open the Exchange Management Shell:
# To check the Content Filter configuration, type in:
Get-ContentFilterConfig
# To set the Bypassed Senders (example):
Set-ContentFilterConfig -BypassedSenders donotspamme@calazan.com, jdoe@abc.com
# To set the Bypassed Sender Domains (example):
Set-ContentFilterConfig -BypassedSenderDomains calazan.com, *.xyz.com
Important Note: BypassedSenders and BypassedSenderDomains are multivalued properties. When you use the Set-ContentFilterConfig cmdlet, it will overwrite the values of those properties. If you just need to add more senders or domains, please follow the example below.
# To add Bypassed Senders:
$x = Get-ContentFilterConfig
$x.BypassedSenders += “jsmith@google.com”, “bhope@yahoo.com”
# To remove Bypassed Senders (can only be done one at a time):
$x = Get-ContentFilterConfig
$x.BypassedSenders -= “jsmith@google.com”
# To empty the list:
Set-ContentFilterConfig -BypassedSenders $null



Recent Comments