Sunday, November 1, 2009
Dell T410 pictures
This configuration can put in 6 3.5" harddisk
T410 internal: There are 5 PCIe slots and take note that one slot is being used by the SAS card. All slots are PCIe Generation 2 except for slot 3.
Dell T710 pictures
This configuration can put in 8 x 3.5" harddisk
T710 internal
T710 internal: With the cover taken away, you can see the processor and also the memory slots. Processors are E5502. It can support 144GB memory if all the memory slots are fully populate with 8GB RAM.
T710 internal: There are 6 PCIe slots, 4 are x8, 1 is x16 and 1 is x4 and all are PCIe generation 2 which means each lane can support up to 5.0 Gb/s. There is actually one more PCIe slot which is actually being used to plug the SAS card.
Thursday, October 29, 2009
Can't initialize IBM DS4800 LUN under Windows 2003
You create 2 LUNs from IBM and assign it to one Windows host. You have no problem initialize the first LUN but when it comes to second LUN, Windows will prompt message saying "The operation did not complete. Check the System Event Log for more information on the error" and you are unable to initialize.
When you go the Event viewer, the viewer shows "The device....disappeared from the system without first being prepared for removal"
The problem might be because you allocate the LUN to the different controller that you connect to your host as shown in the diagram below.
So to solve this, you can set the Ownership/Preferred Path to Controller in Slot A. Take note that if you only have one LUN and you allocate to controller that is not connected to your host. You might not even see the LUN from your host at all.
Friday, October 2, 2009
Set note pages slide image and notes image to standard size
To overcome this, i prepare the VBA script below. Not sure if there is a non-VBA method that can be used to solve this, but if yes, please let me know also.
Sub resize()
Dim x As Long
Dim y As Long
Dim i As Long
Dim arrayCount As Integer
Dim shapeNameArray() As String
' Loop through every presentation slide(s)
For x = 1 To ActivePresentation.Slides.Count
' Manipulate shapes in notespage view
With ActivePresentation.Slides(x).NotesPage
' Loop through every shapes in the notepage view slide
For y = 1 To .Shapes.Count
' To select the presentation slide
' Usually the presentation slide will be on top,
' so use top property to limit the selection
' the use of height property is optional
' the use of this is mainly to filter away shapes like
' header, footer and page number
' which might be in place, and usually those shapes' height will not
' be higher than 90, so i use this as the condition
' The reason i say is optional is because you can always go to
' Edit Header and Footer to take out
' all header, footer and page number
' and reapply them later
' 1 inchi= 72
If .Shapes(y).Top < 100 And .Shapes(y).Height > 90 Then
.Shapes(y).Height = 364.32
.Shapes(y).Width = 486
.Shapes(y).Top = 28.08
.Shapes(y).Left = 46.8
' To select the notes page
' Usually notes page will be be below presentation slide
' so use top property to limit the selection
' Again use of height is optional
ElseIf .Shapes(y).Height > 90 And .Shapes(y).Top > 100 Then
.Shapes(y).Height = 322.56
.Shapes(y).Width = 486
.Shapes(y).Top = 404.64
.Shapes(y).Left = 46.8
Else
' Do nothing
' or you want to apply something to the filtered shape here
End If
Next y
End With
Next x
End Sub
To use this code, you must first enable macro if you have not donw so and then open the VBA editor, follow this link to find out how to do it. Remember, always make a copy of your power point slide before you applying any changes to it. This code is only tested on PowerPoint 2007.
Wednesday, September 16, 2009
Revised script for IP range ping
'Create a file to write the result
'============================================================
FileName = "PingResult.txt"
Set fso = CreateObject("Scripting.FileSystemObject")
If (fso.FileExists(FileName)) Then
Set resultFile = fso.OpenTextFile(FileName, 8)
else
Set resultFile = fso.CreateTextFile(FileName, true)
end if
subnetID = "192.168.35."
For range = 2 to 254 ' specify range of ip
ipAddress = subnetID & range
if Ping(ipAddress) then
resultFile.writeline ipAddress & " is alive"
else
resultFile.writeline ipAddress & " is dead"
end if
next
'Using Win32_PingStatus class
'============================================================
Function Ping(ipAddress)
Set objWMIService = _
GetObject("winmgmts:\\.\root\cimv2")
Set colItems = objWMIService.ExecQuery _
("Select * from Win32_PingStatus " & _
"Where Address = '" & ipAddress & "'")
For Each objItem in colItems
If objItem.StatusCode = 0 Then
Ping = True
else
Ping = False
End If
Next
End Function
Sunday, August 23, 2009
Screen capture program to capture mouse pointer
How to connect to hidden accesspoint on Windows Vista
2. On the "Select a network to connect to" window, click on "Setup a connection or network".
3. On the "Choose a connection option", select "Manually connect to a wireless network".
Wednesday, August 19, 2009
Where to download Brocade/Cisco firmware?
Thursday, August 6, 2009
Task Scheduler - problem running the vbs
Tuesday, July 28, 2009
Nokia E71 - How to type underscore "_"
Wednesday, July 22, 2009
Script for event log backup
'Get the current date and time
CurrentDate = now
sAcceptableChars = "abcdefghijklmnopqrstuvwxyz0123456789"
'Remove "/", ":", " " from CurrentDate and put it
'in FixDate
For x = 1 to Len(CurrentDate)
ch = mid(CurrentDate, x, 1)
If InStr(sAcceptableChars, LCase(ch)) > 0 Then
FixDate = FixDate & ch
End If
Next
Set wshShell = WScript.CreateObject ("WSCript.shell")
'Start to do event log backup
wshshell.run "C:\Windows\System32\wevtutil cl _
Application /bu:E:\AppEvent_" & FixDate & ".evt", 1, True
wshshell.run "C:\Windows\System32\wevtutil cl Security _
/bu:E:\SecurityEvent_" & FixDate & ".evt", 1, True
wshshell.run "C:\Windows\System32\wevtutil cl Setup _
/bu:E:\SetupEvent_" & FixDate & ".evt", 1, True
wshshell.run "C:\Windows\System32\wevtutil cl System _
/bu:E:\SystemEvent_" & FixDate & ".evt", 1, True
set wshshell = nothing
Monday, July 13, 2009
How to move your shape data text box in Visio 2007
Wednesday, June 17, 2009
Free Upgrade to QuickOffice 6 for Nokia E71
Monday, June 15, 2009
Nokia E72 Spotted
I won't really upgrade my E71 any time sooner but this really make me drooling for it. Gotta resist my temptation on this one and ask myself to go for the model after E72. :p
Notes: Is official, the detail spec is here.
Sunday, June 14, 2009
Problem Ejecting USB Mass Storage Device
Wednesday, June 10, 2009
Setup FTP server on Windows 2003 Server
1. Go to Add or Remove Programs and choose Add/Remove Windows Components
2. Under Windows Components Wizard, highlight Application Server and click Details.
3. Under Application Server, highlight Internet Information Services (IIS) and click Details
4. Under Internet Information Services (IIS), select File Transfer Protocol (FTP) Service and click OK.
5. You will be prompted to insert the Windows installation disc.
6. And that's it, you will be able to access Internet Information Services (IIS) Manager to further configure your ftp server.
Thursday, May 28, 2009
SkyFire is version 1.0 now
Get it here
Sunday, March 15, 2009
usb print server
So what left for me to configure is just host configuration, meaning the configuration on your PC that you want it to print through print server. Below are the steps taken to configure a Windows Vista system.
1. Go to Control Panel -> Printer
2. Click on Add a printer
3. From the Add Printer windows, choose Add a local printer
5. Next, select Device type as TCP/IP Device and also input the IP address for the print server, in this case, 192.168.1.200, the default.
6. The next windows shows the system is try to detect the TCP/IP port. This process might take a while.
7. Next windows ask for additional port information. In this windows, under device type, select Custom and click on the Settings button.
8. in this new windows, slect LPR as the protocol we going to use. For Queue Name under LPR Settings, type lpt1.
9. Next windows should ask you to install printer driver. Select the printer from the manufacturer printer list. If your printer is not in the list, you might need to click Have Disk to install the printer driver. In my case, the printer driver is already installed when i first purchase the printer.
10. Next step will ask you to enter printer name, you can also use the default name generated. If everything goes well, you should be able to see the last windows on sayaing you have successfully added the printer. you can choose to print the test page to confirm everything is ok.
Friday, February 20, 2009
scansnap s300
Video showing scanning 16 pages (duplex) of colour document when this scanner is powered by usb
Video showing scanning 16 pages (duplex) of colour document when this scanner is powered by wall socket. Is extremely fast in this setup.
Friday, February 13, 2009
Nokia E71 - Removing Failed
Possible solution:
- Take out your micro-sd card and read the card through PC.
- Make sure you enable show hidden files and folders option.
- Go to private folder, search all the random number named folder and once you find the application file(s), delete the folder contain the file(s).
Thursday, February 12, 2009
Why deleted folder keep appearing?
Friday, February 6, 2009
Missing Microsoft RDP Client Control
Symptom:
When try to use IE7 to initiate a terminal service connection, you find that it won't work and you see a little pop-up message saying Add-ons disabled.
When you go to Manage Add-ons, you find no Add-ons are disabled and you also cannot see the Microsoft RDP Client Control Add-on.
Solution:
Go to Internet Option and go to Advanced tab, click on the Reset button to reset Internet Explorer settings. Restart the Internet Explorer and retry again and this time it should work.