FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Windows Phone Installer (WPI) (https://fileforums.com/showthread.php?t=96242)

ZakirAhmad 18-02-2018 00:53

is it possible to use percentage instead of ram usage in mb in srepint('', 256,0) function of isdone.

PsYcHo_RaGE 02-03-2018 01:37

just downloaded

tried to compile

got this bloody error

Line 349:
Column 8:
Unknown Type 'TTimer'

KaktoR 02-03-2018 01:41

Use Inno Unicode Enhanced Edition

pakrat2k2 02-03-2018 07:20

Quote:

Originally Posted by KaktoR (Post 468575)
Use Inno Unicode Enhanced Edition

which you find in first post of topic
http://www.fileforums.com/showthread.php?t=96619

mahbodsx 14-03-2018 12:01

Sorry guys which Script Use Pzlib

rinaldo 14-03-2018 16:21

Quote:

Originally Posted by mahbodsx (Post 468999)
Sorry guys which Script Use Pzlib

this

PsYcHo_RaGE 19-03-2018 22:03

Quote:

Originally Posted by Razor12911 (Post 433799)
Windows Phone Installer v3.1

-Inno Setup Enhanced Edition 2 Unicode is required - Download
-Design based on Windows 8.1, Windows Phone 7.5, 7.8 and 8
-Enjoy

Link of WPI based on FMX:
http://fileforums.com/showthread.php?t=99856


Thank you very much for this installer i appreciate your hard work:)
but i need some help with music:confused: how to add it, and when we install something with this installer it always goes to lockscreen again; i want lockscreen but only for one time when we run the installer, and also how t add the fonts to installer so that they work if i don't have these fonts installed on my pc


and if you're going to help me please explain it well because i am still a noob
and i don't want to mess with your installer:)

PsYcHo_RaGE 19-03-2018 22:57

Quote:

Originally Posted by harshlohaan (Post 455993)
Thank you Razor12911 for the script. But I have a question. I've created multiple .bin archives (Setup-1.bin, Setup-2.bin,...). So in the script where there is a single 'data.bin' what changes I need to make for these multiple archives?


like this

[Archives]
;Precomp 0.38
;Archive Types 7Zip, Freearc and WinRAR
PrecompVer=0.38
Archive1Type=Freearc
Archive1Source={src}\Setup-1.bin(Here u need to change)
Archive1Output={app}
Archive1Disk=1
Archive1Password=

PrecompVer=0.38
Archive2Type=Freearc
Archive2Source={src}\Setup-2.bin(Here u need to change if you have another .bin file)
Archive2Output={app}
Archive2Disk=2
Archive2Password=

PsYcHo_RaGE 19-03-2018 23:04

Quote:

Originally Posted by TWOELV (Post 456479)
http://i.imgur.com/pdVqBDN.png
some people are getting that error with my repack but most people doesn't get it
so i decided to use different installer based on inno and same story
does it have something to do with masked data compressor not supporting wpi very well ?
i use the optimal compression method

Don't use the masked data compressor to compress files, but if you want to use it u need to edit the .groups file in the compressor so add more extensions to it but it seems it is still buggy & in current situation every repacker doen't use masked data compressor

PsYcHo_RaGE 19-03-2018 23:14

Quote:

Originally Posted by Nizar3003 (Post 449027)
This archive is corrupt, try with other archive.

Maybe the archive is corrupt but if its not change the ISDone.dll with suitable one :)

PsYcHo_RaGE 19-03-2018 23:18

Quote:

Originally Posted by zaniyah (Post 448894)
how to fix this ? ISDone.dll

An error Occured when unpacking!
Unarc.dll returned error code:-1
ERROR: archive data corrupted (Decompression Fails)

this fail is when im installing it


Change the ISDone.dll file & arc.exe

incompatibility between arc.exe and unarc.dll, use the same arc.exe and unarc.dll for compression and decompression.

PsYcHo_RaGE 19-03-2018 23:35

Quote:

Originally Posted by truerepacks (Post 449632)
Even added UltraARC Support with correct progress percentage

Can you send me the script with all attached files, i really want to modify this also and i was lookin for this:rolleyes:

PsYcHo_RaGE 19-03-2018 23:40

Quote:

Originally Posted by Nizar3003 (Post 449751)
I think mini installer version not bad, because i make to. but i can't share because i remove watermark. but the installer i make for me not for share. for Razor12911, i'm sorry for remove your watermark.

No sorries please Credit goes to razor only & no one else who have modified it
i too have modified razors script but i have the included the razors watermark too so that this world know that this wpi has created originally by razor and i really appreciate razors work on it and his name also looks cool on our custom modded wpi's:)

bunti_o4u 16-04-2018 13:43

I tried to create new page between welcome page and select directory page but no new page is getting created in the installer.

procedure CurPageChanged(CurPageID: Integer);

wpLicense:
begin
ButtonSetText(NextBtn,'Proceed');
ButtonSetText(BackBtn1,'Back');
end;

function ShouldSkipPage(PageID: Integer): Boolean;
begin
if (PageID <> wpWelcome) and (PageID <> wpLicense) and (PageID <> wpSelectDir) and (PageID <> wpInstalling) and (PageID <> wpFinished) then
Result:=True
else
Result:=False;
if (ISDoneError = True) and (PageID = wpFinished) then
Result:=True;
end;

ffmla 17-04-2018 01:21

Quote:

Originally Posted by bunti_o4u (Post 470267)
I tried to create new page between welcome page and select directory page but no new page is getting created in the installer.

procedure CurPageChanged(CurPageID: Integer);

wpLicense:
begin
ButtonSetText(NextBtn,'Proceed');
ButtonSetText(BackBtn1,'Back');
end;

function ShouldSkipPage(PageID: Integer): Boolean;
begin
if (PageID =wpLicense)or(PageID =wpInfoBefore)or(PageID =wpUserInfo)or(PageID =wpSelectComponents)or(PageID =wpSelectProgramGroup)or(PageID =wpSelectTasks)or(PageID =wpReady)then
Result:= True;
end;

You may test this.
In function ShouldSkipPage(PageID: Integer): Boolean; function you need to mention which page you want to hide.
ie. You use wpLicense page,then remove it from hide function.
Quote:

function ShouldSkipPage(PageID: Integer): Boolean;
begin
if (PageID =wpInfoBefore)or(PageID =wpUserInfo)or(PageID =wpSelectComponents)or(PageID =wpSelectProgramGroup)or(PageID =wpSelectTasks)or(PageID =wpReady)then
Result:= True;
end;


All times are GMT -7. The time now is 23:44.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com