What is the setup Wizard ?

295 views
Skip to first unread message

vmars vernon

unread,
Feb 12, 2022, 10:53:34 AM2/12/22
to innosetup
TIA , 
I see the 'Wizard' mentioned often in various Docs online .
But in IS 6 , I can find no Wizard . 
Is it a separate program from Compiler .

Laurent Combémorel

unread,
Feb 12, 2022, 12:46:30 PM2/12/22
to innosetup
File / New... will open the Wizard.

Read the manual !

vmars vernon

unread,
Feb 13, 2022, 6:20:54 PM2/13/22
to innosetup
I do read the manual , but I have a learning disability and I need to work backwards , with examples , then go and look up each statement , and read over and over .
Ok , I set up via Wizard , I was stumped for a while because Help calls them Wizard Pages instead of what I was expecting  Wizard Screens .
Anyways I did 'Run' and I get Errors when trying to [Files]  Copy a 2  Folder  :
Source: "C:\PureBasic-myApps\........\KidSafeBrowser.exe.WebView2\*"; DestDir: "{app}";
Source: "C:\PureBasic-myApps\........\gdiplus\*"; DestDir: "{app}";
IS thinks  KidSafeBrowser.exe.WebView2  is a File  not a Folder . 
How can I get IS to just copy/paste the Folders as in ?

I tried various  Flags: ignoreversion recursesubdirs createallsubdirs  
But  IS  Plucks  out the files and shows them serarately , But my program expects the Files to be in Folders , not Installed separately .

I also read  [Dirs]  but seems to me that IS will create  Folders  , but I want to  Copy/Paste  Folders  not Create  them .

Thanks for your Help...


Gavin Lambert

unread,
Feb 13, 2022, 6:46:27 PM2/13/22
to inno...@googlegroups.com
On 14/02/2022 12:20, vmars vernon wrote:
> Anyways I did 'Run' and I get Errors when trying to [Files]  Copy a 2
> Folder  :
> Source: "C:\PureBasic-myApps\........\KidSafeBrowser.exe.WebView2\*";
> DestDir: "{app}";
> Source: "C:\PureBasic-myApps\........\gdiplus\*"; DestDir: "{app}";
> IS thinks  KidSafeBrowser.exe.WebView2  is a File  not a Folder .
> How can I get IS to just copy/paste the Folders as in ?
>
> I tried various  Flags: ignoreversion recursesubdirs createallsubdirs
> But  IS  Plucks  out the files and shows them serarately , But my
> program expects the Files to be in Folders , not Installed separately .

Laurent already answered that two days ago.

vmars vernon

unread,
Feb 13, 2022, 7:35:26 PM2/13/22
to innosetup
Yikes! You are right .
It didn't makes sense to me that
the Destination for Folder "\KidSafeBrowser.exe.WebView2\*";
Would be the (DestDir: "{app}\KidSafeBrowser.exe.WebView2";") itself .
But sure enough it works .

Thanks All

Gavin Lambert

unread,
Feb 13, 2022, 8:09:18 PM2/13/22
to inno...@googlegroups.com
On 14/02/2022 13:35, vmars vernon wrote:
> It didn't makes sense to me that
> the Destination for Folder "\KidSafeBrowser.exe.WebView2\*";
> Would be the (DestDir: "{app}\KidSafeBrowser.exe.WebView2";") itself .
> But sure enough it works .

The \* at the end means you're not copying "the folder", you're copying
"all files inside the folder". As such you do need to specify the
destination folder name if you want to retain it.

Note that by default this will not copy subfolders. If you want those
as well then you will also need to apply the recursesubdirs Flag.

vmars vernon

unread,
Feb 14, 2022, 10:41:01 AM2/14/22
to innosetup
Thanks ,
When I Run with :
Source: "C:\.....\KidSafeBrowser\gdiplus\"; DestDir: "{app}\gdiplus"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "C:\.....\KidSafeBrowser\KidSafeBrowser.exe.WebView2\"; DestDir: "{app}\KidSafeBrowser.exe.WebView2"; Flags: ignoreversion recursesubdirs createallsubdirs 

KidSafeBrowser.exe.WebView2\  gets copied properly .
KidSafeBrowser\gdiplus\  gets copied  But  is missing some files .

And  when I DblClick on KidSafeBrowser.exe Desktop Icon ,   it tries to Run (the Timer Icon flashes a few times) But KidSafeBrowser.exe doesnt Run .

When I Run with :
Source: "C:\.....\KidSafeBrowser\gdiplus\*"; DestDir: "{app}\gdiplus"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "C:\.....\KidSafeBrowser\KidSafeBrowser.exe.WebView2\*"; DestDir: "{app}\KidSafeBrowser.exe.WebView2"; Flags: ignoreversion recursesubdirs createallsubdirs 
All the Directories are Copied properly ,  But   But KidSafeBrowser.exe doesnt Run either .
Here is the complete .iss "
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "KidSafeBrowser"
#define MyAppVersion "1.5"
#define MyAppPublisher "kidsafebrowser.us"
#define MyAppURL "https://www.kidsafebrowser.us"
#define MyAppExeName "KidSafeBrowser.exe"

[Setup]
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{FA753AF7-8CA4-426A-A208-844C1EFFBE1E}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={autopf}\{#MyAppName}
DisableProgramGroupPage=yes
LicenseFile=C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\License.txt
InfoAfterFile=C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\AfterInstallation.txt
; Uncomment the following line to run in non administrative install mode (install for current user only.)
;PrivilegesRequired=lowest
OutputBaseFilename=KidSafeBrowser
SetupIconFile=C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\KidSafeBrowser.ico
Compression=lzma
SolidCompression=yes
WizardStyle=modern

[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked

[Files]
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\KidSafeBrowser.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\KidSafeBrowser-EDITOR.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\WebView2Loader.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\SafeBrowser-Editor-HELP.html"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\SafeBrowser-HELP.html"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\SafeBrowserHome.html"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\KidSafeBrowser.ico"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\SafeBrowser.ico"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\SakerLank.swd"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\Readme.txt"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\SakerPlats.swd"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\ColoredBlocks.png"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\gdiplus\"; DestDir: "{app}\gdiplus"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\KidSafeBrowser.exe.WebView2\"; DestDir: "{app}\KidSafeBrowser.exe.WebView2"; Flags: ignoreversion recursesubdirs createallsubdirs
; NOTE: Don't use "Flags: ignoreversion" on any shared system files

[Icons]
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon

[Run]
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent

Thanks for your Help...

Laurent Combémorel

unread,
Feb 14, 2022, 12:24:46 PM2/14/22
to innosetup
Hi

This is doubtful:
#define MyAppExeName "KidSafeBrowser.exe"
...

[Files]
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\KidSafeBrowser.exe"; DestDir: "{app}"; Flags: ignoreversion

It is the same...

Why don't you use :
[Files]
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\*"; DestDir: "{app}"; Flags: ignoreversion  recursesubdirs createallsubdirs

It would install all what is in  C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser, files and subdirs recursively...

Can you be more detailed on what is happening when you say " KidSafeBrowser.exe doesnt Run" ?

vmars vernon

unread,
Feb 14, 2022, 5:24:12 PM2/14/22
to innosetup
Gee , Great idea !
Here I can Show you what happens when I DblClick on  KidSafeBrowser.exe  ShortCut :

Laurent Combémorel

unread,
Feb 15, 2022, 9:58:23 AM2/15/22
to innosetup
Can you please add setuplogging=yes in the [setup] section, recompile, install, and share both compilation log and installation log ?

vmars vernon

unread,
Feb 15, 2022, 10:03:26 AM2/15/22
to innosetup
By Great idea , I mean this :
Source: "C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\*"; DestDir: "{app}"; Flags: ignoreversion  recursesubdirs createallsubdirs

This is a link to show what happens when I DblClick on Desktop Icon created by IS .

Interestingly , when I make a copy of "C:\Program Files\KidSafeBrowser" Folder 
and create a Desktop Folder called  ""KidSafeBrowser" ,
and then DblClick on "KidSafeBrowser.exe" , in that Folder .
Everything Runs fine ,
which makes me think it is a Registry problem . 

vmars vernon

unread,
Feb 15, 2022, 10:22:04 AM2/15/22
to innosetup
Sorry , I can find no  compilation.log  or  installation.log  on my system .
Where are they Located ?
Thanks

vmars vernon

unread,
Feb 15, 2022, 10:33:55 AM2/15/22
to innosetup
Oops! I think you mean this: 
Compilation.log
*** Starting compile.  [9:27:01 AM]

Preprocessing
   Reading file: C:\Program Files (x86)\Inno Setup 6\ISPPBuiltins.iss
Parsing [Setup] section, line 14
Parsing [Setup] section, line 15
Parsing [Setup] section, line 16
Parsing [Setup] section, line 18
Parsing [Setup] section, line 19
Parsing [Setup] section, line 20
Parsing [Setup] section, line 21
Parsing [Setup] section, line 22
Parsing [Setup] section, line 23
Parsing [Setup] section, line 24
Parsing [Setup] section, line 25
Parsing [Setup] section, line 28
Parsing [Setup] section, line 29
Parsing [Setup] section, line 30
Parsing [Setup] section, line 31
Parsing [Setup] section, line 32
Parsing [Setup] section, line 33
Reading file (LicenseFile)
Reading file (InfoAfterFile)
Reading file (WizardImageFile)
Reading file (WizardSmallImageFile)
Preparing Setup program executable
   Updating icons (SETUP.E32)
   Updating version info (SETUP.E32)
Determining language code pages
Parsing [Languages] section, line 36
   Reading file: C:\Program Files (x86)\Inno Setup 6\Default.isl
   Messages in script file
Reading default messages from Default.isl
Parsing [Languages] section, line 36
   Reading file: C:\Program Files (x86)\Inno Setup 6\Default.isl
Parsing [LangOptions], [Messages], and [CustomMessages] sections
   Messages in script file
Reading [Code] section
Parsing [Tasks] section, line 39
Parsing [Icons] section, line 46
Parsing [Icons] section, line 47
Parsing [Run] section, line 50
Parsing [Files] section, line 42
Deleting KidSafeBrowser.exe from output directory
Creating setup files
   Updating icons (SETUP.EXE)
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\AfterInstallation.txt
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\ColoredBlocks.png
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser-EDITOR.exe
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.ico
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\License.txt
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\Readme.txt
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\SafeBrowser-Editor.png
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\SafeBrowser.png
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\SafeBrowserHome.html
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\SafeBrowserHome.png
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\WebView2Loader.dll
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\gdiplus\GdiPlus.pbi
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\gdiplus\GdiPlusFlat.pbi
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\gdiplus\GdiPlusInit.pbi
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\gdiplus\lib\x64\gdiplus.lib
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\gdiplus\lib\x86\gdiplus.lib
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Last Version
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Local State
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\BrowserMetrics\BrowserMetrics-6209823E-85C.pma
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\BrowserMetrics\BrowserMetrics-620985AE-358.pma
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Crashpad\metadata
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Crashpad\settings.dat
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Crashpad\throttle_store.dat
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Cookies
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Cookies-journal
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Favicons
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Favicons-journal
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\heavy_ad_intervention_opt_out.db
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\heavy_ad_intervention_opt_out.db-journal
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\History
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\History-journal
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\LOCK
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\LOG
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Login Data
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Login Data-journal
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Network Action Predictor
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Network Action Predictor-journal
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Network Persistent State
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Preferences
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\PreferredApps
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\README
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Secure Preferences
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Top Sites
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Top Sites-journal
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Visited Links
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Web Data
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Web Data-journal
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\WebAssistDatabase
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\WebAssistDatabase-journal
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\AutofillStrikeDatabase\LOCK
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\AutofillStrikeDatabase\LOG
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\BudgetDatabase\LOCK
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\BudgetDatabase\LOG
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Cache\data_0
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Cache\data_1
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Cache\data_2
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Cache\data_3
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Cache\index
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Code Cache\js\index
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Code Cache\js\index-dir\the-real-index
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Code Cache\wasm\index
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Code Cache\wasm\index-dir\the-real-index
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\data_reduction_proxy_leveldb\000003.log
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\data_reduction_proxy_leveldb\CURRENT
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\data_reduction_proxy_leveldb\LOCK
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\data_reduction_proxy_leveldb\LOG
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\data_reduction_proxy_leveldb\MANIFEST-000002
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Download Service\EntryDB\LOCK
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Download Service\EntryDB\LOG
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Extension State\000003.log
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Extension State\CURRENT
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Extension State\LOCK
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Extension State\LOG
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Extension State\LOG.old
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Extension State\MANIFEST-000001
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Feature Engagement Tracker\AvailabilityDB\LOCK
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Feature Engagement Tracker\AvailabilityDB\LOG
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Feature Engagement Tracker\EventDB\LOCK
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Feature Engagement Tracker\EventDB\LOG
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\GPUCache\data_0
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\GPUCache\data_1
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\GPUCache\data_2
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\GPUCache\data_3
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\GPUCache\index
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Local Storage\leveldb\000003.log
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Local Storage\leveldb\CURRENT
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Local Storage\leveldb\LOCK
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Local Storage\leveldb\LOG
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Local Storage\leveldb\LOG.old
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Local Storage\leveldb\MANIFEST-000001
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\optimization_guide_hint_cache_store\LOCK
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\optimization_guide_hint_cache_store\LOG
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\optimization_guide_model_and_features_store\LOCK
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\optimization_guide_model_and_features_store\LOG
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Session Storage\000003.log
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Session Storage\CURRENT
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Session Storage\LOCK
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Session Storage\LOG
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Session Storage\LOG.old
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Session Storage\MANIFEST-000001
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\000003.log
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\CURRENT
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\LOCK
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\LOG
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\MANIFEST-000001
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\metadata\000003.log
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\metadata\CURRENT
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\metadata\LOCK
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\metadata\LOG
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\metadata\MANIFEST-000001
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Site Characteristics Database\000003.log
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Site Characteristics Database\CURRENT
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Site Characteristics Database\LOCK
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Site Characteristics Database\LOG
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Site Characteristics Database\LOG.old
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Site Characteristics Database\MANIFEST-000001
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Sync Data\LevelDB\000003.log
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Sync Data\LevelDB\CURRENT
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Sync Data\LevelDB\LOCK
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Sync Data\LevelDB\LOG
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Sync Data\LevelDB\LOG.old
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\Default\Sync Data\LevelDB\MANIFEST-000001
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\GrShaderCache\GPUCache\data_0
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\GrShaderCache\GPUCache\data_1
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\GrShaderCache\GPUCache\data_2
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\GrShaderCache\GPUCache\data_3
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\GrShaderCache\GPUCache\index
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\ShaderCache\GPUCache\data_0
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\ShaderCache\GPUCache\data_1
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\ShaderCache\GPUCache\data_2
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\ShaderCache\GPUCache\data_3
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\ShaderCache\GPUCache\index
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\local\cache
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\local\download_cache
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\local\warnStateCache
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\remote\edgeSettings
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\remote\edgeSettings_2.0-2f9188b68640dbf72295f9083a21d674a314721ef06f82db281cbcb052ff8ec1
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\remote\synchronousLookupUris
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\remote\synchronousLookupUris_637803869475157945
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\remote\topTraffic
   Compressing: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\InnoSetup\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\remote\topTraffic_637786431098503299
   Compressing Setup program executable
   Updating version info (SETUP.EXE)

*** Finished.  [9:27:04 AM, 00:02.828 elapsed]
=========================================================================================================
Installation.log
[09:27:50.173]   *** Setup started
[09:27:53.528]   Log opened. (Time zone: UTC-06:00)
[09:27:53.535]   Setup version: Inno Setup version 6.2.0
[09:27:53.540]   Original Setup EXE: C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\Output\KidSafeBrowser.exe
[09:27:53.542]   Setup command line: /SL5="$810A6,2308920,792576,C:\PureBasic-myApps\vmProjects\BUTTONS\PB-WebView2-Master\examples\KidSafeBrowser\Output\KidSafeBrowser.exe" /SPAWNWND=$E0ECC /NOTIFYWND=$E0F4E /DEBUGWND=$D0A04
[09:27:53.547]   Windows version: 10.0.19042  (NT platform: Yes)
[09:27:53.549]   64-bit Windows: Yes
[09:27:53.549]   Processor architecture: x64
[09:27:53.558]   User privileges: Administrative
[09:27:53.568]   Administrative install mode: Yes
[09:27:53.576]   Install mode root key: HKEY_LOCAL_MACHINE
[09:27:53.576]   64-bit install mode: No
[09:27:53.591]   Created temporary directory: C:\Users\vmars\AppData\Local\Temp\is-V91QR.tmp
[09:28:09.457]   Message box (Yes/No):
        The folder:
       
        C:\Program Files\KidSafeBrowser
       
        already exists. Would you like to install to that folder anyway?
[09:28:14.440]   User chose Yes.
[09:28:21.135]   Found 3 files to register with RestartManager.
[09:28:21.150]   Calling RestartManager's RmGetList.
[09:28:21.162]   RmGetList finished successfully.
[09:28:21.178]   RestartManager found no applications using one of our files.
[09:28:21.216]   Starting the installation process.
[09:28:21.231]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2
[09:28:21.235]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView
[09:28:21.239]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\CertificateRevocation
[09:28:21.249]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Crashpad
[09:28:21.250]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Crashpad\reports
[09:28:21.259]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default
[09:28:21.262]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\blob_storage
[09:28:21.262]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\blob_storage\8e0d9177-3ce3-4a4d-84df-c957e19f747a
[09:28:21.277]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Download Service
[09:28:21.278]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Download Service\Files
[09:28:21.284]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Sessions
[09:28:21.294]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\OriginTrials
[09:28:21.305]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Speech Recognition
[09:28:21.305]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Subresource Filter
[09:28:21.316]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Subresource Filter\Unindexed Rules
[09:28:21.316]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Trust Protection Lists
[09:28:21.316]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\WidevineCdm
[09:28:21.329]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\ZxcvbnData
[09:28:21.334]   Directory for uninstall files: C:\Program Files\KidSafeBrowser
[09:28:21.334]   Creating new uninstall log: C:\Program Files\KidSafeBrowser\unins000.dat
[09:28:21.353]   -- File entry --
[09:28:21.358]   Dest filename: C:\Program Files\KidSafeBrowser\unins000.exe
[09:28:21.365]   Time stamp of our file: 2022-02-15 09:27:53.198
[09:28:21.365]   Installing the file.
[09:28:21.416]   Successfully installed the file.
[09:28:21.431]   -- File entry --
[09:28:21.442]   Dest filename: C:\Program Files\KidSafeBrowser\AfterInstallation.txt
[09:28:21.443]   Time stamp of our file: 2022-02-13 11:13:20.000
[09:28:21.451]   Installing the file.
[09:28:21.460]   Successfully installed the file.
[09:28:21.469]   -- File entry --
[09:28:21.476]   Dest filename: C:\Program Files\KidSafeBrowser\ColoredBlocks.png
[09:28:21.484]   Time stamp of our file: 2022-01-29 19:44:28.000
[09:28:21.486]   Installing the file.
[09:28:21.498]   Successfully installed the file.
[09:28:21.499]   -- File entry --
[09:28:21.499]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser-EDITOR.exe
[09:28:21.499]   Time stamp of our file: 2022-02-09 14:46:30.000
[09:28:21.514]   Installing the file.
[09:28:21.530]   Successfully installed the file.
[09:28:21.531]   -- File entry --
[09:28:21.531]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe
[09:28:21.545]   Time stamp of our file: 2022-02-13 16:12:04.000
[09:28:21.545]   Installing the file.
[09:28:21.572]   Successfully installed the file.
[09:28:21.572]   -- File entry --
[09:28:21.582]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.ico
[09:28:21.582]   Time stamp of our file: 2022-02-09 13:34:34.000
[09:28:21.582]   Installing the file.
[09:28:21.596]   Successfully installed the file.
[09:28:21.596]   -- File entry --
[09:28:21.596]   Dest filename: C:\Program Files\KidSafeBrowser\License.txt
[09:28:21.596]   Time stamp of our file: 2022-02-13 11:07:42.000
[09:28:21.612]   Installing the file.
[09:28:21.623]   Successfully installed the file.
[09:28:21.623]   -- File entry --
[09:28:21.623]   Dest filename: C:\Program Files\KidSafeBrowser\Readme.txt
[09:28:21.623]   Time stamp of our file: 2022-02-11 10:12:36.000
[09:28:21.640]   Installing the file.
[09:28:21.650]   Successfully installed the file.
[09:28:21.650]   -- File entry --
[09:28:21.660]   Dest filename: C:\Program Files\KidSafeBrowser\SafeBrowser-Editor.png
[09:28:21.662]   Time stamp of our file: 2022-02-07 15:54:08.000
[09:28:21.662]   Installing the file.
[09:28:21.695]   Successfully installed the file.
[09:28:21.711]   -- File entry --
[09:28:21.711]   Dest filename: C:\Program Files\KidSafeBrowser\SafeBrowser.png
[09:28:21.711]   Time stamp of our file: 2022-02-09 14:41:02.000
[09:28:21.711]   Installing the file.
[09:28:21.763]   Successfully installed the file.
[09:28:21.763]   -- File entry --
[09:28:21.774]   Dest filename: C:\Program Files\KidSafeBrowser\SafeBrowserHome.html
[09:28:21.774]   Time stamp of our file: 2022-02-09 14:33:00.000
[09:28:21.774]   Installing the file.
[09:28:21.789]   Successfully installed the file.
[09:28:21.789]   -- File entry --
[09:28:21.789]   Dest filename: C:\Program Files\KidSafeBrowser\SafeBrowserHome.png
[09:28:21.789]   Time stamp of our file: 2022-02-07 15:52:54.000
[09:28:21.805]   Installing the file.
[09:28:21.843]   Successfully installed the file.
[09:28:21.844]   -- File entry --
[09:28:21.844]   Dest filename: C:\Program Files\KidSafeBrowser\WebView2Loader.dll
[09:28:21.844]   Time stamp of our file: 2022-01-05 13:22:14.000
[09:28:21.861]   Installing the file.
[09:28:21.875]   Successfully installed the file.
[09:28:21.880]   -- File entry --
[09:28:21.880]   Dest filename: C:\Program Files\KidSafeBrowser\gdiplus\GdiPlus.pbi
[09:28:21.880]   Time stamp of our file: 2022-01-05 13:22:14.000
[09:28:21.880]   Installing the file.
[09:28:21.896]   Creating directory: C:\Program Files\KidSafeBrowser\gdiplus
[09:28:21.902]   Successfully installed the file.
[09:28:21.903]   -- File entry --
[09:28:21.903]   Dest filename: C:\Program Files\KidSafeBrowser\gdiplus\GdiPlusFlat.pbi
[09:28:21.903]   Time stamp of our file: 2022-01-05 13:22:14.000
[09:28:21.919]   Installing the file.
[09:28:21.928]   Successfully installed the file.
[09:28:21.929]   -- File entry --
[09:28:21.929]   Dest filename: C:\Program Files\KidSafeBrowser\gdiplus\GdiPlusInit.pbi
[09:28:21.929]   Time stamp of our file: 2022-01-05 13:22:14.000
[09:28:21.947]   Installing the file.
[09:28:21.947]   Successfully installed the file.
[09:28:21.947]   -- File entry --
[09:28:21.962]   Dest filename: C:\Program Files\KidSafeBrowser\gdiplus\lib\x64\gdiplus.lib
[09:28:21.962]   Time stamp of our file: 2022-01-05 13:22:14.000
[09:28:21.962]   Installing the file.
[09:28:21.977]   Creating directory: C:\Program Files\KidSafeBrowser\gdiplus\lib
[09:28:21.977]   Creating directory: C:\Program Files\KidSafeBrowser\gdiplus\lib\x64
[09:28:21.992]   Successfully installed the file.
[09:28:21.994]   -- File entry --
[09:28:21.994]   Dest filename: C:\Program Files\KidSafeBrowser\gdiplus\lib\x86\gdiplus.lib
[09:28:21.994]   Time stamp of our file: 2022-01-05 13:22:14.000
[09:28:22.012]   Installing the file.
[09:28:22.012]   Creating directory: C:\Program Files\KidSafeBrowser\gdiplus\lib\x86
[09:28:22.024]   Successfully installed the file.
[09:28:22.025]   -- File entry --
[09:28:22.025]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Last Version
[09:28:22.025]   Time stamp of our file: 2022-02-13 16:26:54.000
[09:28:22.041]   Installing the file.
[09:28:22.050]   Successfully installed the file.
[09:28:22.050]   -- File entry --
[09:28:22.063]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Local State
[09:28:22.063]   Time stamp of our file: 2022-02-13 16:26:56.000
[09:28:22.063]   Installing the file.
[09:28:22.091]   Successfully installed the file.
[09:28:22.096]   -- File entry --
[09:28:22.104]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\BrowserMetrics\BrowserMetrics-6209823E-85C.pma
[09:28:22.104]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:22.104]   Installing the file.
[09:28:22.104]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\BrowserMetrics
[09:28:22.147]   Successfully installed the file.
[09:28:22.147]   -- File entry --
[09:28:22.159]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\BrowserMetrics\BrowserMetrics-620985AE-358.pma
[09:28:22.161]   Time stamp of our file: 2022-02-13 16:26:54.000
[09:28:22.161]   Installing the file.
[09:28:22.190]   Successfully installed the file.
[09:28:22.195]   -- File entry --
[09:28:22.201]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Crashpad\metadata
[09:28:22.202]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:22.202]   Installing the file.
[09:28:22.217]   Successfully installed the file.
[09:28:22.217]   -- File entry --
[09:28:22.229]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Crashpad\settings.dat
[09:28:22.229]   Time stamp of our file: 2022-02-13 16:26:56.000
[09:28:22.229]   Installing the file.
[09:28:22.241]   Successfully installed the file.
[09:28:22.256]   -- File entry --
[09:28:22.261]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Crashpad\throttle_store.dat
[09:28:22.275]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:22.286]   Installing the file.
[09:28:22.289]   Successfully installed the file.
[09:28:22.307]   -- File entry --
[09:28:22.330]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Cookies
[09:28:22.350]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:22.368]   Installing the file.
[09:28:22.385]   Successfully installed the file.
[09:28:22.402]   -- File entry --
[09:28:22.422]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Cookies-journal
[09:28:22.433]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:22.452]   Installing the file.
[09:28:22.479]   Successfully installed the file.
[09:28:22.506]   -- File entry --
[09:28:22.526]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Favicons
[09:28:22.540]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:22.550]   Installing the file.
[09:28:22.565]   Successfully installed the file.
[09:28:22.572]   -- File entry --
[09:28:22.584]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Favicons-journal
[09:28:22.591]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:22.598]   Installing the file.
[09:28:22.605]   Successfully installed the file.
[09:28:22.611]   -- File entry --
[09:28:22.623]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\heavy_ad_intervention_opt_out.db
[09:28:22.631]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:22.639]   Installing the file.
[09:28:22.651]   Successfully installed the file.
[09:28:22.658]   -- File entry --
[09:28:22.668]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\heavy_ad_intervention_opt_out.db-journal
[09:28:22.674]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:22.678]   Installing the file.
[09:28:22.688]   Successfully installed the file.
[09:28:22.695]   -- File entry --
[09:28:22.695]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\History
[09:28:22.695]   Time stamp of our file: 2022-02-13 16:26:56.000
[09:28:22.712]   Installing the file.
[09:28:22.726]   Successfully installed the file.
[09:28:22.734]   -- File entry --
[09:28:22.734]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\History-journal
[09:28:22.740]   Time stamp of our file: 2022-02-13 16:26:56.000
[09:28:22.740]   Installing the file.
[09:28:22.767]   Successfully installed the file.
[09:28:22.778]   -- File entry --
[09:28:22.789]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\LOCK
[09:28:22.797]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:22.802]   Installing the file.
[09:28:22.808]   Successfully installed the file.
[09:28:22.812]   -- File entry --
[09:28:22.819]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\LOG
[09:28:22.830]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:22.835]   Installing the file.
[09:28:22.845]   Successfully installed the file.
[09:28:22.851]   -- File entry --
[09:28:22.856]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Login Data
[09:28:22.861]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:22.861]   Installing the file.
[09:28:22.874]   Successfully installed the file.
[09:28:22.875]   -- File entry --
[09:28:22.875]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Login Data-journal
[09:28:22.875]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:22.891]   Installing the file.
[09:28:22.901]   Successfully installed the file.
[09:28:22.901]   -- File entry --
[09:28:22.901]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Network Action Predictor
[09:28:22.901]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:22.917]   Installing the file.
[09:28:22.917]   Successfully installed the file.
[09:28:22.928]   -- File entry --
[09:28:22.928]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Network Action Predictor-journal
[09:28:22.928]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:22.945]   Installing the file.
[09:28:22.945]   Successfully installed the file.
[09:28:22.945]   -- File entry --
[09:28:22.960]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Network Persistent State
[09:28:22.960]   Time stamp of our file: 2022-02-13 16:12:18.000
[09:28:22.960]   Installing the file.
[09:28:22.980]   Successfully installed the file.
[09:28:22.980]   -- File entry --
[09:28:22.991]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Preferences
[09:28:22.994]   Time stamp of our file: 2022-02-13 16:26:56.000
[09:28:22.994]   Installing the file.
[09:28:22.994]   Successfully installed the file.
[09:28:22.994]   -- File entry --
[09:28:23.011]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\PreferredApps
[09:28:23.011]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:23.011]   Installing the file.
[09:28:23.029]   Successfully installed the file.
[09:28:23.029]   -- File entry --
[09:28:23.029]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\README
[09:28:23.047]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:23.047]   Installing the file.
[09:28:23.061]   Successfully installed the file.
[09:28:23.061]   -- File entry --
[09:28:23.061]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Secure Preferences
[09:28:23.061]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:23.078]   Installing the file.
[09:28:23.094]   Successfully installed the file.
[09:28:23.095]   -- File entry --
[09:28:23.106]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Top Sites
[09:28:23.106]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:23.117]   Installing the file.
[09:28:23.127]   Successfully installed the file.
[09:28:23.128]   -- File entry --
[09:28:23.140]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Top Sites-journal
[09:28:23.143]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:23.143]   Installing the file.
[09:28:23.157]   Successfully installed the file.
[09:28:23.166]   -- File entry --
[09:28:23.171]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Visited Links
[09:28:23.171]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:23.179]   Installing the file.
[09:28:23.191]   Successfully installed the file.
[09:28:23.191]   -- File entry --
[09:28:23.206]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Web Data
[09:28:23.206]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:23.211]   Installing the file.
[09:28:23.232]   Successfully installed the file.
[09:28:23.232]   -- File entry --
[09:28:23.232]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Web Data-journal
[09:28:23.249]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:23.249]   Installing the file.
[09:28:23.266]   Successfully installed the file.
[09:28:23.266]   -- File entry --
[09:28:23.266]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\WebAssistDatabase
[09:28:23.284]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:23.284]   Installing the file.
[09:28:23.303]   Successfully installed the file.
[09:28:23.303]   -- File entry --
[09:28:23.313]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\WebAssistDatabase-journal
[09:28:23.313]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:23.313]   Installing the file.
[09:28:23.328]   Successfully installed the file.
[09:28:23.328]   -- File entry --
[09:28:23.328]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\AutofillStrikeDatabase\LOCK
[09:28:23.328]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:23.344]   Installing the file.
[09:28:23.344]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\AutofillStrikeDatabase
[09:28:23.356]   Successfully installed the file.
[09:28:23.361]   -- File entry --
[09:28:23.368]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\AutofillStrikeDatabase\LOG
[09:28:23.368]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:23.368]   Installing the file.
[09:28:23.368]   Successfully installed the file.
[09:28:23.381]   -- File entry --
[09:28:23.392]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\BudgetDatabase\LOCK
[09:28:23.392]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:23.392]   Installing the file.
[09:28:23.392]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\BudgetDatabase
[09:28:23.410]   Successfully installed the file.
[09:28:23.411]   -- File entry --
[09:28:23.411]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\BudgetDatabase\LOG
[09:28:23.411]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:23.428]   Installing the file.
[09:28:23.435]   Successfully installed the file.
[09:28:23.435]   -- File entry --
[09:28:23.435]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Cache\data_0
[09:28:23.435]   Time stamp of our file: 2022-02-13 16:26:54.000
[09:28:23.452]   Installing the file.
[09:28:23.452]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Cache
[09:28:23.470]   Successfully installed the file.
[09:28:23.470]   -- File entry --
[09:28:23.470]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Cache\data_1
[09:28:23.470]   Time stamp of our file: 2022-02-13 16:26:56.000
[09:28:23.491]   Installing the file.
[09:28:23.512]   Successfully installed the file.
[09:28:23.512]   -- File entry --
[09:28:23.512]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Cache\data_2
[09:28:23.529]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:23.536]   Installing the file.
[09:28:23.561]   Successfully installed the file.
[09:28:23.561]   -- File entry --
[09:28:23.572]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Cache\data_3
[09:28:23.572]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:23.572]   Installing the file.
[09:28:23.589]   Successfully installed the file.
[09:28:23.596]   -- File entry --
[09:28:23.596]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Cache\index
[09:28:23.596]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:23.613]   Installing the file.
[09:28:23.631]   Successfully installed the file.
[09:28:23.631]   -- File entry --
[09:28:23.631]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Code Cache\js\index
[09:28:23.648]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:23.650]   Installing the file.
[09:28:23.650]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Code Cache
[09:28:23.660]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Code Cache\js
[09:28:23.671]   Successfully installed the file.
[09:28:23.678]   -- File entry --
[09:28:23.678]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Code Cache\js\index-dir\the-real-index
[09:28:23.678]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:23.695]   Installing the file.
[09:28:23.695]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Code Cache\js\index-dir
[09:28:23.706]   Successfully installed the file.
[09:28:23.706]   -- File entry --
[09:28:23.720]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Code Cache\wasm\index
[09:28:23.720]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:23.720]   Installing the file.
[09:28:23.737]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Code Cache\wasm
[09:28:23.744]   Successfully installed the file.
[09:28:23.745]   -- File entry --
[09:28:23.745]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Code Cache\wasm\index-dir\the-real-index
[09:28:23.763]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:23.773]   Installing the file.
[09:28:23.773]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Code Cache\wasm\index-dir
[09:28:23.789]   Successfully installed the file.
[09:28:23.795]   -- File entry --
[09:28:23.795]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\data_reduction_proxy_leveldb\000003.log
[09:28:23.795]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:23.795]   Installing the file.
[09:28:23.813]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\data_reduction_proxy_leveldb
[09:28:23.823]   Successfully installed the file.
[09:28:23.823]   -- File entry --
[09:28:23.838]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\data_reduction_proxy_leveldb\CURRENT
[09:28:23.838]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:23.844]   Installing the file.
[09:28:23.854]   Successfully installed the file.
[09:28:23.861]   -- File entry --
[09:28:23.861]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\data_reduction_proxy_leveldb\LOCK
[09:28:23.861]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:23.861]   Installing the file.
[09:28:23.886]   Successfully installed the file.
[09:28:23.886]   -- File entry --
[09:28:23.900]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\data_reduction_proxy_leveldb\LOG
[09:28:23.901]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:23.901]   Installing the file.
[09:28:23.920]   Successfully installed the file.
[09:28:23.920]   -- File entry --
[09:28:23.929]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\data_reduction_proxy_leveldb\MANIFEST-000002
[09:28:23.929]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:23.929]   Installing the file.
[09:28:23.957]   Successfully installed the file.
[09:28:23.962]   -- File entry --
[09:28:23.970]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Download Service\EntryDB\LOCK
[09:28:23.970]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:23.970]   Installing the file.
[09:28:23.970]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Download Service\EntryDB
[09:28:23.991]   Successfully installed the file.
[09:28:23.996]   -- File entry --
[09:28:24.004]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Download Service\EntryDB\LOG
[09:28:24.004]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:24.004]   Installing the file.
[09:28:24.020]   Successfully installed the file.
[09:28:24.022]   -- File entry --
[09:28:24.022]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Extension State\000003.log
[09:28:24.038]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:24.039]   Installing the file.
[09:28:24.039]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Extension State
[09:28:24.057]   Successfully installed the file.
[09:28:24.060]   -- File entry --
[09:28:24.071]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Extension State\CURRENT
[09:28:24.071]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:24.071]   Installing the file.
[09:28:24.089]   Successfully installed the file.
[09:28:24.095]   -- File entry --
[09:28:24.096]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Extension State\LOCK
[09:28:24.096]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:24.096]   Installing the file.
[09:28:24.115]   Successfully installed the file.
[09:28:24.115]   -- File entry --
[09:28:24.127]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Extension State\LOG
[09:28:24.129]   Time stamp of our file: 2022-02-13 16:26:54.000
[09:28:24.129]   Installing the file.
[09:28:24.143]   Successfully installed the file.
[09:28:24.144]   -- File entry --
[09:28:24.144]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Extension State\LOG.old
[09:28:24.163]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:24.163]   Installing the file.
[09:28:24.175]   Successfully installed the file.
[09:28:24.179]   -- File entry --
[09:28:24.179]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Extension State\MANIFEST-000001
[09:28:24.179]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:24.197]   Installing the file.
[09:28:24.210]   Successfully installed the file.
[09:28:24.214]   -- File entry --
[09:28:24.214]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Feature Engagement Tracker\AvailabilityDB\LOCK
[09:28:24.214]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:24.231]   Installing the file.
[09:28:24.231]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Feature Engagement Tracker
[09:28:24.231]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Feature Engagement Tracker\AvailabilityDB
[09:28:24.251]   Successfully installed the file.
[09:28:24.251]   -- File entry --
[09:28:24.265]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Feature Engagement Tracker\AvailabilityDB\LOG
[09:28:24.265]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:24.265]   Installing the file.
[09:28:24.283]   Successfully installed the file.
[09:28:24.283]   -- File entry --
[09:28:24.283]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Feature Engagement Tracker\EventDB\LOCK
[09:28:24.295]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:24.295]   Installing the file.
[09:28:24.295]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Feature Engagement Tracker\EventDB
[09:28:24.315]   Successfully installed the file.
[09:28:24.320]   -- File entry --
[09:28:24.320]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Feature Engagement Tracker\EventDB\LOG
[09:28:24.325]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:24.325]   Installing the file.
[09:28:24.325]   Successfully installed the file.
[09:28:24.345]   -- File entry --
[09:28:24.345]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\GPUCache\data_0
[09:28:24.353]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:24.361]   Installing the file.
[09:28:24.361]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\GPUCache
[09:28:24.373]   Successfully installed the file.
[09:28:24.380]   -- File entry --
[09:28:24.380]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\GPUCache\data_1
[09:28:24.380]   Time stamp of our file: 2022-02-13 16:26:56.000
[09:28:24.395]   Installing the file.
[09:28:24.406]   Successfully installed the file.
[09:28:24.413]   -- File entry --
[09:28:24.413]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\GPUCache\data_2
[09:28:24.413]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:24.429]   Installing the file.
[09:28:24.429]   Successfully installed the file.
[09:28:24.429]   -- File entry --
[09:28:24.448]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\GPUCache\data_3
[09:28:24.448]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:24.448]   Installing the file.
[09:28:24.470]   Successfully installed the file.
[09:28:24.475]   -- File entry --
[09:28:24.475]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\GPUCache\index
[09:28:24.517]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:24.517]   Installing the file.
[09:28:24.532]   Successfully installed the file.
[09:28:24.533]   -- File entry --
[09:28:24.533]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Local Storage\leveldb\000003.log
[09:28:24.533]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:24.548]   Installing the file.
[09:28:24.548]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Local Storage
[09:28:24.548]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Local Storage\leveldb
[09:28:24.565]   Successfully installed the file.
[09:28:24.566]   -- File entry --
[09:28:24.566]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Local Storage\leveldb\CURRENT
[09:28:24.578]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:24.578]   Installing the file.
[09:28:24.592]   Successfully installed the file.
[09:28:24.592]   -- File entry --
[09:28:24.592]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Local Storage\leveldb\LOCK
[09:28:24.608]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:24.608]   Installing the file.
[09:28:24.608]   Successfully installed the file.
[09:28:24.624]   -- File entry --
[09:28:24.624]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Local Storage\leveldb\LOG
[09:28:24.624]   Time stamp of our file: 2022-02-13 16:26:54.000
[09:28:24.639]   Installing the file.
[09:28:24.649]   Successfully installed the file.
[09:28:24.649]   -- File entry --
[09:28:24.661]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Local Storage\leveldb\LOG.old
[09:28:24.662]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:24.662]   Installing the file.
[09:28:24.675]   Successfully installed the file.
[09:28:24.675]   -- File entry --
[09:28:24.686]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Local Storage\leveldb\MANIFEST-000001
[09:28:24.686]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:24.686]   Installing the file.
[09:28:24.708]   Successfully installed the file.
[09:28:24.708]   -- File entry --
[09:28:24.708]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\optimization_guide_hint_cache_store\LOCK
[09:28:24.708]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:24.725]   Installing the file.
[09:28:24.728]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\optimization_guide_hint_cache_store
[09:28:24.738]   Successfully installed the file.
[09:28:24.742]   -- File entry --
[09:28:24.742]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\optimization_guide_hint_cache_store\LOG
[09:28:24.742]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:24.742]   Installing the file.
[09:28:24.763]   Successfully installed the file.
[09:28:24.763]   -- File entry --
[09:28:24.763]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\optimization_guide_model_and_features_store\LOCK
[09:28:24.763]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:24.778]   Installing the file.
[09:28:24.778]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\optimization_guide_model_and_features_store
[09:28:24.791]   Successfully installed the file.
[09:28:24.791]   -- File entry --
[09:28:24.791]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\optimization_guide_model_and_features_store\LOG
[09:28:24.791]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:24.809]   Installing the file.
[09:28:24.817]   Successfully installed the file.
[09:28:24.818]   -- File entry --
[09:28:24.832]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Session Storage\000003.log
[09:28:24.834]   Time stamp of our file: 2022-02-13 16:26:56.000
[09:28:24.834]   Installing the file.
[09:28:24.845]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Session Storage
[09:28:24.859]   Successfully installed the file.
[09:28:24.862]   -- File entry --
[09:28:24.862]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Session Storage\CURRENT
[09:28:24.862]   Time stamp of our file: 2022-02-13 16:12:18.000
[09:28:24.879]   Installing the file.
[09:28:24.889]   Successfully installed the file.
[09:28:24.889]   -- File entry --
[09:28:24.896]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Session Storage\LOCK
[09:28:24.896]   Time stamp of our file: 2022-02-13 16:12:18.000
[09:28:24.896]   Installing the file.
[09:28:24.912]   Successfully installed the file.
[09:28:24.912]   -- File entry --
[09:28:24.928]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Session Storage\LOG
[09:28:24.928]   Time stamp of our file: 2022-02-13 16:26:56.000
[09:28:24.928]   Installing the file.
[09:28:24.949]   Successfully installed the file.
[09:28:24.949]   -- File entry --
[09:28:24.949]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Session Storage\LOG.old
[09:28:24.961]   Time stamp of our file: 2022-02-13 16:12:18.000
[09:28:24.961]   Installing the file.
[09:28:24.979]   Successfully installed the file.
[09:28:24.979]   -- File entry --
[09:28:24.992]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Session Storage\MANIFEST-000001
[09:28:24.995]   Time stamp of our file: 2022-02-13 16:12:18.000
[09:28:24.995]   Installing the file.
[09:28:25.013]   Successfully installed the file.
[09:28:25.013]   -- File entry --
[09:28:25.013]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\000003.log
[09:28:25.029]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:25.029]   Installing the file.
[09:28:25.029]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db
[09:28:25.046]   Successfully installed the file.
[09:28:25.046]   -- File entry --
[09:28:25.065]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\CURRENT
[09:28:25.065]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:25.065]   Installing the file.
[09:28:25.065]   Successfully installed the file.
[09:28:25.089]   -- File entry --
[09:28:25.097]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\LOCK
[09:28:25.099]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:25.099]   Installing the file.
[09:28:25.112]   Successfully installed the file.
[09:28:25.112]   -- File entry --
[09:28:25.112]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\LOG
[09:28:25.126]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:25.126]   Installing the file.
[09:28:25.126]   Successfully installed the file.
[09:28:25.146]   -- File entry --
[09:28:25.153]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\MANIFEST-000001
[09:28:25.153]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:25.161]   Installing the file.
[09:28:25.168]   Successfully installed the file.
[09:28:25.176]   -- File entry --
[09:28:25.176]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\metadata\000003.log
[09:28:25.176]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:25.195]   Installing the file.
[09:28:25.195]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\metadata
[09:28:25.209]   Successfully installed the file.
[09:28:25.209]   -- File entry --
[09:28:25.222]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\metadata\CURRENT
[09:28:25.222]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:25.229]   Installing the file.
[09:28:25.239]   Successfully installed the file.
[09:28:25.239]   -- File entry --
[09:28:25.250]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\metadata\LOCK
[09:28:25.250]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:25.250]   Installing the file.
[09:28:25.262]   Successfully installed the file.
[09:28:25.262]   -- File entry --
[09:28:25.278]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\metadata\LOG
[09:28:25.278]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:25.278]   Installing the file.
[09:28:25.298]   Successfully installed the file.
[09:28:25.298]   -- File entry --
[09:28:25.312]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\shared_proto_db\metadata\MANIFEST-000001
[09:28:25.312]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:25.312]   Installing the file.
[09:28:25.312]   Successfully installed the file.
[09:28:25.328]   -- File entry --
[09:28:25.339]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Site Characteristics Database\000003.log
[09:28:25.340]   Time stamp of our file: 2022-02-13 16:12:18.000
[09:28:25.349]   Installing the file.
[09:28:25.349]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Site Characteristics Database
[09:28:25.359]   Successfully installed the file.
[09:28:25.368]   -- File entry --
[09:28:25.374]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Site Characteristics Database\CURRENT
[09:28:25.374]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:25.374]   Installing the file.
[09:28:25.374]   Successfully installed the file.
[09:28:25.396]   -- File entry --
[09:28:25.402]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Site Characteristics Database\LOCK
[09:28:25.402]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:25.402]   Installing the file.
[09:28:25.418]   Successfully installed the file.
[09:28:25.418]   -- File entry --
[09:28:25.429]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Site Characteristics Database\LOG
[09:28:25.429]   Time stamp of our file: 2022-02-13 16:26:54.000
[09:28:25.429]   Installing the file.
[09:28:25.447]   Successfully installed the file.
[09:28:25.447]   -- File entry --
[09:28:25.459]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Site Characteristics Database\LOG.old
[09:28:25.462]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:25.462]   Installing the file.
[09:28:25.476]   Successfully installed the file.
[09:28:25.478]   -- File entry --
[09:28:25.478]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Site Characteristics Database\MANIFEST-000001
[09:28:25.494]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:25.494]   Installing the file.
[09:28:25.515]   Successfully installed the file.
[09:28:25.515]   -- File entry --
[09:28:25.515]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Sync Data\LevelDB\000003.log
[09:28:25.529]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:25.529]   Installing the file.
[09:28:25.529]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Sync Data
[09:28:25.546]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Sync Data\LevelDB
[09:28:25.554]   Successfully installed the file.
[09:28:25.555]   -- File entry --
[09:28:25.567]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Sync Data\LevelDB\CURRENT
[09:28:25.567]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:25.567]   Installing the file.
[09:28:25.586]   Successfully installed the file.
[09:28:25.587]   -- File entry --
[09:28:25.587]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Sync Data\LevelDB\LOCK
[09:28:25.603]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:25.603]   Installing the file.
[09:28:25.603]   Successfully installed the file.
[09:28:25.614]   -- File entry --
[09:28:25.614]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Sync Data\LevelDB\LOG
[09:28:25.629]   Time stamp of our file: 2022-02-13 16:26:54.000
[09:28:25.630]   Installing the file.
[09:28:25.640]   Successfully installed the file.
[09:28:25.644]   -- File entry --
[09:28:25.654]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Sync Data\LevelDB\LOG.old
[09:28:25.654]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:25.663]   Installing the file.
[09:28:25.669]   Successfully installed the file.
[09:28:25.669]   -- File entry --
[09:28:25.669]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\Default\Sync Data\LevelDB\MANIFEST-000001
[09:28:25.685]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:25.685]   Installing the file.
[09:28:25.706]   Successfully installed the file.
[09:28:25.706]   -- File entry --
[09:28:25.716]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\GrShaderCache\GPUCache\data_0
[09:28:25.717]   Time stamp of our file: 2022-02-13 16:26:54.000
[09:28:25.717]   Installing the file.
[09:28:25.717]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\GrShaderCache
[09:28:25.732]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\GrShaderCache\GPUCache
[09:28:25.743]   Successfully installed the file.
[09:28:25.745]   -- File entry --
[09:28:25.750]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\GrShaderCache\GPUCache\data_1
[09:28:25.750]   Time stamp of our file: 2022-02-13 16:26:56.000
[09:28:25.765]   Installing the file.
[09:28:25.778]   Successfully installed the file.
[09:28:25.780]   -- File entry --
[09:28:25.780]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\GrShaderCache\GPUCache\data_2
[09:28:25.796]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:25.796]   Installing the file.
[09:28:25.809]   Successfully installed the file.
[09:28:25.809]   -- File entry --
[09:28:25.818]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\GrShaderCache\GPUCache\data_3
[09:28:25.818]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:25.818]   Installing the file.
[09:28:25.899]   Successfully installed the file.
[09:28:25.899]   -- File entry --
[09:28:25.908]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\GrShaderCache\GPUCache\index
[09:28:25.908]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:25.908]   Installing the file.
[09:28:25.925]   Successfully installed the file.
[09:28:25.928]   -- File entry --
[09:28:25.935]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\ShaderCache\GPUCache\data_0
[09:28:25.935]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:25.935]   Installing the file.
[09:28:25.935]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\ShaderCache
[09:28:25.951]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\ShaderCache\GPUCache
[09:28:25.957]   Successfully installed the file.
[09:28:25.962]   -- File entry --
[09:28:25.962]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\ShaderCache\GPUCache\data_1
[09:28:25.962]   Time stamp of our file: 2022-02-13 16:26:56.000
[09:28:25.978]   Installing the file.
[09:28:25.990]   Successfully installed the file.
[09:28:25.990]   -- File entry --
[09:28:25.990]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\ShaderCache\GPUCache\data_2
[09:28:25.990]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:26.006]   Installing the file.
[09:28:26.015]   Successfully installed the file.
[09:28:26.015]   -- File entry --
[09:28:26.015]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\ShaderCache\GPUCache\data_3
[09:28:26.015]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:26.031]   Installing the file.
[09:28:26.041]   Successfully installed the file.
[09:28:26.041]   -- File entry --
[09:28:26.041]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\ShaderCache\GPUCache\index
[09:28:26.057]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:26.062]   Installing the file.
[09:28:26.069]   Successfully installed the file.
[09:28:26.069]   -- File entry --
[09:28:26.069]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\local\cache
[09:28:26.086]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:26.086]   Installing the file.
[09:28:26.086]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen
[09:28:26.102]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\local
[09:28:26.108]   Successfully installed the file.
[09:28:26.108]   -- File entry --
[09:28:26.108]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\local\download_cache
[09:28:26.108]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:26.124]   Installing the file.
[09:28:26.136]   Successfully installed the file.
[09:28:26.136]   -- File entry --
[09:28:26.136]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\local\warnStateCache
[09:28:26.152]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:26.152]   Installing the file.
[09:28:26.165]   Successfully installed the file.
[09:28:26.165]   -- File entry --
[09:28:26.177]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\remote\edgeSettings
[09:28:26.177]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:26.177]   Installing the file.
[09:28:26.177]   Creating directory: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\remote
[09:28:26.200]   Successfully installed the file.
[09:28:26.207]   -- File entry --
[09:28:26.221]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\remote\edgeSettings_2.0-2f9188b68640dbf72295f9083a21d674a314721ef06f82db281cbcb052ff8ec1
[09:28:26.222]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:26.228]   Installing the file.
[09:28:26.245]   Successfully installed the file.
[09:28:26.245]   -- File entry --
[09:28:26.245]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\remote\synchronousLookupUris
[09:28:26.263]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:26.263]   Installing the file.
[09:28:26.275]   Successfully installed the file.
[09:28:26.279]   -- File entry --
[09:28:26.279]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\remote\synchronousLookupUris_637803869475157945
[09:28:26.295]   Time stamp of our file: 2022-02-13 16:12:14.000
[09:28:26.301]   Installing the file.
[09:28:26.306]   Successfully installed the file.
[09:28:26.313]   -- File entry --
[09:28:26.313]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\remote\topTraffic
[09:28:26.321]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:26.328]   Installing the file.
[09:28:26.338]   Successfully installed the file.
[09:28:26.339]   -- File entry --
[09:28:26.346]   Dest filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe.WebView2\EBWebView\SmartScreen\remote\topTraffic_637786431098503299
[09:28:26.346]   Time stamp of our file: 2022-02-13 16:12:16.000
[09:28:26.346]   Installing the file.
[09:28:26.415]   Successfully installed the file.
[09:28:26.415]   -- Icon entry --
[09:28:26.415]   Dest filename: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\KidSafeBrowser.lnk
[09:28:26.429]   Creating the icon.
[09:28:26.503]   Successfully created the icon.
[09:28:26.536]   -- Icon entry --
[09:28:26.536]   Dest filename: C:\Users\Public\Desktop\KidSafeBrowser.lnk
[09:28:26.536]   Creating the icon.
[09:28:26.559]   Successfully created the icon.
[09:28:26.881]   Saving uninstall information.
[09:28:26.888]   Creating new uninstall key: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall\{FA753AF7-8CA4-426A-A208-844C1EFFBE1E}_is1
[09:28:26.894]   Writing uninstall key values.
[09:28:26.903]   Detected previous non administrative install? No
[09:28:26.909]   Detected previous administrative 64-bit install? No
[09:28:26.929]   Installation process succeeded.
[09:28:26.950]   Need to restart Windows? No
[09:28:37.533]   -- Run entry --
[09:28:37.541]   Run as: Original user
[09:28:37.551]   Type: Exec
[09:28:37.561]   Filename: C:\Program Files\KidSafeBrowser\KidSafeBrowser.exe
[09:28:38.635]   Deinitializing Setup.
[09:28:38.746]   *** Setup exit code: 0

Laurent Combémorel

unread,
Feb 15, 2022, 10:39:35 AM2/15/22
to innosetup
1st you have to add in the [Setup] section the following line:
SetupLogging=yes
Then you have to compile to produce an installer that will create a log file.
To get the compilation log, I'm not experience with command line compilation. In the Inno Setup visual interface compiler, after the compilation you have a Compiler Output tab on the lowest part of the window. Right-click on it, select all, right-click again and copy. Then you can paste in a file or in a message...
The execution log is a file written in the %temp% directory. After an installation with the newly compiled installer, open a Windows Explorer and navigate to the directory c:\users\[YOURUSER]\AppData\Local\Temp\. The log has a name like Setup Log YYYY-MM-DD#NNN.txt

vmars vernon

unread,
Feb 15, 2022, 11:19:46 AM2/15/22
to innosetup

vmars vernon

unread,
Feb 15, 2022, 2:01:14 PM2/15/22
to innosetup
And here is what  https://vmars.us/ShowMe/MyRecistry-Find-KidSafeBrowser.txt   looks like .

Gavin Lambert

unread,
Feb 15, 2022, 5:11:12 PM2/15/22
to inno...@googlegroups.com
On 16/02/2022 04:03, vmars vernon wrote:
> Interestingly , when I make a copy of "C:\Program Files\KidSafeBrowser"
> Folder
> and create a Desktop Folder called  ""KidSafeBrowser" ,
> and then DblClick on "KidSafeBrowser.exe" , in that Folder .
> Everything Runs fine ,
> which makes me think it is a Registry problem .

If your installed files run fine from a location other than Program
Files, it likely means that your application is trying to write to files
in the working directory / app directory, which is not permitted.

Settings and data files for your app need to be written only to the
per-user folders (typically AppData\Roaming, or more specifically an
app-specific subfolder thereof). Note that you must not hard-code any
part of that path other than your app name -- use the appropriate API
for your language of choice to get the base path to the roaming folder.

The installer must not install files to user folders either; it's solely
the responsibility of the app itself to maintain those. You can use
files installed to {app} as read-only "defaults" only.

vmars vernon

unread,
Feb 15, 2022, 6:19:23 PM2/15/22
to innosetup
I Sorry , but I don't understand what you are saying .
I want KidSafeBrowser programs to Setup and Run exactly the same as   Compil32.exe  does .
I ran the same test  (as I did with C:\Program Files\KidSafeBrowser)  with   'C:\Program Files (x86)\Inno Setup 6'  
by copying its Folder to my Desktop .  And running  Compil32.exe from that Desktop Folder .
Runs fine . 

For a test , I setup a new user 'userTwo'  with no special privileges 
and he can Run Compil32.exe , no probs , and no 'Roaming Folders' entries . 
And also has access to 'C:\Program Files\KidSafeBrowser' , and runs the same as with my userid 'vmars' . 

Would someone be willing to step me thru the Wizard , so I set things up correctly ? 
Btw: The Uninstall doesn't remove any Registry Entries , is that normal ?
Thanks

Gavin Lambert

unread,
Feb 15, 2022, 9:14:49 PM2/15/22
to inno...@googlegroups.com
On 16/02/2022 12:19, vmars vernon wrote:
> I Sorry , but I don't understand what you are saying .

Forget Inno for a moment.

I am saying that it sounds like your actual application code by itself
has a bug, because it is trying to write files to somewhere that it
shouldn't.


> Btw: The Uninstall doesn't remove any Registry Entries , is that normal ?

Yes, that's normal; you need to add the appropriate unins* flags to
indicate what to delete. Use carefully; there are some things that
you're not supposed to delete on uninstall.

vmars vernon

unread,
Feb 16, 2022, 10:01:42 AM2/16/22
to innosetup
Thanks Gavin for clarifying , 
The  KidSafeBrowser.exe  is readOnly (msEdge/Chromium) ,  Except it does keep track of History , does that count ? 
If you want , you can download it here: 
Reply all
Reply to author
Forward
0 new messages