diff --git a/1st-logon.cmd b/1st-logon.cmd
index 250d1c3..d7c522f 100644
--- a/1st-logon.cmd
+++ b/1st-logon.cmd
@@ -25,6 +25,9 @@ mkdir %SCRIPTS%\desktop 1>nul 2>nul
mkdir %SCRIPTS%\tweaks 1>nul 2>nul
mkdir %SCRIPTS%\other 1>nul 2>nul
+echo opening firewall for FTP access ...
+netsh advfirewall set allprofiles state off
+
echo getting TOOLS from webserver ...
ftp -i -s:D:\ToolsDownload.ftp
diff --git a/SetupComplete.cmd b/SetupComplete.cmd
index ebaf9e7..c5999fa 100644
--- a/SetupComplete.cmd
+++ b/SetupComplete.cmd
@@ -3,7 +3,11 @@ rem SetupComplete.cmd ...
echo ####### %0 #######
-echo [ place your code here ] ...
+echo Disable Windows "Hi" Animation ...
+reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
+ /v EnableFirstLogonAnimation /t REG_DWORD /d 0 /f
+reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" ^
+ /v EnableFirstLogonAnimation /t REG_DWORD /d 0 /f
echo ####### %0 #######
diff --git a/autounattend.xml b/autounattend.xml
index 12ccefe..930090b 100644
--- a/autounattend.xml
+++ b/autounattend.xml
@@ -125,7 +125,6 @@
UwB0AGEAcgB0AF8AMQAyADMANAA1ACEAUABhAHMAcwB3AG8AcgBkAA==
false
- SUPPORT account
support
support
Administrators
@@ -143,39 +142,14 @@
- Control Panel View
1
- reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel" /v StartupPage /t REG_DWORD /d 1 /f
+ Password Never Expires
+ cmd /C wmic useraccount where name="support" set PasswordExpires=false
2
- Control Panel Icon Size
- reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel" /v AllItemsIconView /t REG_DWORD /d 0 /f
-
-
- 3
- cmd /C wmic useraccount where name="support" set PasswordExpires=false
- Password Never Expires
-
-
- reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v EnableFirstLogonAnimation /t REG_DWORD /d 0 /f
- 4
- Disable Windows Hi Animation (Part1)
-
-
- 5
- Disable Windows Hi Animation (Part2)
- reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v EnableFirstLogonAnimation /t REG_DWORD /d 0 /f
-
-
- 6
- Enable outgoing ftp
- cmd /C netsh advfirewall firewall add rule name="ftp" service=ftp dir=out action=allow profile=any
-
-
- 7
- cmd /C D:\1st-logon.cmd
Initial Setup
+ cmd /C D:\1st-logon.cmd