Como faço um atalho de uma conexão de área de trabalho remota e incluo a senha?

13

Eu quero abrir uma conexão de área de trabalho remota diretamente de um atalho e quero inserir a senha do nome de usuário no atalho.

Como obtenho o caminho de uma área de trabalho remota a partir de um atalho do RDP e podemos definir a senha em um atalho do RDP?

    
por metal gear solid 28.02.2010 / 18:04

5 respostas

12

Ao salvar o arquivo RDP, marque a caixa de seleção Salvar minha senha . Isso salvará sua senha no arquivo .RDP em um formato criptografado. Tenha cuidado, pois as pessoas descobriram como descriptografá-lo :

    
por 28.02.2010 / 18:19
5

Tente editar os arquivos .rdp diretamente. Eu encontrei um artigo, Como as senhas do rdp são criptografadas , dizendo como, e no fundo, nos posts, há algum código para como fazer isso em c # também:

using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.ComponentModel;
using System.Security.Cryptography;
using System.Linq;
using System.Text;

class Mstscpw
{
    private const int CRYPTPROTECT_UI_FORBIDDEN = 0x1;
    // Wrapper for the NULL handle or pointer.
    static private IntPtr NullPtr = ((IntPtr)((int)(0)));
    // Wrapper for DPAPI CryptProtectData function.
    [DllImport("crypt32.dll", SetLastError = true,
    CharSet = System.Runtime.InteropServices.CharSet.Auto)]
    private static extern bool CryptProtectData(
    ref DATA_BLOB pPlainText,
    [MarshalAs(UnmanagedType.LPWStr)]string szDescription,
    IntPtr pEntroy,
    IntPtr pReserved,
    IntPtr pPrompt,
    int dwFlags,
    ref DATA_BLOB pCipherText);
    // BLOB structure used to pass data to DPAPI functions.
    [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
    internal struct DATA_BLOB
    {
        public int cbData;
        public IntPtr pbData;
    }

    private static void InitBLOB(byte[] data, ref DATA_BLOB blob)
    {
        blob.pbData = Marshal.AllocHGlobal(data.Length);
        if (blob.pbData == IntPtr.Zero)
            throw new Exception("Unable to allocate buffer for BLOB data.");

        blob.cbData = data.Length;
        Marshal.Copy(data, 0, blob.pbData, data.Length);
    }

    public string encryptpw(string pw)
    {
        byte[] pwba = Encoding.Unicode.GetBytes(pw);
        DATA_BLOB dataIn = new DATA_BLOB();
        DATA_BLOB dataOut = new DATA_BLOB();
        StringBuilder epwsb = new StringBuilder();
        try
        {
            try
            {
                InitBLOB(pwba, ref dataIn);
            }
            catch (Exception ex)
            {
                throw new Exception("Cannot initialize dataIn BLOB.", ex);
            }

            bool success = CryptProtectData(
            ref dataIn,
            "psw",
            NullPtr,
            NullPtr,
            NullPtr,
            CRYPTPROTECT_UI_FORBIDDEN,
            ref dataOut);

            if (!success)
            {
                int errCode = Marshal.GetLastWin32Error();
                throw new Exception("CryptProtectData failed.", new Win32Exception(errCode));
            }

            byte[] epwba = new byte[dataOut.cbData];
            Marshal.Copy(dataOut.pbData, epwba, 0, dataOut.cbData);
            // Convert hex data to hex characters (suitable for a string)
            for (int i = 0; i < dataOut.cbData; i++)
                epwsb.Append(Convert.ToString(epwba[i], 16).PadLeft(2, '0').ToUpper());
        }
        catch (Exception ex)
        {
            throw new Exception("unable to encrypt data.", ex);
        }
        finally
        {
            if (dataIn.pbData != IntPtr.Zero)
                Marshal.FreeHGlobal(dataIn.pbData);

            if (dataOut.pbData != IntPtr.Zero)
                Marshal.FreeHGlobal(dataOut.pbData);
        }
        return epwsb.ToString();
    }
}
// Test code:
class program
{
    static void Main(string[] args)
    {
        Mstscpw mstscpw = new Mstscpw();
        string epw = mstscpw.encryptpw("password");
        Console.WriteLine("Encrypted password for \"password\" {0} characters: \r\n{1}", epw.Length, epw);
        Console.ReadLine();
    }
}
    
por 11.03.2011 / 16:43
2

Remote Desktop Plus de Donkz.nl.

Recurso # 1:

Login automatically from the command line.

Exemplo:

rdp /v:nlmail01 /u:administrator /p:P@ssw0rd! /max
    
por 27.04.2012 / 15:09
0

Bem, parcialmente correto, você não pode realmente editar as Credenciais da Microsoft facilmente, e o comando não é rdp , mas se você executar o comando mstsc ele corrigirá o problema de 'salvar senha' no WinXP.

Acessar a área de trabalho remota via linha de comando

mstsc [<connection file>] [/v:<server[:port]>] [/admin] [/f[ullscreen]] [/w:<width>] [/h:<height>] [/public] | [/span] [/edit "connection file"] [/migrate] [/?]

Basta abrir uma janela do CMD, digitar mstsc , colocar o nome do PC ou IP, clicar em Opções e seguir o seu caminho, mas faça um Salvar como ... para que você tenha um atalho de trabalho para mais tarde. / p>     

por 09.07.2014 / 14:53
0

Alternativamente, crie um script em lote (.bat) com as seguintes linhas:

cmdkey /generic:"computername or IP" /user:"username" /pass:"password" mstsc /v:"computer name or IP"

Nota: substitua o IP, o nome de usuário e a senha no script pelas credenciais válidas.

Agora, execute o script simplesmente clicando duas vezes nele.

Isso funciona.

    
por 12.03.2015 / 08:29