Win 2000如何改變資源管理器的預設開啟目錄? 
 

Q: 
win 2K下, 
就是WIN+E後出來的目錄總是「我的電腦」我想自定義,如何來做? 


A: 
右鍵點擊開始表單裡資源管理器的快捷方式--》點擊屬性 
--》在快捷方式頁裡的目標框中把 

%SystemRoot%\explorer.exe 改為 

%SystemRoot%\explorer.exe /e, D:\tools(D:\tools為目錄名) 
記得/前和,後都要加空格。 

%SystemRoot%\explorer.exe /n,/e,/Select,d:\ 

原理: 

Syntax 

EXPLORER.EXE [/n][/e][,/root,<object>][,/select],<sub object>] 

Switches 

/n: Opens a new window in single-paned (My Computer) view for each item 
selected, even if the new window duplicates a window that is 
already open. 

/e: Uses Windows Explorer view. Windows Explorer view is most similar 
to File Manager in Windows version 3.x. Note that the default view 
is Open view. 

/root,<object> : Specifies the root level of the specified view. The 
default is to use the normal namespace root (the 
desktop). Whatever is specified is the root for the 
display. 

/select,<sub object> : Specifies the folder to receive the initial 
focus. If "/select" is used, the parent folder 
is opened and the specified object is selected. 

Examples 

To open a Windows Explorer view to explore only objects on \\<server name>, use the following syntax: 
explorer /e,/root,\\<server name> 

To view the C:\WINDOWS folder and select CALC.EXE, use the following syntax: 
explorer /select,c:\windows\calc.exe