Self Signing SSL for IIS 
1. Download selfssl.exe (Here)
2. Go to Dos console
3. Go to where you put selfssl.exe
4. type selfssl /?
5. Check your website ID, default is 1, that is the first web
4. Check the ID for you web, first one is 1 and second is 2 , and so no
5.run "selfssl.exe /N:CN=WH-STB5 /K:1024 /V:7 /S:1 /P:443", after /s is the WEB ID,
6. Done

[ add comment ]   |  permalink  |  related link  |   ( 3 / 2350 )
Pidgin - 跨平台的即時通訊客戶端 


Pidgin(前稱Gaim)是一個跨平台的即時通訊客戶端,使用GNU通用公共許可證發佈。這款軟體支援多個現時常用的即時通訊協定,讓用戶可以用同一個軟體登入不同的即時通訊服務。

You can talk to your friends using AIM, ICQ, Jabber/XMPP, MSN Messenger, Yahoo!, Bonjour, Gadu-Gadu, IRC, Novell GroupWise Messenger, QQ, Lotus Sametime, SILC, SIMPLE, MySpaceIM, and Zephyr.

Pidgin 中文版
Pidgin (Gaim) 在安装时是有中文选项的,如果不慎安装为英文版,可以按此方法更改为中文版:
打开注册表编辑器,找到 HKEY_CURRENT_USER\Software\pidgin 项,改 Installer Language 数值为 2052 即可。



http://www.pidgin.im/download/windows/

[ add comment ]   |  permalink  |  related link  |   ( 3 / 6151 )
Changing ASP.net Temporary Files Folder 
Please note that ASP.net create a compile version of the site and stores it in its default temporary ASP.net folder. This is usually %Windows Install Folder%\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files (For ASP.Net 2.0). This folder can grow very fast in case web server has large ASP.net sites hosted on that server. Fortunately, ASP.net provides a simple way to change this location. This is stored in the web.config file and can defined in the Global web.config (placed at %Windows Install Folder%Microsoft.NET\Framework\v2.0.50727\CONFIG). To change this path add the new full folder path in the Compilation section of the configuration file. Here is a sample of how this looks like (this must be under System.Web section):

<compilation tempDirectory=“E:\ASP.Net Temporary Folder\” debug=“false“>

One can find the documentation of all different sections of ASP.net configuration file at:
http://msdn2.microsoft.com/en-us/library/b5ysx397(VS.71).aspx

In case when Internet is not available, or you just need a quick reference, there is also a small helpful file in the configuration folder. This file is named “web.config.comments” and is in the CONFIG folder of the ASP.net framework folder.



[ add comment ]   |  permalink  |  related link  |   ( 3 / 792 )
App-Domain could not be created. Error: 0x80131902 
"Failed to execute request because the App-Domain could not be created. Error: 0x80131902"

Basically, this happens on first time 2.0 runs sometimes, not sure why, but the following seems to fix the problem. My suspicions and research lead me to believe it has to do with web servies referenced. To fix it, try the following....

1. With a command window, get to the latest version of .net under
2. C:\Windows\Microsoft.Net\Framework\
3. Now run the following command: "net stop w3svc" to stop web services.
4. Then use "aspnet_regiis.exe -ua" to uninstall all instances of ASP.NET from IIS.
5. Follow with "aspnet_regiis.exe -i" to install ASP.NET into IIS.
6. Now restart web services with "net start w3svc".

[ add comment ]   |  permalink  |  related link  |   ( 3 / 9067 )
IIS: Creating Multiple Web Sites within IIS on (2000 and XP Pro) 
In the server versions of Windows, you can have multiple versions of web sites installed into IIS and running simultaneously. You can install and run more than one web site within IIS in the professional version of Windows XP or Windows 2000. You just have to pull a trick to modify the IIS metabase to that it is aware of the additional sites. The user interface does not support creating more than one web site. Also, you still will not be able to have more than one site running at the same time.

To create the second web site:

* Create a command prompt window.
* Type "cd \Inetpub\Adminscripts" and press enter.
* Find out what the highest numbered site you currently have is. You can do that by typing

adsutil.vbs ENUM /P W3SVC

If you have never done this process before, the highest numbered site should be 1.
* Add one to the highest numbered site. Then run this command:

adsutil.vbs COPY W3SVC/1 W3SVC/x

Where x is replaced by the new numbered site. For example if you run the enum command and the highest numbered site is 4, then type this:

adsutil.vbs COPY W3SVC/1 W3SVC/5

* Run the IIS Manager. You should find a new site has been created. It will be an exact copy of site #1, so you will need to change a few things. Go into the properties for the web site. Change the site name, and the virtual directory for the root of the web site to point to another location on the hard disk. Usually, you will create a new subdirectory under Inetpub and point the virtual directory at that.
* To use the site, you must first stop the currently running site, then start the new site.

To delete a site, first stop it if it is running (bad things happen if you don't!). Then type:

adsutil.vbs DELETE W3SVC/x

Where x is the number of the site you want to delete.

You can find the number for an existing web site in IIS Manager by enabling logging and examining the logging properties. The web site number is at the bottom of the dialog.

[ add comment ]   |  permalink  |  related link  |   ( 3 / 8229 )

BackBack NextNext