說明:系統檔案盤為c盤,作業系統為windows xp、登入使用者名為weste、計算機名為icech
說明:不同的作業系統如windows xp和windows 2000相對應的一些路徑是不同的,這裡只介紹winxp相對應的路徑!
%allusersprofile%
說明:所有使用者的配置檔案總目錄
對應路徑:c:\documents and settings\all users
%userprofile%
說明:指當前使用者的配置檔案目錄
對應路徑:c:\documents and settings\使用者名稱
%homepath%
說明:指當前使用者的配置檔案目錄
對應路徑:c:\documents and settings\使用者名稱
%systemdrive%
說明:系統所在盤
對應路徑:c:\
%homedrive%
說明:系統所在盤
對應路徑:c:\
%windir%
說明:系統所在目錄
對應路徑:c:\windows
%systemroot%
說明:windows所在目錄
對應路徑:c:\windows
%temp%
說明:這個是系統的臨時資料夾所在目錄
對應路徑:c:\documents and settings\使用者名稱\local settings\temp
%tmp%
說明:這個是系統的臨時資料夾所在目錄
對應路徑:c:\documents and settings\使用者名稱\local settings\temp
%programfiles%
說明:program files程式安裝目錄
對應路徑:c:\program files
%commonprogramfiles%
說明:common files目錄
對應路徑:c:\program files\common files
%comspec%
說明:cmd.exe檔案路徑
對應路徑:c:\windows\system32\cmd.exe
%logonserver%
說明:cmd.exe檔案路徑
對應路徑:\\icech
同時,以上變數設定還可以通過在cmd狀態下輸入set命令檢視。而且可以在滑鼠右鍵「我的電腦」,選擇「系統屬性-高階-系統變數」,在系統變數裡手工可以新增變數
%system%|%windows%|%userprofile%|%temp%的解釋
手動查毒中,通常會看到%system% | %windows% | %userprofile% | %programfiles% | %commonprogramfiles% | %windir%等等用「%***%"來表示的路徑的情況。這些變數讓初級電腦使用者和菜鳥在中毒後感到十分困惑和不解。
為方便大家看懂清除病毒過程步驟裡的這些%***%變數,這裡專門做乙個簡單的講解和通用說明。不要因為它們看上去有很多種就覺得難,事實上,只要理解了乙個其他就很容易掌握了。變數是由於作業系統或軟體在不同的人的電腦中存放的位置可能是不同的,目錄名稱也可能是不一樣的,所以用兩個%%間加上特定名稱的變數方式表達。只要你看得懂兩個「%」間詞語的意思,就非常好理解。
那麼究竟什麼是%system% | %windows% | %userprofile% | %programfiles% | %commonprogramfiles% | %windir%呢?
%temp%——系統的臨時資料夾所在目錄,通常你的作業系統都是windows,無論是win9x/2000/xp/2003/nt裡的哪一種,只要你知道你把windows系統裝在哪個硬碟分割槽下就行了。比如說你裝在c盤下,那麼這裡的%temp%就是指c:\windows\temp這個目錄資料夾。如果你把系統裝在d盤,那麼這時就變成d:\windows\temp了。
%windir%、%windows%表示windows所在目錄,你的windows裝在哪個分割槽就指這個分割槽的windows資料夾。%windows%在98及xp下指系統盤下的windows資料夾,2000下指winnt資料夾。
%systemroot%、%system%是用來表示系統所在目錄,分別指系統根目錄和系統所在目錄。其中%systemroot%如果作業系統為windows並且裝在分割槽c盤下,那麼它們就是c:\windows。和第2條裡的一樣。
還有幾個programfiles類的,如%userprofile% 指當前使用者的配置檔案目錄。%programfiles% 指program files程式安裝目錄。%commonprogramfiles% 通用檔案目錄。
注意下%system%——
%system%在98下指windows\system,2000下指winnt\system32\,xp下指windows\system32資料夾
1:%userprofile%代表你的使用者資料夾。不好用語言描述。
到cmd裡面試一下便知:
開始--執行--cmd 回車---在黑視窗裡面輸入:echo "%userprofile%" 回車即可看到它所代表的內容。
2:%userprofile%指的是你的使用者配置檔案目錄,一般是指「c:\documents and settings\你的使用者名稱」這個目錄
至於%,我想應該是指明兩個%之間是變數的意思吧
windows 環境變數
1 考慮下面的需求,進入cmd之後,我就想執行mysql客戶端命令,而這需要轉到mysql安裝目錄,找到mysql可執行檔案,在這個目錄下執行mysql命令。這樣太麻煩,有沒有好的解決辦法?2 使用環境變數,變數名為mysql home,變數值為c program files x86 mysql m...
Windows環境變數
allusersprofile 說明 所有使用者的配置檔案總目錄 對應路徑 c documents and settings all users userprofile 說明 指當前使用者的配置檔案目錄 對應路徑 c documents and settings weste homepath 說明 ...
windows 環境變數
今天在windows下安裝了openssh,就想在windows下也新增乙個伺服器位址的環境變數,新增是會了,引用卻不會,網上也沒找到相應的文章,就自己看了看別人的bat程式,然後找到了引用變數的方法 首先,在linux下,引用環境變數使用 符號 在windows下,顯示環境變數用set就好了 我改...