Muchas gracias!! Ya he quitado todos menos SynTPEnh y hkcmd. Sigue lentillo, pero bueno, qué se le va a hacer.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCitarSi HKCU:Run EPLTarget\P0000000000000002 C:\Windows\system32\spool\DRIVERS\x64\3\E_IATIIME.EXE /EPT "EPLTarget\P0000000000000002" /M "XP-202 203 206 Series"
Si HKLM:Run AvastUI.exe "C:\Program Files\AVAST Software\Avast\AvastUI.exe" /nogui
Si HKLM:Run EEventManager "C:\Program Files (x86)\Epson Software\Event Manager\EEventManager.exe"
Si HKLM:Run HotKeysCmds C:\Windows\system32\hkcmd.exe
Si HKLM:Run IAStorIcon C:\Program Files (x86)\Intel\Intel(R) Rapid Storage Technology\IAStorIcon.exe
Si HKLM:Run IgfxTray C:\Windows\system32\igfxtray.exe
Si HKLM:Run Persistence C:\Windows\system32\igfxpers.exe
Si HKLM:Run PLFSetI C:\Windows\PLFSetI.exe
Si HKLM:Run RtHDVCpl C:\Program Files\Realtek\Audio\HDA\RAVCpl64.exe -s
Si HKLM:Run SynTPEnh %ProgramFiles%\Synaptics\SynTP\SynTPEnh.exe
for (int j = 0; j < i+1; j++)
b[j] = a[j];
#include <string.h>
#include <iostream>
using namespace std;
int main()
{
char* a = new char[20];
char *b;
int i = 0;
cin >> a;
while (a[i] != '\0')
i++;
b = new char[i+1];
for (int j = 0; j < i+1; j++)
b[j] = a[j];
cout << b;
}