Compartilhar via


Método IADsTSUserEx::get_TerminalServicesProfilePath (tsuserex.h)

O caminho de perfil móvel ou obrigatório a ser usado quando o usuário fizer logon no servidor host da sessão da Área de Trabalho Remota (Host da Sessão da Área de Trabalho Remota).

Essa propriedade é leitura/gravação.

Sintaxe

HRESULT get_TerminalServicesProfilePath(
  BSTR *pVal
);

Parâmetros

pVal

Valor retornado

Nenhum

Comentários

O caminho do perfil está no seguinte formato de caminho de rede:

\\Servername\ProfilesFolderName\Username

Nota Um caminho de perfil dos Serviços de Área de Trabalho Remota é usado apenas para fazer logon em um servidor Host da Sessão de Área de Trabalho Remota.
 

Exemplos

O exemplo a seguir mostra um programa que se associa ao banco de dados do Active Directory sem credenciais.

 IADsContainer *pContainer = NULL;
 IDispatch *pNewObject = NULL;
 IADsTSUserEx *pTSUser = NULL;
 IADsUser *pUser = NULL;
 HRESULT hr = ERROR_SUCCESS;

 CoInitialize(NULL);
 //
 // Bind to the known container.
 //
 hr = ADsGetObject(
    L"LDAP://DOMAIN/CN=Users,DC=Server1,DC=Domain,DC=com",
    IID_IADsContainer,
    (void**)&pContainer);

 if( !SUCCEEDED(hr)) {
  wprintf(L"ADsGetObject ret failed with 0x%x\n", hr);
  return FALSE;
 }
 //
 // Create the new Active Directory Service Interfaces User object.
 //
 hr = pContainer->Create(L"user",
                         L"cn=test3",
                         &pNewObject);
 pContainer->Release();

 if( !SUCCEEDED(hr)) {
  wprintf(L"Create ret failed with 0x%x\n", hr);
  return FALSE;
 }
 //
 // Get the IADsTSUser interface from the user object.
 //
 hr = pNewObject->QueryInterface(IID_IADsTSUserEx, (void**)&pTSUser);

 if( !SUCCEEDED(hr)) { 
  wprintf(L"QueryInterface for IADsTSUserEx failed with ret 0x%x\n",
          hr);
  return FALSE;
 }
 //
 // Get the IADsTSUser interface from the user object.
 //
 hr = pNewObject->QueryInterface(IID_IADsUser, (void**)&pUser);

 if( !SUCCEEDED(hr)) {
  wprintf(L"QueryInterface for IAsUser failed with 0x%x\n", hr);
  return FALSE;
 }
 pNewObject->Release();

 //
 // Set TerminalServicesProfilePath
 //
 pTSUser->put_TerminalServicesProfilePath(L"c:\\windows");
 pTSUser->Release();

 //
 // Commit the object data to the directory.
 //
 pUser->SetInfo();
 pUser->Release();
 CoUninitialize();

Você pode usar os exemplos de script a seguir para associar ao namespace de um provedor. Dois exemplos associam-se a credenciais fornecidas; duas associações sem credenciais.

O primeiro exemplo mostra um script que se associa ao banco de dados SAM (Gerenciador de Contas de Segurança) com as credenciais fornecidas.

O segundo exemplo mostra um script que se associa ao banco de dados do Active Directory com as credenciais fornecidas.

Set DSO = GetObject("WinNT:")
Set usr = DSO.OpenDSObject(
    "WinNT://Server1/Test,user",
    Domain\User,
    Password,
    ADS_SECURE_AUTHENTICATION)
Wscript.echo usr.TerminalServicesProfilePath
usr.TerminalServicesProfilePath = "profile path"
usr.SetInfo
WScript.echo usr.TerminalServicesProfilePath

Set DSO = GetObject("LDAP:")
Set usr = DSO.OpenDSObject(
    "LDAP://DOMAIN/CN=Test,CN=Users,DC=Server1,DC=Domain,DC=com",
    Domain\User,
    Password,
    ADS_SECURE_AUTHENTICATION)
Wscript.echo usr.TerminalServicesProfilePath
usr.TerminalServicesProfilePath = "profile path"
usr.SetInfo
WScript.echo usr.TerminalServicesProfilePath

Requisitos

   
Cliente mínimo com suporte Windows Vista
Servidor mínimo com suporte Windows Server 2008
Plataforma de Destino Windows
Cabeçalho tsuserex.h (inclua Tsuserex.h, Tsuserex_i.c)
DLL Tsuserex.dll

Confira também

IADsTSUserEx