created | modified |
---|---|
2024-12-09 16:26:14 UTC |
2024-12-09 16:26:14 UTC |
- 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
- Adobe
- Click Next.
- Select the following applications:
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