Not Equal C && !=C && 不等于西
RSS icon Email icon Home icon
  • Install Linksys Wireless PCI Adapter(WMP54G) Driver for Windows 7 64Bit

    Posted on August 21st, 2011 Sean Add comments

         Seems like linksys doesn’t provide wireless PCI adapter driver for new Windows OS. The only way to install driver for Windows 7 is force to install the driver from the chip company.

    1. Download the driver from Here
    2. Unzip to somewhere. Let’s say “C:\”
    3. Go to “Control Panel” -> “Device Manager”, look for this adapter. Normally it will be shown like “Unknown Network Controller” or something like that
    4. Click this device, select “Update Driver Software”
    5. Select “Browse My Computer for driver software”
    6. Select “Let me pick from a list of device drivers on my computer”
    7. Scroll down to “Network Adapters” and double click. Then click “Have Disk”
    8. In the box that pops up, navigate to “C:\driver_folder”, and select the driver file
    9. Scroll down to “Ralink Technology Corp” in the box on the left side. On the right side, select “802.11b/g Wireless Adapter.” (Here I have tried select “Linksys” on the left, and “Linksys Wireless Adapter” on the right. It also works! Just choose whatever you want)
    10. Click YES on the warning window (if you see it)
    11. Done! (Sometimes the device still might not be working, try to right click the device and uninstall the driver, but DO NOT check “Delete the driver software for this device”, and restart the computer. Then Windows will help you install the driver again)
  • 1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
    Loading...Loading...
    1,016 views
  • How to Change the Frequency of Windows Internet Time Synchronisation

    Posted on September 28th, 2010 Sean 2 comments
    1. Run command “regedit” to open Windows Registry
    2. Navigate to “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpClient “
    3. Find key “SpecialPollInterval”
    4. Change the value to what you want in seconds. e.g. 3600 (1 hour)
  • 1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
    Loading...Loading...
    635 views
  • Install Self-signed SSL with IIS 6.0

    Posted on September 23rd, 2010 Sean Add comments

         The IIS 6.0 resource kit is provided by Microsoft for installing a self-signed testing certificate into IIS. To install it, do follow:

    1. Download IIS 6.0 resource kit tools from Here
    2. Install the resource kit, but only for Windows Server 2003 or Windows XP
    3. Go to Start Menu -> All Progrem -> IIS resource -> SelfSSL, click “SelfSSL”
    4. In the pop-up command prompt, type “selfssl” to run the program
    5. Type “Y” to apply the setting to the website in IIS
    6. Test your website by using URL “https://user_website”
  • 1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
    Loading...Loading...
    705 views
  • Fixing “Unable to get the project file from the Web Server”

    Posted on August 24th, 2010 Sean 5 comments

         When trying to open an existing project in Visual Studio 2003, if keep getting a pop up message “Unable to get the project file from the Web Server”:

         Try following to fix the problem:

    1. Check the webinfo file, make sure the “URLPath” is correct.
    2. Recreate the virtual directory for it and restart IIS.
    3. Delete the project cache in “C:Documents and SettingsusernameVSWebCache”
  • 1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
    Loading...Loading...
    991 views
  • Multiple websites in IIS on Windows XP Pro

    Posted on August 17th, 2010 Sean Add comments

         Unlike Windows Server Edition, XP pro does not support multiple websites in IIS. However, we still can use several ways around this.
         First option, just use IIS Admin, a simple program developed by a third-party developer for this purpose. (Download From Here)
         The second option is to use adsutil.vbs, located in the folder “C:\Inetpub\AdminScripts”:

         Where x is replaced by the new numbered site. For example if you run the first command and the highest numbered site is 4, then replace x to 5.

         The third option is to use Metabase Explorer from the IIS 6.0 Resource Kit Tools.Copy the default website (/LM/W3SVC/1/) and then paste it. This will also give you another website, ready to use. (Download From Here)
         Also we can delete the website using adsutil.vbs, Metabase Explorer or ADSI/WMI. To delete a website using adsutil.vbs, write this in a command prompt:

  • 1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
    Loading...Loading...
    606 views