diff --git a/src-installer/RDPWInst.dpr b/src-installer/RDPWInst.dpr index ed41840..6f934f5 100644 --- a/src-installer/RDPWInst.dpr +++ b/src-installer/RDPWInst.dpr @@ -629,7 +629,7 @@ begin Writeln('[-] DeleteFile error (code ', Code, ').'); Exit; end; - Writeln('[+] Removed file: ', FullPath); + Writeln('[+] Removed file: ', Path + 'rdpwrap.ini'); if not DeleteFile(PWideChar(FullPath)) then begin diff --git a/src-installer/resource.res b/src-installer/resource.res index 560f5f6..b03066d 100644 Binary files a/src-installer/resource.res and b/src-installer/resource.res differ diff --git a/src-x86-binarymaster/rdpwrap.dpr b/src-x86-binarymaster/rdpwrap.dpr index 7a7ae49..f7024b2 100644 --- a/src-x86-binarymaster/rdpwrap.dpr +++ b/src-x86-binarymaster/rdpwrap.dpr @@ -541,8 +541,8 @@ begin TSMain := GetProcAddress(TS_Handle, 'ServiceMain'); TSGlobals := GetProcAddress(TS_Handle, 'SvchostPushServiceGlobals'); WriteLog( - 'Base addr: 0x' + IntToHex(TS_Handle, 8) + - 'SvcMain: termsrv.dll+0x' + IntToHex(Cardinal(@TSMain) - TS_Handle, 1) + + 'Base addr: 0x' + IntToHex(TS_Handle, 8) + #13#10 + + 'SvcMain: termsrv.dll+0x' + IntToHex(Cardinal(@TSMain) - TS_Handle, 1) + #13#10 + 'SvcGlobals: termsrv.dll+0x' + IntToHex(Cardinal(@TSGlobals) - TS_Handle, 1) );