-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By WilliamasKumeliukas
Hi,
I started this project alone in May 2020 as project in my spare time at work, I'm working for a IT company that started opening their services to residential customers few months ago and now my position in the company kinda drifted in the doom and gloom world of repetitive tasks like: Reinstallation of Windows 10.
The procedure is very repetitive and I started feeling like being a robot which is the main reason I started this project.
==============================FAQ==================================
1. Q: Do you want this project to be accomplished with the usage of AutoIT ONLY or 3rd party tools / Scripts (BATCH / POWERSHELL / VB) ? A: No, if I cannot find a way using AutoIT to accomplish a task I will move to my Plan B which consist of automating an 3rd party tool to accomplish the affected task until a solution is found. 2. Q: What do I get from helping/collaborating in this project? A: I will personally take the responsability to mention you in the credits of this project. 3. Q: If I have more questions, can I ask? A: Certainly! feel free to ask any questions related to this project! 4. Q: What is the main goal of this project? A: Automating Windows 10 configuration without user interaction needed (as much as possible) ______________________________________________________________________________________________________________________________
Current progression of the project (more will be added in future)
« Blue = Info || Yellow = Unfinished/Untested || Purple = Could be better || Green = Done ||Red = Not Yet Started »
***Very early Stage ***
Connect Network Attached Storage(NAS) (Tested & Working - AutoIT only)
Download & Install up to 567 softwares with Auto prediction of text typed (Tested & Working - using 3rd party tool)
Change OEM Information (Tested & Working - AutoIT)
Disable ScreenSaver (Require testing AutoIT only)
Change Computer Name (Require testing AutoIT only)
Show Computer Information and Smart status on GUI (Tested & Working - AutoIT Only)
Change .pdf / .pdfxml from Edge to Adobe Reader DC (Tested &Working - using 3rd party tool)
Change Edge to Google Chrome as Default Browser (Tested & Working - using 3rd party tool)
Windows Updates (Working - AutoIT only)
Install Office 365
Activate Office 365
Pin to taskbar Excel, Outlook, Word, Chrome (Tested & Working - using 3rd party tool)
GUI currently featuring the following options :
- Checkboxes for desired tasks
Inputs for : SupportUrl, Manufacturer, Model, SupportPhone, SupportHour, OEM Logo path
- Redirect ConsoleWrite with timestamped messages in richedit (errors shown separately in red colored text)
*** To Do ***
- Read informations needed for tasks like: OEM, ComputerName, NAS user/password etc... from a file
- ListView for Windows Updates
- Probably more
*** If this project interest you, Reply here This will greatly help me to see if you'd like this project to become real ***
______________________________________________________________________________________________________________________________
2020.09.21 Update: Since this topic reached over 200+ views without a single interest shown by community, pm me if you're willing to be part of the project and i'll share with you the GitHub project link
Best Regards,
~WilliamasKumeliukas
-
By abberration
Software Installer
version 1.2 - Jan 2, 2021
Hello, everyone!
Today, I present to you a new version of Software Installer. This script is designed to be used on CDs/DVDs/USB drives where you put software in a folder (called Software) and you can select multiple software and it will automate installing your selected software one after another with little to no interaction. To do this, you simply need to configure each software with a silent switch (most software have one or more). You can put your software in categories to organize them on the main GUI.
Screenshot:
The major new things concerning this project:
Added a Detect button, where the software tries to detect what kind of installer is used, saving you from having to find out on your own. It's not perfect, but it detects many common installer types. Added a Installers.db file for installers that were not created by the most common methods (Inno Setup, NSIS, etc). I will continue to add to this file. If you have any that you find that you would like to contribute, please PM. I would very much appreciate your help. This version searches for all subfolders now and shows .exe and .msi files that you may not want to see on the main screen. Therefore, I have added the option to "Hide This Item On Main GUI". Added the ability to install up to 2 software before and up to 2 software or registry entries after installing your selected software. This will allow you to install things like service packs, DotNet, etc. (prerequisites). And it will allow you to apply your licensing information through registry entries or patches/updates. If you want the full package (source code, compiled .exe (both 32/64 bit), changelog, installers.db, icon, etc.), you can download it here:
https://www.filefactory.com/file/2o2enxmm73qo/Software_Installer_v.1.2.zip
I have a lifetime account at FileFactory, so the link should never die and you do NOT need an account or pay them money to download. Simply choose the free/slow download option. The file is small and will still download fairly quickly. If you have trouble downloading it, PM me. I have the previous versions of this script, but they are inferior to this version, so if you want the older versions, PM me and I will provide them.
If you just want the bare minimum, the script, installers.db and changelog are attached on this forum below.
Enjoy!
Software Installer.au3 Installers.db Changelog.pdf
-
By Barney
From MiniMax to Machine Learning ... Tic Tac Toe is a good game for studying AI algorithm because it's simple!
I use Tabular Q Learning to implement this game, Every time a game finished, it will use the Q function to update
the score of each steps it played.
Q(S,A) = Q(S,A) + α ∗ (γ ∗ maxaQ(S′,a) − Q(S,A))
S being the current state, A the current action, S′ the state after doing A, α being the learning rate, γ being the
discount factor, and maxaQ(S′,a) the highest Q value of any move in the next state S′, i.e. the Q value of the best
move in the following state.
It's funny to see that it plays better and better. That's why people were charmed by Machine Learning!
Thank you!
Download: tic_tac_toe.zip
-
By Dan_555
Hi, this is a Nonogram Game.
It is compiled for windows in 32bit (64bit does not work as intended!), sourcecode in v3.3.14.5, icon and the required ini file with more than 100 puzzles.
The Game has an built-in Editor, and can generate random playfields.
-
By Barney
Hi guys, I just finished a Connect 4 game by using MiniMax with Alpha Beta Pruning. I haven't written a program for a long time, but writing an
AI program is always funny! I have to learn how the algorithm works and try to optimize the code to run faster. Let's play and have fun!
Oops, I lost the game ...
Thanks guys!
Download: Connect 4.zip
-