Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haavarstein/Automation-Framework-Community-Edition
https://github.com/haavarstein/Automation-Framework-Community-Edition
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/haavarstein/Automation-Framework-Community-Edition
- Owner: haavarstein
- Created: 2018-10-15T09:28:30.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-22T16:48:09.000Z (12 months ago)
- Last Synced: 2024-08-02T17:33:04.402Z (3 months ago)
- Language: PowerShell
- Size: 168 KB
- Stars: 42
- Watchers: 11
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Change Control.txt
Awesome Lists containing this project
- jimsghstars - haavarstein/Automation-Framework-Community-Edition - (PowerShell)
README
# Automation Framework Community Edition (AFCE)
1. Download repo ZIP and extract to C:\Source
2. Download Windows 2022 Evaluation : https://www.microsoft.com/en-us/cloud-platform/windows-server-trial
3. Mount ISO and set correct drive letter in .\Install.ps1
4. Run C:\Source\Install.ps1# Deploy Domain Controller with AFCE
1. Set the local password to the same on all VMs (this applies only to Cloud) : net user administrator YOURLOCALPASSWORD
2. Set Domain Name and Reverse Lookup IP Address in .\Applications\Scripts\Settings.xml
3. Set DHCP Scope in .\Applications\Scripts\DHCP-vendor.ps1# Deploy Automation Framework with AFCE
1. Set the local password to the same on all VMs (this applies only to Cloud) : net user administrator YOURLOCALPASSWORD
2. Set Computername and Join Domain
2. Add the local password to CustomSettings.ini => AdminPassword=YOURLOCALPASSWORD
3. Set Run As Domain & Password in the Automation Framework Task Sequence (The Tasks with White Icon)
4. Cut / Paste the Windows 2019 ISO into .\Applications\Misc\Automation Framework
5. Add the licensed Install.ps1 (AF) into the same folder.
6. Run cscript \\HYDRATIONSERVERIP\Hydration$\scripts\litetouch.wsf (Cloud Only - Disable Firewall on Hydration Server)# Download and Extract
```
[Net.ServicePointManager]::SecurityProtocol = "tls12, tls11, tls"
wget -uri https://github.com/haavarstein/Automation-Framework-Community-Edition/archive/master.zip -OutFile C:\Windows\Temp\Master.zip
Expand-Archive -Path C:\Windows\Temp\Master.zip -DestinationPath C:\
ren "C:\Automation-Framework-Community-Edition-master" "C:\Source"
CD "C:\Source"```