rundii32.exe是有什麼使用執出啊 
 

Q:
rundii32.exe是有什么用出啊 
A:
動態連接庫函數啟動器--Rundll32
  在Windows中使用了許多動態連接庫,這樣就使得所有Windows程序都可共享這些動態連接庫中的函數。一般情況下,許
多應用程式都通過Windows API來操作這些函數,但歸根結底是通過Windows資料夾下的rundll32.exe程序來啟動對應的函數。它
的用法是:「rundll32.exe 動態連接庫名,函數名,參數名」。如筆者需要實現一鍵關機,則在桌面上建立一快捷方式,命令行為
「rundll32.exe user.exe,ExitWindows」,並設置其快捷鍵為F4即可。再如,筆者要開啟控制台,則只需要輸入命令「rundll32.exe 
shell32.dll,Control_RunDLL」即可,要開啟桌面屬性,只需要使用「rundll32.exe shell32.dll,Control_RunDLL desk.cpl」,其餘的以
此類推。

控制台 
模塊: control.exe 在開始----執行----輸入本命令
命令: rundll32.exe shell32.dll,Control_RunDLL 
結果: 顯示控制台視窗。 
例子: 
Dim x 
x = Shell("rundll32.exe shell32.dll,Control_RunDLL") 

輔助選項 
模塊: access.cpl 在開始----執行----輸入本命令
命令: rundll32.exe shell32.dll,Control_RunDLL access.cpl,,5 
結果: 顯示輔助選項/一般。 

命令: rundll32.exe shell32.dll,Control_RunDLL access.cpl,,1 
結果: 顯示輔助選項/鍵盤。 

命令: rundll32.exe shell32.dll,Control_RunDLL access.cpl,,2 
結果: 顯示輔助選項/聲音。 

命令: rundll32.exe shell32.dll,Control_RunDLL access.cpl,,3 
結果: 顯示輔助選項/顯示。 

命令: rundll32.exe shell32.dll,Control_RunDLL access.cpl,,4 
結果: 顯示輔助選項/滑鼠。 

新增新硬體 
模塊: sysdm.cpl 在開始----執行----輸入本命令
命令:rundll32.exe shell32.dll,Control_RunDLL sysdm.cpl @1 

增加新的列印機 
模塊:shell32.dll 在開始----執行----輸入本命令
命令:rundll32.exe shell32.dll,SHHelpShortcuts_RunDLL AddPrinter 

新增/刪除程序 
模塊:appwiz.cpl 在開始----執行----輸入本命令
命令:rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,1 
結果:顯示安裝/解除。 

命令:rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,1 
結果:顯示安裝/解除。 

命令:rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,2 
結果:顯示Windows 安裝。 

命令:rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,3 
結果:顯示啟動碟。 

複製磁碟 
模塊:diskcopy.dll 在開始----執行----輸入本命令
命令:rundll32.exe diskcopy.dll,DiskCopyRunDll 

時間/日期 
模塊: timedate.cpl 在開始----執行----輸入本命令
命令: rundll32.exe shell32.dll,Control_RunDLL timedate.cpl,,0 
結果: 顯示設置日期/時間。 

命令: rundll32.exe shell32.dll,Control_RunDLL timedate.cpl,,1 
結果: 顯示設置時間區域。 

撥號連接(DUN) 
模塊: rnaui.dll 在開始----執行----輸入本命令
命令: rundll32.exe rnaui.dll,RnaDial 連接_名稱 
結果: 開啟指定的撥號連接。 
例子: 
x= Shell("rundll32.exe rnaui.dll,RnaDial " & "連接_名稱", 1) 

顯示器 
模塊: desk.cpl 在開始----執行----輸入本命令
命令: rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,0 
結果: 背景設置。 

命令: rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,1 
結果: 螢幕保護設置。 

命令: rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,2 
結果: 外觀設置。 

命令: rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,3 
結果: 設置視窗。 

操縱桿 
模塊: joy.cpl 在開始----執行----輸入本命令
命令: rundll32.exe shell32.dll,Control_RunDLL joy.cpl 

郵件/傳真 
模塊: mlcfg32.cpl 在開始----執行----輸入本命令
命令: rundll32.exe shell32.dll,Control_RunDLL mlcfg32.cpl 
結果: 出現 MS Exchange 屬性設置。 

郵局設置 
模塊: wgpocpl.cpl 在開始----執行----輸入本命令
命令: rundll32.exe shell32.dll,Control_RunDLL wgpocpl.cpl 
結果: 顯示 MS Postoffice Workgroup Admin 設置。 

主設置 
模塊: main.cpl 在開始----執行----輸入本命令
命令: rundll32.exe shell32.dll,Control_RunDLL main.cpl @0 
結果: 顯示滑鼠屬性。 

命令: rundll32.exe shell32.dll,Control_RunDLL main.cpl @1 
結果: 顯示鍵盤/速度屬性。 

命令: rundll32.exe shell32.dll,Control_RunDLL main.cpl @1,,1 
結果: 顯示鍵盤/語言屬性。 

命令: rundll32.exe shell32.dll,Control_RunDLL main.cpl @1,,2 
結果: 顯示鍵盤/一般屬性。 

命令: rundll32.exe shell32.dll,Control_RunDLL main.cpl @2 
結果: 顯示列印機屬性。 

命令: rundll32.exe shell32.dll,Control_RunDLL main.cpl @3 
結果: 顯示字體屬性。 

命令: rundll32.exe shell32.dll,Control_RunDLL main.cpl @4 
結果: 顯示電源管理屬性。 

增加 Modem 
模塊:modem.cpl 
命令:rundll32.exe shell32.dll,Control_RunDLL modem.cpl,,add 

多媒體 
模塊: mmsys.cpl 
命令: rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,0 
結果:聲音。 

命令: rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,1 
結果:視頻。 

命令: rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,2 
結果:聲音 MIDI。 

命令: rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,3 
結果:CD/音樂。 

命令: rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,4 
結果:進階。 

命令: rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl @1 
結果:聲音。 

網路 
模塊:netcpl.cpl 在開始----執行----輸入本命令
命令:rundll32.exe shell32.dll,Control_RunDLL netcpl.cpl 

開啟方式視窗(Open With) 
模塊: shell32.dll 
命令:rundll32.exe shell32.dll,OpenAs_RunDLL path\filename 

密碼 
模塊: password.cpl 在開始----執行----輸入本命令
命令: rundll32.exe shell32.dll,Control_RunDLL password.cpl 

區域設置 
模塊: intl.cpl 在開始----執行----輸入本命令
命令: rundll32.exe shell32.dll,Control_RunDLL intl.cpl,,0 
結果: 區域設置。 

命令: rundll32.exe shell32.dll,Control_RunDLL intl.cpl,,1 
結果: 數字格式設置。 

命令: rundll32.exe shell32.dll,Control_RunDLL intl.cpl,,2 
結果: 金額格式設置。 

命令: rundll32.exe shell32.dll,Control_RunDLL intl.cpl,,3 
結果:時間格式設置。 

命令: rundll32.exe shell32.dll,Control_RunDLL intl.cpl,,4 
結果: 日期格式設置。 

螢幕保護 
模塊: appwiz.cpl 在開始----執行----輸入本命令
命令: rundll32.exe desk.cpl,InstallScreenSaver c:\win\system\Flying W 
indows.scr 
結果: 安裝螢幕保護並顯示預覽屬性頁。 

系統設置 
模塊: sysdm.cpl 在開始----執行----輸入本命令
命令: rundll32.exe shell32.dll,Control_RunDLL sysdm.cpl,,0 
結果: 顯示一般設置。 

命令: rundll32.exe shell32.dll,Control_RunDLL sysdm.cpl,,1 
結果: 顯示設備管理設置。 

命令: rundll32.exe shell32.dll,Control_RunDLL sysdm.cpl,,2 
結果: 顯示硬體設置。 

命令: rundll32.exe shell32.dll,Control_RunDLL sysdm.cpl,,3 
結果: 顯示性能設置。 

IE 設置 
模塊: inetcpl.cpl 在在開始----執行----輸入本命令
命令: rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl