Hi Again,
Can we lunch a .bat file with the OOBE Post-Installation feature ?
At the end of the setup, when i'm on the Windows desktop, I want to lunch an xxx.bat with :
In addition to the .exe post-installation feature, Chocolatey can be a good idea for silents installs.
I have in mind especially certains "on-line" softwares which have a little setup but ask then to download packages and for whom it's complex to use silents switches.
Can we lunch a .bat file with the OOBE Post-Installation feature ?
At the end of the setup, when i'm on the Windows desktop, I want to lunch an xxx.bat with :
Code:
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex
((new-object
net.webclient).DownloadString('https://chocolatey.org/install.ps1'))"
&& SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
In addition to the .exe post-installation feature, Chocolatey can be a good idea for silents installs.
I have in mind especially certains "on-line" softwares which have a little setup but ask then to download packages and for whom it's complex to use silents switches.