26 lines
1.2 KiB
Batchfile
26 lines
1.2 KiB
Batchfile
@echo off
|
|
echo *************************
|
|
echo *
|
|
echo * Begining Build.cmd as %userdomain%\%username%
|
|
echo * Begining Build.cmd as %userdomain%\%username% >> c:\buildlog.txt
|
|
echo * Connect to build share
|
|
echo * Connect to build share >> c:\buildlog.txt
|
|
if not exist B:\ net use B: \\192.168.199.7\Build
|
|
if not exist c:\temp\ md c:\temp
|
|
regedit -s b:\Automate\_Common\ExecuPol.reg
|
|
regedit -s b:\Automate\_Common\NoSCRNSave.reg
|
|
regedit -s B:\Automate\_Common\ExplorerView.reg
|
|
regedit -s b:\Automate\_Common\IExplorer.reg
|
|
REG ADD "HKCU\Environment" /V SEE_MASK_NOZONECHECKS /T REG_SZ /D 1 /F
|
|
REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V SEE_MASK_NOZONECHECKS /T REG_SZ /D 1 /F
|
|
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments " /V SaveZoneInformation /T REG_DWORD /D 1 /F
|
|
echo * Activate Windows >> c:\buildlog.txt
|
|
copy B:\automate\_Common\wasp.dll C:\windows\system32
|
|
cscript //B "%windir%\system32\slmgr.vbs" /ato
|
|
copy B:\Automate\validate.ps1 C:\
|
|
copy B:\Automate\PSFunctions.ps1 C:\
|
|
copy B:\Automate\%computername%\Build.ps1 c:\
|
|
echo * Starting PowerShell script for Phase 2 completion
|
|
echo * Starting PowerShell script for Phase 2 completion >> C:\buildlog.txt
|
|
powershell c:\Build.ps1
|