尝试在Windows中卸载我的Java应用程序时询问密码

时间:2018-09-26 12:06:49

标签: java windows desktop-application uninstaller

我已经为Windows安装了Java应用程序。在Windows中安装后,一切都可以正常运行。现在,我想添加一项功能,当我尝试卸载没有密码的应用程序时,应该要求输入密码,但一定不能将其卸载。

我想知道的另一件事是,是否需要制作单独的卸载程序,还是可以在安装程序本身中添加这些功能?

任何帮助将不胜感激。

PS 。这里我的目标是Windows OS来安装应用程序。

  

简而言之,我希望如果有人尝试卸载我的应用程序,他会提示您输入密码,如果他输入正确的密码,那么   然后他就可以卸载它。

     

我不知道是否要实现以上愿望,是否需要更改自己的   安装程序,或者我需要创建一个自定义卸载程序。

1 个答案:

答案 0 :(得分:1)

最后,经过大量的努力,我找到了一些很好的资料来源,向我解释了所有问题。

在Inno Setup pascal脚本中,我可以修改一些代码以实现密码保护,如下所示:

[Setup]
AppName=UninsPassword
AppVerName=UninsPassword
DisableProgramGroupPage=true
DisableStartupPrompt=true
DefaultDirName={pf}\UninsPassword

[Code]
function AskPassword(): Boolean;
var
  Form: TSetupForm;
  OKButton, CancelButton: TButton;
  PwdEdit: TPasswordEdit;
begin

  Result := false;
  Form := CreateCustomForm();
  try
    Form.ClientWidth := ScaleX(256);
    Form.ClientHeight := ScaleY(100);
    Form.Caption := 'Uninstall Password';
    Form.BorderIcons := [biSystemMenu];
    Form.BorderStyle := bsDialog;
    Form.Center;

    OKButton := TButton.Create(Form);
    OKButton.Parent := Form;
    OKButton.Width := ScaleX(75);
    OKButton.Height := ScaleY(23);
    OKButton.Left := Form.ClientWidth - ScaleX(75 + 6 + 75 + 50);
    OKButton.Top := Form.ClientHeight - ScaleY(23 + 10);
    OKButton.Caption := 'OK';
    OKButton.ModalResult := mrOk;
    OKButton.Default := true;

    CancelButton := TButton.Create(Form);
    CancelButton.Parent := Form;
    CancelButton.Width := ScaleX(75);
    CancelButton.Height := ScaleY(23);
    CancelButton.Left := Form.ClientWidth - ScaleX(75 + 50);
    CancelButton.Top := Form.ClientHeight - ScaleY(23 + 10);
    CancelButton.Caption := 'Cancel';
    CancelButton.ModalResult := mrCancel;
    CancelButton.Cancel := True;

    PwdEdit := TPasswordEdit.Create(Form);
    PwdEdit.Parent := Form;
    PwdEdit.Width := ScaleX(210);
    PwdEdit.Height := ScaleY(23);
    PwdEdit.Left := ScaleX(23);
    PwdEdit.Top := ScaleY(23);

    Form.ActiveControl := PwdEdit;

    if Form.ShowModal() = mrOk then
    begin
      Result := PwdEdit.Text = 'removeme';
      if not Result then
            MsgBox('Password incorrect: Uninstallation prohibited.', mbInformation, MB_OK);
    end;
  finally
    Form.Free();
  end;
end;


function InitializeUninstall(): Boolean;
begin
  Result := AskPassword();
end;

信息来源:this post