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

Is there any way to create a Windows Installer using Visual Studio 2008 to
Does anyone know is there a way to implement Windows Live ID authentication into
Is there a way in Windows/Linux or any other operating system to know at
Are there any known issues with ASP.Net Ajax and IE6 in Windows 2000 machines
I'd like to know if there is a way to create and launch a
Is there a way to create an installable (ideally XCopy installable) version of an
Is there a way to using a JQuery function to programmatically create an event
Is there a way to simply create a new document e.g. on the Desktop
Is there some reasonably cross platform way to create a thumbnail image given a
Is there any way to know for events when move a window with window.open?.

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.