Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/20/23 in all areas

  1. PS. to install the certificate into Windows Trusted Root Certificates - i use: // Add the cert.pem on the Windows Trusted Root Certificates cert_pem := Dossier + 'cert.pem'; Chemin := ExtractFilePath( Application.ExeName ) + 'Data\OpenSSL\export.ps1'; // prepare the Script MyText := TStringlist.create; try MyText.Add( '$CertificateName = "UNIGUI_All_OS"' ); MyText.Add( '$Certificate = Get-ChildItem "CERT:\" -Recurse | ' ); MyText.Add( ' Where-Object {$_.FriendlyName -eq "UNIGUI_All_OS"} ' ); MyText.Add( 'Export-Certificate -Cert $Certificate -FilePath "'+ ExtractFilePath( Application.ExeName )+'\exportiertes_zertifikat\your_name.cer'+'" ' ); MyText.SaveToFile( Chemin ); finally MyText.Free end; sleep( 300 ); // Execute the Script ch := '/K powershell.exe -executionpolicy bypass -file "' + Chemin + '"'; Dossier := GetEnvironmentVariable( 'SYSTEMROOT' ) + '\System32'; ShellExecute( Application.Handle, 'runas', 'cmd.exe', PChar( ch ), PChar( Dossier ), SW_HIDE );
    1 point
  2. Hi, 1. Obviously, clean your browser (parameters > delete history) 2. Not obvious: http://forums.unigui.com/index.php?/topic/18298-connection-issues/&do=findComment&comment=101078 3. You can deploy the new version without stoping the hyperservice : just copy your new project.exe file to ...\deploy\project.exe And rename it with .dep extension ...\deploy\project.dep 4. If all this not works, then change your port 8077
    1 point
  3. Ok I've managed to install UniGui. I had to manually add following lines to Library Path
    1 point
×
×
  • Create New...