IMsRdpWorkspace::StartWorkspace method

Associates user credentials and certificates with a connection ID. Beginning with Windows Server 2012, use the StartWorkspaceEx method on the IMsRdpWorkspace2 interface.

Syntax

HRESULT StartWorkspace(
  [in] BSTR bstrWorkspaceId,
  [in] BSTR bstrUserName,
  [in] BSTR bstrPassword,
  [in] BSTR bstrWorkspaceParams,
  [in] LONG lTimeout,
  [in] LONG lFlags
);

Parameters

bstrWorkspaceId [in]

A string that contains a connection ID.

bstrUserName [in]

A string that contains a user name.

bstrPassword [in]

A string that contains a password.

bstrWorkspaceParams [in]

A string that contains one or more Secure Hash Algorithm 1 (SHA-1) hashes of signing certificates to associate with the specified connection ID. The hash values should be in hexadecimal string format and delimited by semicolons.

lTimeout [in]

The time period, in minutes, after which the credentials are deleted.

lFlags [in]

A flag that specifies properties of the user credentials. This can be a bitwise OR of the following values.

WKS_FLAG_CLEAR_CREDS_ON_LAST_RESOURCE (1 (0x1))

Delete credentials as soon as the last RemoteApp application is closed.

WKS_FLAG_PASSWORD_ENCRYPTED (2 (0x2))

The password is encrypted.

WKS_FLAG_CREDS_AUTHENTICATED (4 (0x4))

The user credentials are verified. If this flag is not set, you must call the OnAuthenticated method before using the credentials.

Return value

If the method succeeds, it returns S_OK. Otherwise, it returns an HRESULT value that indicates the error. Possible values include, but are not limited to, those in the following list.

  • HRESULT_FROM_WIN32(ERROR_ALREADY_EXISTS)
    The credential store already has an entry for the specified connection ID that contains credentials for a different user, and at least one active connection exists for this connection ID.

Remarks

If single sign on (SSO) is disabled in RemoteApp and Desktop Connection, the credentials will not be stored.

Requirements

Minimum supported client

Windows 7

Minimum supported server

Windows Server 2008 R2

DLL

MsRdpWebAccess.dll

IID

IID_IMsRdpWorkspace is defined as 145D0621-04CF-4FC2-A766-A81A9069CDF8

See also

IMsRdpWorkspace