Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 566687
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T13:00:15+00:00 2026-05-13T13:00:15+00:00

On Windows XP there is a known way to create a Remote Assistance Ticket.

  • 0

On Windows XP there is a known way to create a Remote Assistance Ticket.

http://msdn.microsoft.com/en-us/library/ms811079.aspx

But on Vista this does not appear to work. How does one do this on Vista or Windows 7?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T13:00:16+00:00Added an answer on May 13, 2026 at 1:00 pm

    There turns out to be two ways. The Microsoft API is called IRASrv and is documented here:

    http://msdn.microsoft.com/en-us/library/cc240176(PROT.10).aspx

    Another way is to simply call msra.exe. with password and novice params (e.g. msra.exe /saveasfile testfile thepassword). However that does prompt the user with the password dialog.

    Here is example code for calling the IRASrv interface and generating a Remote Assistance Connection String.

    COSERVERINFO            si; ::ZeroMemory( &si, sizeof( si ) );
    MULTI_QI                qi; ::ZeroMemory( &qi, sizeof( qi ) );
    
    HRESULT hr = S_OK;
    
    BSTR bstrUserName     = SysAllocString(L"jon");
    BSTR bstrDomainName   = SysAllocString(L"");
    BSTR bstrPasswordStr     = SysAllocString(L"testpass");
    
    // Get the security information entered by the user
    _bstr_t bstrUser(bstrUserName);
    _bstr_t bstrDomain(bstrDomainName);
    _bstr_t bstrPassword(bstrPasswordStr);
    
    // Set AuthIdentity
    SEC_WINNT_AUTH_IDENTITY_W AuthIdentity = {
        (unsigned short*)bstrUserName,
        bstrUser.length(),
        (unsigned short*)bstrDomainName,
        bstrDomain.length(),
        (unsigned short*)bstrPasswordStr,
        bstrPassword.length(),
        SEC_WINNT_AUTH_IDENTITY_UNICODE 
    };
    COAUTHINFO AuthInfo = {
        RPC_C_AUTHN_WINNT, 
        RPC_C_AUTHZ_DEFAULT, 
        NULL, 
        RPC_C_AUTHN_LEVEL_PKT_PRIVACY,  // The authentication level used
        RPC_C_IMP_LEVEL_IMPERSONATE, 
        (COAUTHIDENTITY*)&AuthIdentity,
        EOAC_NONE 
    };
    
    si.pAuthInfo = &AuthInfo;
    si.pwszName = bstrMachineName;
    qi.pIID     = &(__uuidof(RAServerLib::IRASrv));
    
    hr = ::CoCreateInstanceEx(
        __uuidof(RAServerLib::RASrv), NULL, CLSCTX_REMOTE_SERVER, 
        &si, 1, &qi );
    if (FAILED(hr))
    {
        return hr;
    }
    CComPtr<RAServerLib::IRASrv> prasrv;
    hr = qi.pItf->QueryInterface(__uuidof(RAServerLib::IRASrv), (void**)&prasrv);
    if (FAILED(hr))
    {
        return hr;
    }
    
    LPWSTR pstr=NULL;
    
    hr = prasrv->raw_GetNoviceUserInfo(&pstr);
    if (FAILED(hr))
    {
        return hr;
    }
        pstr contains the Remote Assistance Connection String (type 2)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

does anyone know is there a way to implement Windows Live ID authentication into
Under Windows there are some handy functions like QueryPerformanceCounter from mmsystem.h to create a
I'd like to know if there is a way to create and launch a
I know there are several ways to deploy a .net windows client application: There's
Is there a reliable equivalent of xkill for Windows? For those who don't know
In windows there is perfmon to monitor various performances aspects (called counters ) of
Are there Windows API functions that allows reading what the current password policy is?
On Windows NTFS there is a nice but mostly unused feature called Alternate Data
Is there a Windows equivalent of the Unix command, nice ? I'm specifically looking
Is there in Windows API or in MFC any analog to atoh() function? atoh()

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.