Soluții

How to silently install an .EXE file?

1. Check if setup.exe has some install parameters by calling the setup.exe in a cmd and typing in the /? or /help. This will usually open a help/usage message box.

Setup.exe /? /help
//cmd photo of msg box

2. Access the vendor’s application support page or forum. There, you may find what install parameters the application supports and it might also give you full silent install instructions. That is if the vendor decided to create a support page.

3. If none of the above methods work, you could open the setup.exe by double-clicking on it until you see the installation wizard. Usually, in the installation wizard, you can notice which tool/packaging program was used to package the installer. With this information, you can go to the official website of the tool and search for the default installation parameters.

[mai mult...]

How to silently install an MSI package

MSI stands for Microsoft Installer and it’s the Windows standard installer format. It uses msiexec.exe to install the setup and accepts the standard MSI parameters. MSI’s silent install standard parameters are as follows:

  • /quiet – quiet mode (there is no user interaction)
  • /passive – unattended mode (the installation shows only a progress bar)
  • /q – set the UI level:
  • n – no UI
  • n+ – no UI except for a modal dialog box displayed at the end.
  • b – basic UI
  • b+ – basic UI with a modal dialog box displayed at the end. The modal box is not displayed if the user cancels the installation. Use qb+! or qb!+ to hide the [ Cancel ] button.
  • b- – basic UI with no modal dialog boxes. Please note that /qb+- is not a supported UI level. Use qb-! or qb!- to hide the [ Cancel ] button.
  • r – reduced UI
  • f – full UI

A regular command line to silently install an MSI should look like this:

 Msiexec /i <applicationname.msi> /qb! /l*v install.log
[mai mult...]

Cum să resetați din fabrică Windows 11 fără parola de administrator

De obicei, resetarea PC-ului cu Windows 11 necesită o parolă de administrator, dar există două moduri prin care puteți ocoli această restricție. Ca ultimă soluție, o resetare din fabrică vă poate ajuta să remediați problemele și să vă îmbunătățiți performanța sistemului. Cu toate acestea, pentru a reseta computerul din fabrică, trebuie să vă conectați la un cont de administrator. Și uneori, nu aveți idee care este parola contului dvs. de administrator.

[mai mult...]