1、檔案(夾)非法字元
windows系統檔案(夾)非法字元"\\/:*?\"<>|",不包含『.』,但"."字元不能是檔案(夾)的首字元,因此"\\/:*?\"<>|."
///view code///過濾掉非法字元和點字元
/// ///
///public
string directorynamefilter(string directoryname)
return
directoryname;
}//////
過濾掉非法字元
/// ///
///public
string namefilter(string name)
return
name;
}
2、安裝iis、新增ftp站點:
1)、安裝ftp、iis:控制面板\所有控制面板項\程式和功能,雙擊「開啟或關閉windows功能」,勾選「iis」、「ftp」
2)、安裝ftp後,在控制面板\所有控制面板項\管理工具\,開啟internet 資訊服務(iis)管理器,新增ftp站點
3、刪除vs生成的.itrace檔案
用visual studio 後,發現c盤變得越來越小,c:\programdata\microsoft visual studio\很佔記憶體越來越大,預刪除其下檔案。
配置:開啟vs2010找到工具-->選項-->intellitrace-->取消(啟用intellitrace),點確定。
4、檢視win7授權方式:
在「執行」視窗輸入"slmgr.vbs /dlv"命令。retail代表零售金鑰、oem代表零售金鑰、volume代表批量授權金鑰。據說:volume不能免費公升級win10
5、介面顯示在最前端:
間隔*ms,設定窗體顯示在最前端。
需要設定的屬性(wpf):
1)this.topmost = true;this.show();
2)setwindowpos(new windowinterophelper(this).handle, -1, 0, 0, 0, 0, 0x4000 | 0x0001 | 0x0002);
注意:1、僅僅設定this.topmost = true;this.show();是不夠的因為在某些情況下會被覆蓋。
2、setforegroundwindow函式時,轉換到其他窗體無法輸入內容。
6、關閉休眠功能,自動刪除hiberfil.sys檔案:powercfg -h off
8、cmd拷貝指定路徑下的檔案:「 xcopy /e/i/y e:\a e:\b 」 儲存在*.cmd檔案內 雙擊改檔案即可
Windows 常見問題
1 檔案 夾 非法字元 windows系統檔案 夾 非法字元 不包含 但 字元不能是檔案 夾 的首字元,因此 過濾掉非法字元和點字元 public string directorynamefilter string directoryname return directoryname 過濾掉非法字元...
Windows服務常見問題
1 onstart 最常見的問題 在onstart 的執行時間問題,如果超過30秒scm會武斷的認為服務無法啟動,所以建議放到執行緒中執行。2 除錯最痛苦的問題 這個就直接貼上 在mian中寫入如下 static void main system.serviceprocess.servicebase...
Windows服務常見問題
1 onstart 最常見的問題 在onstart 的執行時間問題,如果超過30秒scm會武斷的認為服務無法啟動,所以建議放到執行緒中執行。2 除錯最痛苦的問題 這個就直接貼上 在mian中寫入如下 static void main system.serviceprocess.servicebase...