From 0bc77b218ebbdd391534d3aa082f5cc0a2f6ba30 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Fri, 25 Dec 2020 22:24:09 +0100 Subject: [PATCH] . --- 1st-logon.cmd | 3 +++ SetupComplete.cmd | 6 +++++- autounattend.xml | 32 +++----------------------------- 3 files changed, 11 insertions(+), 30 deletions(-) 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</PlainText> </Password> - <Description>SUPPORT account</Description> <DisplayName>support</DisplayName> <Name>support</Name> <Group>Administrators</Group> @@ -143,39 +142,14 @@ </AutoLogon> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> - <Description>Control Panel View</Description> <Order>1</Order> - <CommandLine>reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel" /v StartupPage /t REG_DWORD /d 1 /f</CommandLine> + <Description>Password Never Expires</Description> + <CommandLine>cmd /C wmic useraccount where name=&quot;support&quot; set PasswordExpires=false</CommandLine> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <Order>2</Order> - <Description>Control Panel Icon Size</Description> - <CommandLine>reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel" /v AllItemsIconView /t REG_DWORD /d 0 /f</CommandLine> - </SynchronousCommand> - <SynchronousCommand wcm:action="add"> - <Order>3</Order> - <CommandLine>cmd /C wmic useraccount where name=&quot;support&quot; set PasswordExpires=false</CommandLine> - <Description>Password Never Expires</Description> - </SynchronousCommand> - <SynchronousCommand wcm:action="add"> - <CommandLine>reg add &quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon&quot; /v EnableFirstLogonAnimation /t REG_DWORD /d 0 /f</CommandLine> - <Order>4</Order> - <Description>Disable Windows Hi Animation (Part1)</Description> - </SynchronousCommand> - <SynchronousCommand wcm:action="add"> - <Order>5</Order> - <Description>Disable Windows Hi Animation (Part2)</Description> - <CommandLine>reg add &quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System&quot; /v EnableFirstLogonAnimation /t REG_DWORD /d 0 /f</CommandLine> - </SynchronousCommand> - <SynchronousCommand wcm:action="add"> - <Order>6</Order> - <Description>Enable outgoing ftp</Description> - <CommandLine>cmd /C netsh advfirewall firewall add rule name="ftp" service=ftp dir=out action=allow profile=any</CommandLine> - </SynchronousCommand> - <SynchronousCommand wcm:action="add"> - <Order>7</Order> - <CommandLine>cmd /C D:\1st-logon.cmd</CommandLine> <Description>Initial Setup</Description> + <CommandLine>cmd /C D:\1st-logon.cmd</CommandLine> </SynchronousCommand> </FirstLogonCommands> </component>