<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest topics for the forum "Windows Server"]]></title>
		<link>https://forum.andowson.com/forums/show/15.page</link>
		<description><![CDATA[The newest discussed topics in the forum "Windows Server"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>[Windows]如何定時自動備份整個網站目錄到遠端伺服器</title>
				<description><![CDATA[ <br>
請教可有 .. (and Thanks) 
<br>
<br>
.bat 計算檔案大小 
<br>
<br>
條件： 
<br>
1. 可計算超過 2147483647 (2 GB)數字 (可能用到 PowerShell) 
<br>
2. 希望用變數定義, 磁區, 路徑, 檔案形態 
<br>
<br>
　(例) 
<br>
　(1) D:\*.*/s (D: 所有) 
<br>
　(2) D:\*.rar/s (D: 所有 .rar) 
<br>
　(3) D:\*.mp4 *.mkv *.avi ... (D: 影片檔) 
<br>]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/42/1419.page</guid>
				<link>https://forum.andowson.com/posts/preList/42/1419.page</link>
				<pubDate><![CDATA[Sat, 24 Mar 2018 15:23:56]]> GMT</pubDate>
				<author><![CDATA[ jown00]]></author>
			</item>
			<item>
				<title>如何在DOS Batch中跑100次的迴圈</title>
				<description><![CDATA[ 最近想要測試重複執行某個動作非常多次，結果是否一致時（例如發送100封信是否每封都有收到），需要能控制跑迴圈的次數，找到了下面的方法： 
<br>
[code=bat]for /l %%i in (1 1 100) do (echo %%i)[/code] 
<br>
參考資料: 
<br>
[url=http://hksan.net/forum/index.php?showtopic=12177]我想寫一個做50,000次的DOS batch for loop[/url]]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/405/773.page</guid>
				<link>https://forum.andowson.com/posts/preList/405/773.page</link>
				<pubDate><![CDATA[Fri, 26 Feb 2010 18:43:17]]> GMT</pubDate>
				<author><![CDATA[ andowson]]></author>
			</item>
			<item>
				<title>[參考]DOS指令</title>
				<description><![CDATA[ 最近一部很久沒人理它的Windows 2000 Server主機CPU跑到一直維持100%，C槽空間剩下64KB。發現開個DOS視窗比開檔案總管還快，看來是需要複習一下DOS指令了。以下是我找到的一個網址，供大家參考： 
<br>
<br>
http://teach.mcsh.kh.edu.tw/sheu5711/eg/dos.htm 
<br>
<br>
有時候，還是得在文字介面下工作的。]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/367/702.page</guid>
				<link>https://forum.andowson.com/posts/preList/367/702.page</link>
				<pubDate><![CDATA[Wed, 2 Dec 2009 17:33:43]]> GMT</pubDate>
				<author><![CDATA[ andowson]]></author>
			</item>
			<item>
				<title>使用命令列遠端重開別台Windows主機</title>
				<description><![CDATA[ 如果遇到遠端桌面被佔滿而無法登入時，可以透過命列列方式遠端重起Windows主機 
<br>
<br>
net use \\遠端ip位址 /user:administrator password 
<br>
shutdown -m \\\\遠端ip位址 -r -f -t 3 
<br>
<br>
net use的使用說明： 
<br>
<br>
[code]NET USE 
<br>
[devicename | *] [\\computername\sharename[\volume] [password | *]] 
<br>
 [/USER:[domainname\]username] 
<br>
 [/USER:[dotted domain name\]username] 
<br>
 [/USER:[username@dotted domain name] 
<br>
 [/SMARTCARD] 
<br>
 [/SAVECRED] 
<br>
 [[/DELETE] | [/PERSISTENT:{YES | NO}]] 
<br>
<br>
NET USE {devicename | *} [password | *] /HOME 
<br>
<br>
NET USE [/PERSISTENT:{YES | NO}][/code] 
<br>
<br>
shutdown的使用方式說明 
<br>
[code]使用方式: shutdown [-i | -l | -s | -r | -a] [-f] [-m \\computername] [-t xx] [-c 
<br>
 "comment"] [-d up:xx:yy] 
<br>
<br>
 沒有引數 顯示這個訊息 (和 -? 相同) 
<br>
 -i 顯示 GUI 介面，必須是第一個選項 
<br>
 -l 登出 (不能和 -m 選項一起使用) 
<br>
 -s 電腦關機 
<br>
 -r 關機並重新啟動電腦 
<br>
 -a 中止系統關機 
<br>
 -m \\\\computername 從遠端進行關機/重新啟動/中止 
<br>
 -t xx 將關機等候時間設定成 xx 秒 
<br>
 -c "comment" 關機註解 (最多 127 個字元) 
<br>
 -f 強制關閉執行中的應用程式，不顯示警告 
<br>
 -d [u][p]:xx:yy 關機原因代碼 
<br>
 u 是使用者代碼 
<br>
 p 是預先計劃的關機代碼 
<br>
 xx 是主要原因代碼 (小於 256 的正整數) 
<br>
 yy 是次要原因代碼 (小於 65536 的正整數)[/code] 
<br>
參考資料： 
<br>
http://blog.roodo.com/horoyang/archives/8606387.html]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/351/659.page</guid>
				<link>https://forum.andowson.com/posts/preList/351/659.page</link>
				<pubDate><![CDATA[Thu, 8 Oct 2009 19:20:02]]> GMT</pubDate>
				<author><![CDATA[ andowson]]></author>
			</item>
			<item>
				<title>Free Antivirus for Windows Server</title>
				<description><![CDATA[ 今天找到了[url=http://www.clamwin.com/]ClamWin Free Antivirus[/url]這個免費的防毒軟體，依據網站的介紹： 
<br>
[quote]ClamWin is a Free Antivirus program for Microsoft Windows 98/Me/2000/XP/2003 and Vista.[/quote] 
<br>
這套軟體幾乎可以執行在微軟所有版本上的作業系統上。 
<br>
<br>
經實際安裝發現確實可以執行在Windows 2000 Advanced Server上，其他版本看日後有機會安裝的話再回報吧。]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/273/483.page</guid>
				<link>https://forum.andowson.com/posts/preList/273/483.page</link>
				<pubDate><![CDATA[Wed, 24 Sep 2008 19:06:02]]> GMT</pubDate>
				<author><![CDATA[ andowson]]></author>
			</item>
			<item>
				<title>[Windows]解決Windows Server 2003「您的終端機服務臨時用戶端授權將在 N 天後到期。請連絡您的系統管理員以取得永久的授權。」警訊</title>
				<description><![CDATA[ Windows Server 2003 提供的終端機服務預設聽取的Port是TCP 3389，並可允許最高兩個工作階段，只要開放防火牆可以連入後，就可進行遠端管理，非常方便。如果沒有設定好，就會碰到類似下面的這種訊息：「您的終端機服務臨時用戶端授權將在 N 天後到期。請連絡您的系統管理員以取得永久的授權。」，例如 
<br>
[img]http://andowson.myweb.hinet.net/img/ts01.jpg[/img] 
<br>
解決方法是開啟「系統管理工具」裡面的「終端機服務設定」，調整授權模式為每個使用者 
<br>
[img]http://andowson.myweb.hinet.net/img/ts02.jpg[/img] 
<br>
修改完成後，畫面如下： 
<br>
[img]http://andowson.myweb.hinet.net/img/ts03.jpg[/img] 
<br>
如果要讓同一個使用者帳號可以同時給兩個連線使用（開兩窗，或兩個人各開一窗），可順便調整「限制每個使用者只能有一個工作階段」為「否」 
<br>
[img]http://andowson.myweb.hinet.net/img/ts04.jpg[/img] 
<br>
修改完成後，畫面如下： 
<br>
[img]http://andowson.myweb.hinet.net/img/ts05.jpg[/img] 
<br>
這樣子就可以繼續使用終端機服務了。 
<br>
<br>
參考資料： 
<br>
http://support.microsoft.com/default.aspx/kb/822134/zh-tw]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/226/342.page</guid>
				<link>https://forum.andowson.com/posts/preList/226/342.page</link>
				<pubDate><![CDATA[Sun, 9 Mar 2008 17:45:02]]> GMT</pubDate>
				<author><![CDATA[ andowson]]></author>
			</item>
			<item>
				<title>[Windows]Free TFTP Server for Windows</title>
				<description><![CDATA[ 今天為了升級Load Balance Switch的Firmware需要找TFTP Server的軟體，搜尋了一下發現了TFTPD32 是一個免費的TFTP Server軟體工具，由 Philippe Jounin (philippe@jounin.net) 開發，解開後直接點兩下執行檔就可以開始服務了。 
<br>
您可直接到[url=http://tftpd32.jounin.net/tftpd32_download.html]http://tftpd32.jounin.net/[/url]網站去下載或是由本站下載附件。]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/184/283.page</guid>
				<link>https://forum.andowson.com/posts/preList/184/283.page</link>
				<pubDate><![CDATA[Tue, 16 Oct 2007 19:36:44]]> GMT</pubDate>
				<author><![CDATA[ andowson]]></author>
			</item>
			<item>
				<title>使用IE當作FTP Client遇到的檔案日期顯示錯誤</title>
				<description><![CDATA[ 今天遇到了一個怪現象，過程如下： 
<br>
1.我在本地端的Windows XP上面修改一個檔案，存檔，檔案日期是2007/06/28。 
<br>
2.透過FileZilla 將該檔案FTP上傳到Windows Server 2003，檔案日期是2007/06/28。 
<br>
3.開啟IE，輸入ftp://windowsserver2003_ip，輸入帳號密碼登入。 
<br>
4.登入成功後顯示出檔案列表，此時該檔案日期顯示的是[color=red]2006/06/28[/color]而非2007/06/28。 
<br>
5.將該檔案用IE下載回來，檔案日期是2006/06/28。 
<br>
6.重新修改之後存檔，日期又變成2007/06/28。 
<br>
7.再用IE上傳，結果日期又變成2007/06/28。 
<br>
<br>
不知道有沒有人遇到這個問題，如何解決？]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/83/147.page</guid>
				<link>https://forum.andowson.com/posts/preList/83/147.page</link>
				<pubDate><![CDATA[Thu, 28 Jun 2007 23:54:50]]> GMT</pubDate>
				<author><![CDATA[ andowson]]></author>
			</item>
	</channel>
</rss>