snagrat Posted April 30, 2019 Posted April 30, 2019 I can silent install the full Pro package, but I only want the client. Does anyone know a silent switch to only install the client?
stevenlong1985 Posted April 30, 2019 Posted April 30, 2019 I think you need to install the lite version. From what I remember all versions need to be the same, there was a new version for windows 10 which forced you to have the latest version.
RobFuller Posted May 7, 2019 Posted May 7, 2019 I use a lAutoIt script, not perfect but works. #Region ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Icon=Net2_AAAAA.ico #AutoIt3Wrapper_UseX64=y #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** ;install Paxton Net2 Client from current directory $title = "Net2 Access Control Setup" ShellExecute(@ScriptDir & "\Setup.exe", "", @ScriptDir, "open", @SW_HIDE) If WinWaitActive($title, "Welcome", 60) = 0 Then Exit 1 Send("{TAB}{UP}{UP}{UP}{DOWN}{DOWN}{ALTDOWN}AI{ALTUP}") Send("{ENTER}") WinWaitActive($title, "Setup Successful") Send("{ALTDOWN}C{ALTUP}")
snagrat Posted May 7, 2019 Author Posted May 7, 2019 I use a lAutoIt script, not perfect but works. Do I just need to save this as a .vbs or do I need some client side IAutoIt installed first?
Arthur Posted May 7, 2019 Posted May 7, 2019 Do I just need to save this as a .vbs or do I need some client side AutoIt installed first? Save it as an .au3. This file can then be compiled to an .exe using AutoIt.
RobFuller Posted May 8, 2019 Posted May 8, 2019 Save it as an .au3. This file can then be compiled to an .exe using AutoIt. As above!
Popular Post jmc160 Posted July 28, 2020 Popular Post Posted July 28, 2020 (edited) In case anyone else is looking for this like I was: First, if necessary, extract the installers and prerequisites needed to a path of your choice: Setup.exe /layout You'll notice there's a .\Redist subfolder created as well as the usual installer, which contains the prerequisites. You need these to "travel with" the setup.exe when deploying... Once you have your files in order, to silently install just the client: \Setup.exe /install ALLUSERS=1 InstallType=3 /quiet norestart Hope this helps! Edited July 28, 2020 by jmc160 1 15
bknaggs Posted July 29, 2020 Posted July 29, 2020 Hope this helps! It certainly does and I didn't even realise I needed or wanted a silent install for Net2. Cheers.
NorthernNoel Posted February 10 Posted February 10 @jmc160 still working in 2026 thanks, I've just packaged it up for Intune. For removal just change the switch from /install to /uninstall
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now