Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.14 KB

Install Windows 10 Enterprise (x64).md

File metadata and controls

45 lines (36 loc) · 1.14 KB
created modified
2024-12-09 16:26:14 UTC
2024-12-09 16:26:14 UTC

Install custom Windows 10 image

  • On the Task Sequence step, select Windows 10 Enterprise (x64) and click Next.
  • On the Computer Details step:
    • In the Computer name box, type STORM.
    • Specify WORKGROUP.
    • Click Next.
  • On the Applications step:
    • Select the following applications:
      • Adobe
        • Adobe Reader 8.3.1
      • Microsoft
        • SQL Server Management Studio
      • Mozilla
        • Firefox (64-bit)
        • Thunderbird
    • Click Next.

# Rename local Administrator account and set password

Set-ExecutionPolicy Bypass -Scope Process -Force

$password = C:\NotBackedUp\Public\Toolbox\PowerShell\Get-SecureString.ps1

Note

When prompted, type the password for the local Administrator account.

$plainPassword = [Runtime.InteropServices.Marshal]::PtrToStringAuto(
    [Runtime.InteropServices.Marshal]::SecureStringToBSTR($password))

$adminUser = [ADSI] 'WinNT://./Administrator,User'
$adminUser.Rename('foo')
$adminUser.SetPassword($plainPassword)

logoff