lafleur1977 Posted October 9, 2024 Posted October 9, 2024 I am trying to deploy Notepad ++ to multiple PC's. Normally I'd deploy an msi file via GPO or create a startup script, but Notepad ++ only comes as an .exe file and I don't seem to be able get a silent script to run. I just wondered if anyone knew how? Thanks
supportman Posted October 9, 2024 Posted October 9, 2024 Just checked out PDQ deploy package, it should work fine with /s Notepad++_64bit_8.7.exe /S 2
MartinByard Posted October 9, 2024 Posted October 9, 2024 We do it through SCCM/MECM through a simple batch file (not got round to converting it to a powershell script yet), using the .exe. start /wait npp.8.6.4.Installer.x64.exe /S copy .\config.model.xml "C:\Program Files\Notepad++\config.model.xml" /Y The .xml file is so that we can control and force some settings, but would not necessarily be needed for others. 1
lafleur1977 Posted October 10, 2024 Author Posted October 10, 2024 - - - Updated - - - We do it through SCCM/MECM through a simple batch file (not got round to converting it to a powershell script yet), using the .exe. start /wait npp.8.6.4.Installer.x64.exe /S copy .\config.model.xml "C:\Program Files\Notepad++\config.model.xml" /Y The .xml file is so that we can control and force some settings, but would not necessarily be needed for others. Thanks, that's worked appreciated!
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