diff --git a/Installer/Output/dt_setup.exe b/Installer/Output/dt_setup.exe index b17cb717..da83b232 100644 Binary files a/Installer/Output/dt_setup.exe and b/Installer/Output/dt_setup.exe differ diff --git a/Panels/Get_Ops/AppxPkgs/GetAppxPkgInfo.vb b/Panels/Get_Ops/AppxPkgs/GetAppxPkgInfo.vb index 4e975445..740376e8 100644 --- a/Panels/Get_Ops/AppxPkgs/GetAppxPkgInfo.vb +++ b/Panels/Get_Ops/AppxPkgs/GetAppxPkgInfo.vb @@ -395,15 +395,19 @@ Public Class GetAppxPkgInfoDlg Label5.Text = (folder & "\AppxManifest.xml").Replace("\\", "\").Trim() End If Next - If pkgDirs.Count <= 1 And Not Label5.Text.Contains(Label23.Text) Then - If File.Exists(pkgDirs(0).Replace("\\", "\").Trim() & "\AppxMetadata\AppxBundleManifest.xml") Then - Label5.Text = pkgDirs(0).Replace("\\", "\").Trim() & "\AppxMetadata\AppxBundleManifest.xml" - ElseIf File.Exists(pkgDirs(0).Replace("\\", "\").Trim() & "\AppxManifest.xml") Then - Label5.Text = pkgDirs(0).Replace("\\", "\").Trim() & "\AppxManifest.xml" - Else - Label5.Text = "" + Try + If pkgDirs.Count <= 1 And Not Label5.Text.Contains(Label23.Text) Then + If File.Exists(pkgDirs(0).Replace("\\", "\").Trim() & "\AppxMetadata\AppxBundleManifest.xml") Then + Label5.Text = pkgDirs(0).Replace("\\", "\").Trim() & "\AppxMetadata\AppxBundleManifest.xml" + ElseIf File.Exists(pkgDirs(0).Replace("\\", "\").Trim() & "\AppxManifest.xml") Then + Label5.Text = pkgDirs(0).Replace("\\", "\").Trim() & "\AppxManifest.xml" + Else + Label5.Text = "" + End If End If - End If + Catch ex As Exception + MsgBox("Could not get some information about this application.", vbOKOnly + vbCritical, Label1.Text) + End Try Panel4.Visible = True Panel7.Visible = False Else