Hello Guys! I don't know if its permitted to post here but here we are:
How to Remove your Portable Skype Adds:
1) MAKE A BAT FILE:
@ECHO OFF
::CMD OPTIONS
COLOR A
MODE con:cols=140 lines=35
CLS
::SET OPTIONS
SETLOCAL EnableDelayedExpansion
SET Variable=0
SET XML=config.xml
SET /P USERNAME=Insert your Skype Username:
CD "%~dp0\DATA\SETTINGS\%USERNAME%"
::CODE
ATTRIB -R %XML%
(for /F "delims=" %%a in (%XML%) do (
set "line=%%a"
set "newLine=!line:AdvertPlaceholder>=!"
if "!newLine!" neq "!line!" (
set "newLine=%Variable%"
)
echo !newLine!
)) > %XML%2
::REG
REG ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\skype.com\apps" /v https /t REG_DWORD /d 00000004
::CLEAN UP
DEL %XML%
RENAME %XML%2 %XML%
ATTRIB +R %XML%
PAUSE
2) Make sure it's in your SkypePortable.exe folder.
3) Enjoy.