Search the Community
Showing results for tags 'silent'.
-
Autoit SciTE silent install with "Default = Edit"
rudi posted a topic in AutoIt Technical Discussion
Hello, very propably this has been asked before, well, I miss the thread(s) ... Is there a command line switch to tell the SciTE setup EXE to install silently ("/S") *AND* to end up with "edit" (instead of "run") as system wide default action for *.au3 files? As it can be done with the config tool: https://www.autoitscript.com/autoit3/scite/docs/SciTE4AutoIt3/SciTEConfigb1.PNG Regards, Rudi. -
There is a great tool called ninite (www.ninite.com) The only problem is that it is not really 'silent' So I wrote this little script to make it silent (like /S or /Silent or /quiet) Just rename the downloaded 'Ninite ....... exe' into 'Ninite.exe' and place it into the same folder as the Ninite-silent.exe (my AutoIt prg) Run it and that's it ! Link to my au3 and zip files here Also available here Enjoy Cramaboule! EDIT: Change link website!
-
I have a project in eclipse which is created using below options. File --> New --> Dynamic web application project.. I have linked the src folder to local GitHub synced folder. Whenever there is a change in GitHub source files, I need to clean the project (only clean , not clean and build) Once the clean is completed, I will export the complete project as war file (right click on project folder in eclipse and export --> war ) I didn't find any command line options to eclipse to do this. Any other alternative to automate this in
-
I'm running AutoIT v3.3.14.2 on Windows 10 ver 1511. The September Cumulative Update from Microsoft has broken the way some third party credential providers work. You can see more detail here: https://www.novell.com/support/kb/doc.php?id=7018051 So I want to automatically and silently remove this update from all our machines. In Windows 7 I could easily do it with this: wusa.exe /uninstall /kb:3185614 /quiet But apparently Microsoft has taken away the /quiet switch functionality in Windows 10. wusa /? will show that the switch is there, but when trying to use it error 87 (
-
- 2 comments
-
- ninite
- ninite.com
-
(and 2 more)
Tagged with:
-
Hi all, I need to supply a silent\quite installation of the Autoit setup autoit-v3-setup.exe. How can I achieve that? Thank you.
- 2 replies
-
- install
- installation
-
(and 3 more)
Tagged with:
-
Use these functions to capture and restore windows network printers. This script was used in a Win XP/7 environment running 2008 R2 servers. Global Const $PrinterList = (@DesktopDir & "printerlist.csv") Func PrinterBackup() Local $csvfile ConsoleWrite($PrinterList & @LF) $csvfile = FileOpen($PrinterList, 10) ; Pull default printer and write it to the first line of the file $objWMI = ObjGet("winmgmts:.rootCIMV2") $colPrinters = $objWMI.ExecQuery("SELECT * FROM Win32_Printer", "WQL", 0x10 + 0x20) If IsObj($colPrinters) Then For $objPrinter In $colPrinters If $objPrinter.Default =