2010年3月31日 星期三

填縫劑修補牆身裂痕

日本製造的「朝日生活多功能防水修補劑」,重 250g,售 68元,凝固時間約 10小時,產品配有尖形樽口設計,另備有配件適用於窄縫位。



http://www.j-style.com.hk/cn/order.htm


子丑寅卯辰巳午未申酉戌亥

子丑寅卯辰巳午未申酉戌亥


甲乙丙丁戊己庚辛壬癸


乾三連,坤六斷;


震仰盂,艮覆碗;


離中虛,坎中滿;


兌上缺,巽下斷。


巽 離 坤


震 兌


艮 坎 乾


Telnet services setup

Telnet服?的配置步?如下:


一、安?telnet?件包(通常要??)


1、 telnet-client (或 telnet),???件包提供的是 telnet 客?端程序;


2、 telnet-server ,???件包提供的是 telnet 服?器端程序;


安?之前先??是否?些?件包已安?,方法如下:


[root@wljs root]#rpm -q telnet或[root@wljs root]#rpm -q telnet-client


[root@wljs root]#rpm -q telnet-server


如果?有??到?件包,需要?行安?,red hat linux 9默?已安?了telnet?件包,一般只要安?telnet-server?件包。


1、在red hat linux 9的安??中?取telnet-server-0.17-25.i386.rpm?件包。


2、安??件包


[root@wljs root]#rpm -i telnet-server-0.17-25.i386.rpm


二、??telnet服?


1、??服?


方法一:使用ntsysv,在出?的窗口之中,? telnet前面*加上,然后按下 OK 。


方法二:?? /etc/xinetd.d/telnet


[root@wljs root]# vi /etc/xinetd.d/telnet


找到 disable = yes ? yes 改成 no 。


2、激活服?


[root@wljs root]# service xinetd restart


三、??服?


[root@wljs root]#telnet ip(或者hostname)


如果配置正确,系?提示?入?程机器的用?名和密?


Login:


Password:


注:默?只允?普通用?


四、?置telnet端口


#vi /etc/services


?入??模式后查找telnet(vi??方式下?入/telnet)


?找到如下?容:


telnet 23/tcp


telnet 23/udp


?23修改成未使用的端口?(如:2000),退出vi,重?telnet服?,telnet默?端口?就被修改了。


五、Telnet服?限制


telnet是明文?送口令和?据的,如果你?其默?的?置不?意,有必要?其服?范??行限制。假?你的主机的ip是210.45.160.17,就可以按如下方式?置了,^_^!


#vi /etc/xinetd.d/telnet


service telnet


{


disable = no #激活 telnet 服?,no


bind = 210.45.160.17 #your ip


only_from = 210.45.0.0/16 #只允? 210.45.0.0 ~ 210.45.255.255 ??网段?入


only_from = .edu.cn #只有教育网才能?入!


no_access = 210.45.160.{115,116} #???ip不可登?


access_times= 8:00-12:00 20:00-23:59 # 每天只有?????段?放服?


......


}


六、Telnet root用?的登入


telnet 不是很安全,默?的情?之下不允? root 以 telnet ?入 Linux 主机 。若要允?root用?登入,可用下列方法:


[root @wljs /root]# vi /etc/pam.d/login


#auth required pam_securetty.so #??一行加上注?!



[root@wljs root]# mv /etc/securetty /etc/securetty.bak


??, root 就可以直接?入 Linux 主机了。不?,建?不要??做。也可以在普通用??入后,切?到root用?,?有root的?限。

Configuring Telnet/FTP to login as root (Linux)

Configuring Telnet/FTP to login as root (Linux)


by Jeff Hunter, Sr. Database Administrator


---------------------------


Red Hat Enterprise Linux: RHEL3 / RHEL4


Red Hat (Fedora Core 1 / Core 2)


Red Hat (Release 7.x - 8.x)


----------------------


Red Hat Enterprise Linux: RHEL3 / RHEL4


Enabling Telnet and FTP Services


Linux is configured to run the Telnet and FTP server, but by default, these services are not enabled. To enable the telnet service, login to the server as the root user account and run the following commands:


# chkconfig telnet on


# service xinetd reload


Reloading configuration: [ OK ]


Starting with the Red Hat Enterprise Linux 3.0 release (and in CentOS Enterprise Linux), the FTP server (wu-ftpd) is no longer available with xinetd. It has been replaced with vsftp and can be started from /etc/init.d/vsftpd as in the following:


# /etc/init.d/vsftpd start


Starting vsftpd for vsftpd: [ OK ]


If you want the vsftpd service to start and stop when recycling (rebooting) the machine, you can create the following symbolic links:


# ln -s /etc/init.d/vsftpd /etc/rc3.d/S56vsftpd


# ln -s /etc/init.d/vsftpd /etc/rc4.d/S56vsftpd


# ln -s /etc/init.d/vsftpd /etc/rc5.d/S56vsftpd


Allowing Root Logins to Telnet and FTP Services


Now before getting into the details of how to configure Red Hat Linux for root logins, keep in mind that this is VERY BAD security. Make sure that you NEVER configure your production servers for this type of login.


Configure Telnet for root logins


Simply edit the file /etc/securetty and add the following to the end of the file:


pts/0


pts/1


pts/2


pts/3


pts/4


pts/5


pts/6


pts/7


pts/8


pts/9


This will allow up to 10 telnet sessions to the server as root.


Configure FTP for root logins


Edit the files /etc/vsftpd.ftpusers and /etc/vsftpd.user_list and remove the 'root' line from each file.


---------------------------


Red Hat (Fedora Core 1 / Core 2)


Enabling Telnet and FTP Services


Linux is configured to run the Telnet and FTP server, but by default, these services are not enabled. To enable the telnet these service, login to the server as the root userid and edit the files:


/etc/xinetd.d/telnet


In this file, find the line for disable and change it from the value "yes" to "no".


After changing the above value(s), you will need to restart the xinetd deamon. As the root userid, type the following command:


% /etc/init.d/xinetd reload


Starting with the Fedora Core 1 release, the FTP server (wu-ftpd) is no longer available with xinetd. It has been replaced with vsftp and can be started from /etc/init.d/vsftpd as in the following:


# /etc/init.d/vsftpd start


If you want the vsftpd service to start and stop when recycling the machine, you can create the following symbolic links:


# ln -s /etc/init.d/vsftpd /etc/rc3.d/S56vsftpd


# ln -s /etc/init.d/vsftpd /etc/rc4.d/S56vsftpd


# ln -s /etc/init.d/vsftpd /etc/rc5.d/S56vsftpd


Allowing Root Logins to Telnet and FTP Services


Now before getting into the details of how to configure Red Hat Linux for root logins, keep in mind that this is VERY BAD security. Make sure that you NEVER configure your production servers for this type of login.


Configure Telnet for root logins


/etc/securettySimply edit the file and add the following to the end of the file:


pts/0


pts/1


pts/2


pts/3


pts/4


pts/5


pts/6


pts/7


pts/8


pts/9


This will allow up to 10 telnet sessions to the server as root.


Configure FTP for root logins


Edit the files /etc/vsftpd.ftpusers and /etc/vsftpd.user_list and remove the 'root' line from each file.


---------------------------


Red Hat (Release 7.x - 8.x)


Enabling Telnet and FTP Services


Linux is configured to run the Telnet and FTP server, but by default, these services are not enabled. To enable these services, login to the server as the root userid and edit the files:


/etc/xinetd.d/telnet


/etc/xinetd.d/wu-ftpd


In both files, find the line for disable and change it from the value "yes" to "no".


After changing the above values, you will need to restart the xinetd deamon. As the root userid, type the following command:


% /etc/init.d/xinetd reload


Allowing Root Logins to Telnet and FTP Services


Now before getting into the details of how to configure Red Hat Linux for root logins, keep in mind that this is VERY BAD security. Make sure that you NEVER configure your production servers for this type of login.


Configure Telnet for root logins


Simply edit the file /etc/securetty and add the following to the end of the file:


pts/0


pts/1


pts/2


pts/3


pts/4


pts/5


pts/6


pts/7


pts/8


pts/9


This will allow up to 10 telnet sessions to the server as root.


Configure FTP for root logins


First edit the file /etc/ftpaccess and comment out the 'deny-uid' and 'deny-gid' lines.


Also, don't forget to remove the 'root' line from /etc/ftpusers

House

查閱政府的索引圖有冇路可行車


*花園是否有入契


*是否有僭建物


*內部是否有改建


*丁權是否要補地價


一般每層30萬補地價


*屋前是否再起屋


*發展商是否有原居民授權交易


*是否低窪地帶


*去水問題化糞池

Linux Command

[System Services]


/usr/sbin/setup


[check sshd status]


netstat -a | more


tcp 0 0:ssh *:* LISTEN


-----------------------------


[start httpd]


cd /etc/rc.d/init.d/


then type:


./httpd start


[start mysql]


cd /etc/rc.d/init.d/


then type:


./mysqld start


[start telnet]


Edit the file /etc/xinetd.d/telnetd


changing the two lines to:


# default: on


disabled = no


then try doing this


/etc/rc.d/init.d/xinetd restart


[ftp]


Edit the file /etc/xinetd.d/wu-ftpd


changing the two lines to:


# default: on


disabled = no


then run the command


/etc/rc.d/init.d/xinetd restart


------------------------------------------


# chkconfig telnet on


# service xinetd reload


Reloading configuration: [ OK ]


-----------------------------------------


[Configure Telnet for root logins]


#Simply edit the file /etc/securetty and add the following to the end of the file:


pts/0


pts/1


pts/2


pts/3


pts/4


pts/5


pts/6


pts/7


pts/8


pts/9


This will allow up to 10 telnet sessions to the server as root.


-----------------------------------------


??/etc/xinetd.d/telnet


把disable=yes修改?disable=no,


保存退出;


#service xinetd restart


Distributed File System (DFS)

Distributed File System (DFS)


Reply by Luis Colon (GE)


1)What type of data (text, photo, etc) will be stored in DFS?


Photos, Badge Designs, Signatures and Alarm Graphics.


2)What is the usual Data Volume to be synchronize between the three DB through WAN?


Depends on the size of the system. Each transaction (alarm and badge) are roughly 1kb in size. You would have to calculate the expected system activity and proceed from there.


3)What is the recover procedure if any one of the Regional Server down?


It's a manual process. After the Regional is back to full operation, you would have to initiate a manual recovery from the Client Form.


4)What is the mechanism of SP DFS Synchronization?


Standard, Microsoft DFS technology. This is a Windows technology that has nothing to do with SP.


Please provide your clients using SP Global system with DFS configuration.


5)All Global systems in the US and abroad are using DFS, as this is a requirement for the setup.


MS free Sync tool

MS free Sync tool


Microsoft offers free file-synchronization tool


Serdar Yegulalp, Contributor


10.17.2005


Rating: -4.57- (out of 5)





Once upon a time, you could find files in only two places -- either on your computer's hard drive or on a floppy disk. But these days, there's more media than ever: USB flash drives, external FireWire hard disks, packet-written DVD+RWs that mount like removable drives, network shares, cameras and phones that double as removable disks and so on. Synchronizing files between computers and removable devices has become exponentially more difficult. The Briefcase function in Windows covers some of this territory, but it has gone largely unused: Most people find it too unintuitive or don't even know it exists.


Microsoft has come to the rescue with a freeware tool called SyncToy. Written for Windows XP and Windows 2003 and higher (since it uses the .NET framework), SyncToy uses a very simple methodology for keeping any two pairs of folders in sync.


The user defines a pair of folders and the synchronization actions between them that will need to be performed. The program refers to the two folders as the "left" and "right" folders, according to their positions in the program's display. For instance, if you have a removable drive you want to keep synchronized with a folder on your desktop, you can define the removable drive as the left half of the pair and the desktop folder as the right half. The program can then run one of a set of actions against the two folders:


Synchronize: New and updated files are copied in both directions. Anything renamed or deleted on one drive is renamed or deleted on the other. Most people will want to use this option. By default, overwritten files are copied to the Recycle Bin, so they can be recovered if need be.


Echo: New and updated files are copied left to right. Anything renamed or deleted in the left folder is also done in the right folder.


Subscribe: Updated files on the right are copied to the left, provided the left-hand folder has a file with that name.


Contribute: New and updated files are copied left to right. Renames are echoed in that direction, but nothing will be deleted.


Combine: New and updated files are copied in both directions. Nothing is renamed or deleted.


If you're not sure if a particular action will be what you need, you can always click Preview in the folder pair's action page to see what the results of running the selected action will be. There are other copying options that, for instance, let you include or exclude specific subfolders and/or let you decide whether or not you want it to check the contents of files (if they're the same run length) as a criterion for change.


Windows File Syn


Once upon a time, you could find files in only two places -- either on your computer's hard drive or on a floppy disk. But these days, there's more media than ever: USB flash drives, external FireWire hard disks, packet-written DVD+RWs that mount like removable drives, network shares, cameras and phones that double as removable disks and so on. Synchronizing files between computers and removable devices has become exponentially more difficult. The Briefcase function in Windows covers some of this territory, but it has gone largely unused: Most people find it too unintuitive or don't even know it exists.


Microsoft has come to the rescue with a freeware tool called SyncToy. Written for Windows XP and Windows 2003 and higher (since it uses the .NET framework), SyncToy uses a very simple methodology for keeping any two pairs of folders in sync.


The user defines a pair of folders and the synchronization actions between them that will need to be performed. The program refers to the two folders as the "left" and "right" folders, according to their positions in the program's display. For instance, if you have a removable drive you want to keep synchronized with a folder on your desktop, you can define the removable drive as the left half of the pair and the desktop folder as the right half. The program can then run one of a set of actions against the two folders:


Synchronize: New and updated files are copied in both directions. Anything renamed or deleted on one drive is renamed or deleted on the other. Most people will want to use this option. By default, overwritten files are copied to the Recycle Bin, so they can be recovered if need be.


Echo: New and updated files are copied left to right. Anything renamed or deleted in the left folder is also done in the right folder.


Subscribe: Updated files on the right are copied to the left, provided the left-hand folder has a file with that name.


Contribute: New and updated files are copied left to right. Renames are echoed in that direction, but nothing will be deleted.


Combine: New and updated files are copied in both directions. Nothing is renamed or deleted.


If you're not sure if a particular action will be what you need, you can always click Preview in the folder pair's action page to see what the results of running the selected action will be. There are other copying options that, for instance, let you include or exclude specific subfolders and/or let you decide whether or not you want it to check the contents of files (if they're the same run length) as a criterion for change.


Synchronize: New and updated files are copied in both directions. Anything renamed or deleted on one drive is renamed or deleted on the other. Most people will want to use this option. By default, overwritten files are copied to the Recycle Bin, so they can be recovered if need be.


Echo: New and updated files are copied left to right. Anything renamed or deleted in the left folder is also done in the right folder.


Subscribe: Updated files on the right are copied to the left, provided the left-hand folder has a file with that name.


Contribute: New and updated files are copied left to right. Renames are echoed in that direction, but nothing will be deleted.


Combine: New and updated files are copied in both directions. Nothing is renamed or deleted.


Pocket Software

Pocket Software


Adobe Reader for Pocket PC 2.0


Cai System cLaunch


Choung Networks HandNotes


HP Image Transfer


HP iPAQ Info


PDAmill GameBox Classics


PDAmill GameBox Gems


PHM Registry Editor


SBSH.net ContactBreeze


Softtrends Live PVR 2.70


Soyong TY-Dictionary-Pro


Spb Pocket Plus


Tillanosoft PocketNotepad

windows line command

windows line command


[教學] 工作列→開始→執行→輸入的指令真的很好用喔


--------------------------------------------------------------------------------


gpedit.msc-----群組原則


sndrec32-------錄音機


nslookup-------IP位址偵測器


explorer-------開啟檔案總管


logoff---------登出指令


tsshutdn-------60秒倒計時關機指令


lusrmgr.msc----本地機用戶和組


services.msc---本機服務設定


oobe/msoobe /a----檢查XP是否啟動


notepad--------開啟記事本


cleanmgr-------磁碟垃圾整理


net start messenger----開始信使服務


compmgmt.msc---電腦管理


net stop messenger-----停止信使服務


vconf-----------啟動


dvdplay--------DVD播放器


charmap--------啟動字元對應表


Kdiskmgmt.msc---磁牒管理實用程序


calc-----------啟動電子計算器


dfrg.msc-------磁碟重組工具


chkdsk.exe-----Chkdsk磁牒檢查


devmgmt.msc--- 裝置管理員


bFdrwtsn32------ 系統醫生 <br />


srononce -p ----15秒關機 <br />


dxdiag---------檢查DirectX資訊


regedt32-------註冊表編輯器


YMsconfig.exe---系統配置實用程序


rsop.msc-------群組原則結果集


mem.exe--------顯示記憶體使用情況


regedit.exe----註冊表


winchat--------XP自帶區域網路聊天


progman--------程序管理器


winmsd---------系統資訊


perfmon.msc----電腦效能監測程序


winver---------檢查Windows版本


sfc /scannow-----掃瞄錯誤並復原


taskmgr-----工作管理器(2000/xp/2003)


eventvwr.msc------------事件檢視器


secpol.msc----------------本機安全性設定


rsop.msc------------------原則的結果集


ntbackup----------------啟動制作備份還原嚮導


mstsc-----------遠端桌面


winver---------檢查Windows版本


wmimgmt.msc----開啟windows管理體系結構(WMI)


wupdmgr--------windows更新程序


wscript--------windows指令碼宿主設定


write----------寫字板


winmsd---------系統資訊


wiaacmgr-------掃瞄儀和照相機嚮導


winchat--------XP原有的區域網路聊天


mem.exe--------顯示記憶體使用情況


sconfig.exe---系統配置實用程序


mplayer2-------簡易widnows media player


mspaint--------畫圖板


mstsc----------遠端桌面連接


mplayer2-------媒體播放機


magnify--------放大鏡實用程序


mmc------------開啟控制台


mobsync--------同步指令


dxdiag---------檢查DirectX資訊


drwtsn32------ 系統醫生


devmgmt.msc--- 裝置管理員


dfrg.msc-------磁碟重組程式


diskmgmt.msc---磁牒管理實用程序


dcomcnfg-------開啟系統元件服務


ddeshare-------開啟DDE共享設定


dvdplay--------DVD播放器


net stop messenger-----停止信使服務


net start messenger----開始信使服務


notepad--------開啟記事本


nslookup-------網路管理的工具嚮導


ntbackup-------系統制作備份和還原


narrator-------螢幕「講述人」


ntmsmgr.msc----移動存儲管理器


ntmsoprq.msc---移動存儲管理員操作請求


netstat -an----(TC)指令檢查連接


Usyncapp--------新增一個公文包


sysedit--------系統配置編輯器


sigverif-------文件簽名驗證程序


psndrec32-------錄音機


shrpubw--------新增共用資料夾


secpol.msc-----本機安全原則


syskey---------系統加密,一旦加密就不能解開,保護windows xp系統的雙重密碼


services.msc---本機服務設定


Sndvol32-------音量控制程序


sfc.exe--------系統檔案檢查器


sfc /scannow---windows文件保護


tsshutdn-------60秒倒計時關機指令


tourstart------xp簡介


taskmgr--------工作管理器


eventvwr-------事件檢視器


eudcedit-------造字程序


explorer-------開啟檔案總管


lpackager-------對像包裝程序


perfmon.msc----電腦效能監測程序


progman--------程序管理器


regedit.exe----註冊表


rsop.msc-------群組原則結果集


rononce -p ----15秒關機


regsvr32 /u *.dll----停止dll文件執行


regsvr32 /u zipfldr.dll------取消ZIP支持


cmd.exe--------CMD命令提示字元


chkdsk.exe-----Chkdsk磁牒檢查


A2V9]</span>certmgr.msc----證書管理實用程序


calc-----------啟動計算器


charmap--------啟動字元對應表


cliconfg-------SQL SERVER 客戶端網路實用程序


Clipbrd--------剪貼板檢視器


conf-----------啟動netmeeting


compmgmt.msc---電腦管理


ciadv.msc------索引服務程序


osk------------開啟螢幕小鍵盤


odbcad32-------ODBC資料來源管理器


oobe/msoobe /a----檢查XP是否啟動


lusrmgr.msc----本地機用戶和組


iexpress-------木馬元件服務工具,系統原有的


fsmgmt.msc-----共用資料夾管理器


utilman--------協助工具管理器

止痛藥物

止痛藥物1


藥物治療主要目的是紓緩痛楚,改善關節功能和避免惡化。骨性關節炎患者求醫,主要是希望紓緩痛楚。


止痛藥


通常開始時會先試用簡單的止痛藥,如撲熱息痛(Paracetamol)。化合止痛藥如coproxamol, cocodamal 及 codyrmol可能有效。這些藥混合了撲熱息痛和可待因(一種強力的止痛藥),需由醫生處方。


如果痛楚的關節同時發炎,你可以服用非類固醇抗炎藥,如異丁苯乙酸(Ibuprofen)。所有非類固醇抗炎藥都有止痛和消炎的作用,能紓緩痛楚、僵硬及腫脹。這些藥物廣泛使用於骨性關節炎,對某些人有很大幫助。不過也給腸胃帶來副作用,如消化不良和腹瀉,長期使用更可能會引致胃出血。此外,這類藥物亦可能會令有哮喘的患者哮喘發作。


非類固醇抗炎藥藥膏


含有非類固醇抗炎藥的藥膏和喱膏對病情有幫助,並且不會給腸胃帶來副作用。


COX-2抑制劑


這是一種較新的藥,和非類固醇抗炎藥相似,但對腸胃的副作用較少。這種藥包括refecoxib(Vioxx)和celecoxib(celebrex)。


類固醇注射劑


類固醇注射劑通常注入膝部或脊柱,能有效減輕由骨性關節炎引起的痛楚和腫脹。治療通常只用於一些非常痛楚的關節,效用只能維持一至四個星期,所以需要多次注射。另一種注射劑名為「玻尿酸」,注入膝蓋部分,能減輕痛楚一至六個月。


止痛藥物2

止痛藥物2


學名: Tramadol Capsule 50mg (Stada)


商品名稱: Tramadol


生商: Stada


學名: Tramadol (曲馬朵)


藥理與效用(therapeutics and indications):


Tramadol(曲馬朵)為嗎啡類 止痛劑 (Opioid analgesics),作用於中樞神經系統以達致鎮痛作用。 一般用於中度至嚴重的痛症。


常見副作用 (common side-effects):


口乾、皮膚發癢、全身無力、便秘、流汗增加、噁心、嗜睡、嘔吐、頭痛目眩等。


注意事項 (cautions):


此藥可產生嗜睡及頭暈目眩的副作用,故駕駛或操作機械時應特別小心謹慎。酒精可增加此藥的副作用(如眩暈、嗜睡、影響反應能力),因此在服用此藥時應該避免喝酒。此藥可產生口乾的現象,服藥者可含一塊冰塊或糖果於口內以緩和口乾情況。 長期服用可能會產生輕微依賴性。


相互作用 (interaction with drugs):


酒精、麻醉劑 (ananesthetics)、安眠藥 (hypnotics)、鎮靜劑 (sedative)、三環類抗抑鬱劑 (TCA) 等可增加此藥引致的副作用(包括中樞神經抑制及引發癲癇等),故須小心併用。


Pharmadol 有效成分為 Tramadol, 為嗎啡類止痛劑,作用於中樞神經系統以達致鎮痛作用,一般用於中度至嚴重的痛症.


Paracetamol 就是我們所熟悉的Panadol,常用於一般輕微至中度的痛症及退燒用


Pharmadol常見副作用:


口乾、皮膚發癢、全身無力、便秘、流汗增加、噁心、嗜睡、嘔吐、頭痛目眩等。


Paracetamol 常見副作用:


常見副作用: 噁心、嘔吐。


Pharmadol為嗎啡類止痛劑, 藥力較Pharmadol強


Paracetamol係學名(Generic Name), Panadol係牌子名(Brand Name).


- 學名(Generic Name)係官方認可非專利名稱, 所有製造商均於銷售時使用.


- 牌子名(Brand Name)係專利名稱, 擁有該專利權的製造商才可於鋪售時使用該牌子名(其他藥廠的Paracetamol要用第二個牌子名, 唔可以叫必理痛, 其他牌子例如有&quot;克痛&quot;(成份都係paracetamol))


Paracetamol可以當Panadol 500mg食, 但要留意, 成人每24小時不可服用多於4000mg(相等於8粒Panadol 500mg), 小童唔可以食多過4粒 Panadol 500mg, 因為overdose有機會會傷肝同腎的.


2010年3月30日 星期二

Windows XP Auto login

重要 :這個章節、方法或工作包含的步驟會告訴您要如何修改登錄。然而,如果登錄修改錯誤,可能會發生嚴重的問題。因此,請確定小心執行下列步驟。為加強保護,修 改登錄之前,請務必將它備份起來。如果發生問題,您就可以還原登錄。如需有關如何備份和還原登錄的詳細資訊,請按一下下面的文件編號,檢視 「Microsoft 知識庫」中的文件:
322756 (http://support.microsoft.com/kb/322756/ ) 如何在 Windows 中備份及還原登錄
如果您將電腦設定為自動登入,能夠實際使用電腦的任何 人,也能夠獲得此電腦上所有內容的存取權,包括這部電腦所連線的網路。此外,如果您開啟自動登入,密碼會以純文字儲存於登錄中。儲存這個數值的特定登錄機 碼,可由遠端 Authenticated Users 群組讀取。因此,只有當電腦受到實體的安全保護,而且您確定所有不受信任的使用者均無法在遠端讀取登錄時,才使用這個設定。
您可以使用 「登錄編輯程式」新增您的登入資訊。如果要執行這項操作,請依照下列步驟執行:
1. 按一下 [開始],再按一下 [執行],輸入 regedit,然 後按一下 [確定]。
2. 找出下列登錄機碼:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
3. 使用您的帳戶名稱及密碼,按兩下 [DefaultUserName] 項目,輸入您的使用者名稱,再按一下 [確定]。
4. 按兩下 [DefaultPassword] 項目,在 [數值資料] 方塊下方輸入您的密碼,再按一下 [確定]。
如果沒有 [DefaultPassword] 值,請建立該值。如果要執行這項操作,請依照下列步驟執行:
1. 在「登錄編輯程式」中,按一下 [編輯], 按一下 [新增],再按一下 [字串 值]。
2. 鍵入 DefaultPassword 作為數值名稱,再按下 ENTER。
3. 按兩下新建立的機碼,然後在 [數 值資料] 方塊中輸入您的密碼。
如果沒有指定 DefaultPassword 字串,Windows XP 會自動變更 AutoAdminLogon 登錄機碼的值,從 1 (真) 改成 0 (偽) 以關閉 AutoAdminLogon 功能。
5. 按兩下 [AutoAdminLogon] 項目,在 [數值資料] 方塊中輸入 1,再按一下 [確定]。
如果沒有 AutoAdminLogon 項目,請建立該項目。如果要執行這項操作,請依照下列步驟執行:
1. 在「登錄編輯程式」中,按一下 [編輯], 按一下 [新增],再按一下 [字串 值]。
2. 鍵入 AutoAdminLogon 作為數值名稱,再按下 ENTER。
3. 按兩下新建立的機碼,然後在 [數 值資料] 方塊中輸入 1。
6. 結 束 [登錄編輯程式]。
7. 按一下 [開始],按一下 [重新開機],再按一下 [確定]。
電 腦重新開機而且 Windows XP 啟動之後,您就可以自動登入。
如果您想略過自動登入,而要以另一個使用者身分登入系統,請在登出 之後或者 Windows XP 重新啟動之後,按住 SHIFT 鍵。請注意,此程序只適用於第一次登入。如果要在未來的登出情況強制套用這項設定,系統管理員必須設定下列登錄機碼:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
數值:ForceAutoLogon
類型:REG_SZ
資料:1
您也可以在未加入網域的 Microsoft Windows XP Home Edition 與 Microsoft Windows XP Professional 電腦上,不需編輯登錄就可開啟自動登入功能。如果要執行這項操作,請依照下列步驟執行:
1. 按一下 [開始],再按一下 [執行]。
2. 在 [開啟] 方塊中,輸入 control userpasswords2,再按一下 [確定]。
注意 當使用者嘗試在 Windows XP Home Edition 的 [使用者帳戶] 視窗中顯示說明資訊時,並不會顯示說明資訊。此外,使用者會收到下列錯誤訊息:
找不到 Drive:\Windows\System32\users.hlp 說明檔,檢查以查看檔案是否在硬碟機上。如果檔案不存在,您必須重新安裝它。
3. 請清除 [必須輸入使用者名稱和密碼,才能使用這台電腦] 核取方塊,再按一下 [套用]。
4. 在 [自動登入] 視窗的 [密碼] 方塊中輸入密碼,然後在 [確認密碼] 方塊中重新輸入密碼。
5. 按 一下 [確定] 關閉 [自動登入] 視窗,然後按一下 [確定] 關閉 [使 用者帳戶] 視窗。

遠端桌面連線 (RDC)

http://search.microsoft.com/results.aspx?mkt=zh-TW&setlang=zh-TW&q=mstsc%206.0
當您使用遠端桌面連線 (RDC) 用戶端從遠端連線到伺服器系統管理用途,本文將告訴 Windows Server 2003] 和 [Windows Server 2008] 或 [Windows Server 2008 R2 之間的差異。
在 Windows Server 2008 和 Windows Server 2008 R2 的遠端系統管理的變更
Windows Server 2003 中您可以使用 / 主控台 參數從遠端連接到實體的主控台工作階段在伺服器 (又稱做的工作階段 0) 來啟動 RDC 用戶端 (Mstsc.exe)。在 Windows Server 2008] 或 [Windows Server 2008 R2 / 主控台 參數已被取代。如需詳細資訊請參閱該 「 為什麼不再需要透過 / console 參數 」 一節。在 Windows Server 2008 和 Windows Server 2008 R2,工作階段 0 是一個非互動式活動保留的服務。
您可以使用新 / admin 切換至從遠端連線到 Windows Server 2008 伺服器系統管理用途。/ admin 在 RDC 6.1 引入參數。RDC 6.1 會包含在下列作業系統:
* Windows Server 2008
* Windows Server 2008 R2
* Windows Vista Service Pack 1 (SP1)
* Windows XP Service Pack 3 (SP3)
附註 RDC 6.1 (6.0.6001) 支援遠端桌面通訊協定 (RDP) 6.1。
RDC 6.1 不支援 / 主控台 參數。不過,為符合回溯相容性您可以使用 / admin 切換至連接到 Windows Server 2003 為基礎的伺服器上的實體的主控台工作階段。比方說連接從 Windows Vista SP1 基礎 Windows Server 2003 為主伺服器,執行 mstsc.exe /admin 命令的實體的主控台工作階段的用戶端。
如果嘗試使用 / 主控台 參數一起使用 RDC 6.1 用戶端行為是,如下所示。
摺疊此表格展開此表格
案例 行為
您,請在命令] 提示字元鍵入 mstsc.exe /console,然後在您連線至遠端伺服器沒有安裝 「 終端機伺服器。 / 主控台 參數會以無訊息模式忽略。您會連線至伺服器的遠端管理工作階段。
如需有關 Windows Server 2008 或 Windows Server 2008 R2 行為的詳細資訊,請參閱"當您連線到伺服器並沒有安裝 「 終端機伺服器 」 一節。
您,請在命令] 提示字元鍵入 mstsc.exe /console,然後在您連線至已安裝的 「 終端機伺服器的遠端伺服器。 / 主控台 參數會以無訊息模式忽略。您將連接到標準的遠端桌面工作階段需要終端機服務用戶端存取使用權 (TS CAL)。
在 RDC 用戶端 UI,在 [電腦] 方塊中指定 Computer_name /console],,然後按一下 [連線]。
附註Computer_name 代表您想要連線之遠端電腦名稱。 您會收到一個 「 未知的參數是訊息中指定電腦名稱欄位 」 錯誤。
.rdp] 檔案中您在 完整的地址] 屬性中指定 / 主控台,然後您再啟動遠端桌面連線]。 您會收到一個 「 未知的參數已指定電腦名稱欄位中 」 錯誤訊息。
.rdp] 檔案中指定 連線到主控台] 屬性],然後再啟動遠端桌面連線]。 以無訊息模式會略過該屬性。您將連線到需要 TS CAL 的工作階段。
您以程式設計的方式呼叫 put_ConnectToServerConsole 函式] 或 [IMsRdpClientAdvancedSettings 介面 get_ConnectToServerConsole 函式。 這個功能將會失敗,且會傳回一個 S_FALSE 值。
為什麼不再需要透過 / console 參數
Windows Server 2003 中您可以使用 Mstsc.exe /console 命令來啟動 「 遠端桌面 」 工作階段,理由如下:
* 連線到工作階段 0
某些應用程式已安裝,並只在工作階段 0 中執行。這是因為應用程式必須與在工作階段 0 中執行的服務通訊,或因為應用程式有顯示會顯示在工作階段 0 中的使用者介面 (UI) 項目。
* 連回實體的主控台上現有的工作階段
因為實體的主控台工作階段,在 Windows Server 2003 永遠是工作階段 0,您可以重新連線到此工作階段的唯一方法是使用 / 主控台 參數。
在 Windows Server 2008 和 Windows Server 2008 R2,/ 主控台 切換功能已不再需要,理由如下:
* 改良的應用程式相容性可以保證有與服務通訊工作階段 0 中的舊版應用程式將會安裝和工作階段 0 以外的工作階段中執行。此外,如果應用程式相關聯的服務嘗試在工作階段 0 中顯示的使用者介面項目,在 Windows Server 2008 Windows Server 2008 R2 和 Windows Vista 中內建的功能可讓您檢視,並從您的工作階段 0 UI 與工作階段互動。Windows Server 2008/Windows Server 2008 R2 工作階段 0 是一個非互動式活動保留的服務。因此,就不需要您明確地連接到此工作階段。
附註 如需有關在 Windows Vista 中的工作階段 0 隔離的詳細資訊,檢視 」 影響的工作階段 0 隔離上服務和驅動程式在 Windows Vista 」 主題下列 Microsoft 網站:
http://go.microsoft.com/fwlink/?LinkId=106201
* 因為實體的主控台工作階段不會是工作階段 0,您可以永遠重新連線到您現有的工作階段,實體的主控台上。 限制終端機服務單一的遠端工作階段的使用者 群組原則設定會決定是否可以連線到您現有的實體的主控台工作階段。此設定是在 電腦設定 \ 系統管理範本 \ 系統 \ 啟動 Components\Terminal Services\Terminal Server\Connections 節點的本機群組原則編輯器中可用。您也可以設定此設定,終端機服務設定 中。限制每位使用者在單一工作階段] 設定會出現在 [在 [一般] 區段中的 [編輯設定。
/admin 切換控制的行為
您可以執行 RDC 6.1 用戶端 (Mstsc.exe) 搭配 / admin 切換到 Windows Server 2008 架構的伺服器有或沒有安裝 「 終端機伺服器的遠端管理。不過,如果您想從遠端管理 Windows Server 2008 為基礎的伺服器並沒有安裝終端機伺服器角色服務您不必使用 / admin 切換。 在這種情況下使用或不就會發生相同的連線問題 / admin 切換。 在任何時間點,可以有兩個使用中的遠端系統管理工作階段。要遠端系統管理工作階段中,您必須是您要連接的伺服器上的 [系統管理員] 群組的成員。
當您連線至伺服器,並沒有安裝 「 終端機伺服器
如果 系統管理員群組的成員啟動至 Windows Server 2008 為基礎的伺服器,並沒有安裝終端機伺服器角色服務的遠端桌面工作階段,下列情況皆成立遠端系統管理工作階段:
* 已停用時區重新導向。
* 已停用終端機服務工作階段代理人 (TS 工作階段代理人) 重新導向。
* 已停用隨插即用裝置重新導向。
* 遠端工作階段佈景主題變更為 Windows 傳統配色。
* 終端機服務輕鬆列印已停用。
當您連線至已安裝的 「 終端機伺服器的伺服器
如果系統管理員群組的成員啟動至 Windows Server 2008 為基礎的伺服器,已安裝了 「 終端機伺服器角色服務的遠端桌面工作階段,他們必須使用 / admin 參數,以連線到伺服器的遠端管理的工作階段。下列情況皆成立的工作階段:
* 您沒有有終端機伺服器的遠端管理的 TS CAL。
* 已停用時區重新導向。
* 終端機服務工作階段代理人重新導向已停用。
* 已停用隨插即用裝置重新導向。
* 遠端工作階段佈景主題變更為 Windows 傳統配色。
* 終端機服務輕鬆列印已停用。
API 的變更
如果您使用 RDC 6.1,您不再可用 IMsRdpClientAdvancedSettings 介面的 [ConnectToServerConsole 屬性來指定是否遠端桌面 ActiveX 控制項應該嘗試連線到伺服器系統管理用途。相反的您必須使用 ConnectToAdministerServer 屬性 IMsRdpClientAdvancedSettings6 介面的連線到下列的工作階段的其中一個:
* 實體的主控台工作階段,在 Windows Server 2003 電腦上
* 用於在 Windows Server 2008 架構的電腦上的系統管理目的,工作階段
如需有關 ConnectToServerConsole 屬性的詳細資訊,請造訪下列網站:
http://go.microsoft.com/fwlink/?LinkId=106203
如需有關 ConnectToAdministerServer 屬性的詳細資訊,請造訪下列網站:
http://go.microsoft.com/fwlink/?LinkId=106204

TeamViewer

TeamViewer - the All-In-One Solution for Remote Access and Support over the Internet.
TeamViewer connects to any PC or server around the world within a few seconds. You can remote control your partner's PC as if you were sitting right in front of it. Find out why more than 60 million users trust TeamViewer!
http://www.teamviewer.com/index.aspx

BT seed search site

Isohunt[http://isohunt.com/torrents?ihq= http://isohunt.com/

miniNova[http://www.mininova.org/search= http://www.mininova.org

Change Linux Time

#date -s "12:12:00"