共用方式為


IShellDispatch.ControlPanelItem 方法

執行指定的主控台應用程式。 如果應用程式已經開啟,它會啟動執行中的實例。

注意

從 Windows Vista 開始,大部分主控台應用程式都是殼層專案,而且無法使用此函式開啟。 若要開啟這些主控台應用程式,請將標準名稱傳遞至control.exe。 例如:

control.exe /name Microsoft.Personalization

 

語法

IShellDispatch.ControlPanelItem(
  bstrDir
)

IShellDispatch.ControlPanelItem( _
  ByVal bstrDir As BSTR _
)

參數

bstrDir [in]

類型: BSTR

主控台應用程式的檔案名。

傳回值

JScript

這個方法不會傳回值。

VB

這個方法不會傳回值。

備註

此方法是透過 Shell.ControlPanelItem 方法實作和存取。

範例

下列範例使用ControlPanelItem來執行主控台的[顯示內容] 專案。 JScript、VBScript 和 Visual Basic 會顯示使用量。

Jscript:

<script language="JScript">
    function fnShellControlPanelItemJ()
    {
        var objShell = new ActiveXObject("shell.application");
        
        objshell.Shell_ControlPanelItem("desk.cpl");
    }
</script>

VBScript:

<script language="VBScript">
    function fnShellControlPanelItemVB()
        dim objShell
        
        set objShell = CreateObject("shell.application")
        objshell.Shell_ControlPanelItem("desk.cpl")
       
        set objShell = nothing
    end function
 </script>

Visual Basic:

Private Sub fnShellControlPanelItemVB()
    Dim objShell As Shell
    
    Set objShell = New Shell
    objshell.Shell_ControlPanelItem ("desk.cpl")
    
    Set objShell = Nothing
End Sub

規格需求

需求
最低支援的用戶端
Windows 2000 專業版、Windows XP [僅限傳統型應用程式]
最低支援的伺服器
Windows 2000 Server [僅限傳統型應用程式]
標頭
Shldisp.h
Idl
Shldisp.idl
DLL
Shell32.dll (4.71 版或更新版本)