Use DomainJoin account instead of admin

This commit is contained in:
Adam Goldsmith 2022-09-16 01:13:09 -04:00
parent 659e33b454
commit 2c37386c8e
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ If ($Null -eq $NewComputerName) {
$NewComputerName = Read-Host -Prompt "Please enter desired computer name then hit enter" $NewComputerName = Read-Host -Prompt "Please enter desired computer name then hit enter"
} }
$cred = New-Object System.Management.Automation.PsCredential("SAWTOOTH\Administrator", (ConvertTo-SecureString "REPLACE_WITH_PASSWORD" -AsPlainText -Force)) $cred = New-Object System.Management.Automation.PsCredential("SAWTOOTH\DomainJoin", (ConvertTo-SecureString "REPLACE_WITH_PASSWORD" -AsPlainText -Force))
Write-Host "Waiting for RPC Service" Write-Host "Waiting for RPC Service"
(Get-Service RpcSs).WaitForStatus("Running") (Get-Service RpcSs).WaitForStatus("Running")

View File

@ -159,7 +159,7 @@
</AutoLogon> </AutoLogon>
<FirstLogonCommands> <FirstLogonCommands>
<SynchronousCommand wcm:action="add"> <SynchronousCommand wcm:action="add">
<CommandLine>net use \\ucs.sawtooth.claremontmakerspace.org\software /user:SAWTOOTH\Administrator REPLACE_WITH_PASSWORD</CommandLine> <CommandLine>net use \\ucs\software /user:DomainJoin REPLACE_WITH_PASSWORD</CommandLine>
<Description>Set Up UCS Share</Description> <Description>Set Up UCS Share</Description>
<Order>1</Order> <Order>1</Order>
</SynchronousCommand> </SynchronousCommand>