Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
pub:windows_setup_-_oobe [2022/12/25 10:53] – [check hardware info] derekpub:windows_setup_-_oobe [2023/04/05 09:36] (current) – [rename computer, join domain] derek
Line 1: Line 1:
 == windows setup - oobe == windows setup - oobe
  
-=== win10 home create local account at OOBE 
-  * **DO NOT connect to internet** during OOBE 
-  * if already connected, try restart the computer or turn off the wifi 
-  * if must login, use ''nobodyboss@outlook.com mSxxxx@xxx'' 
  
 === check hardware info === check hardware info
Line 11: Line 7:
 Get-CimInstance -ClassName Win32_BIOS | Format-List Get-CimInstance -ClassName Win32_BIOS | Format-List
 Get-CimInstance -ClassName Win32_Processor | Format-List Get-CimInstance -ClassName Win32_Processor | Format-List
-Get-Ciminstance -ClassName "cim_physicalmemory" | % { ($_.BankLabel)+":"+($_.Capacity/1gb)+"GB" } +Get-Ciminstance -ClassName "cim_physicalmemory" | % { ($_.BankLabel)+" : "+($_.Capacity/1gb)+"GB" }
-</code>+
  
-=== create local admin user+Get-CimInstance Win32_LogicalDisk | where{$_.DriveType -eq '3'} ` 
 +| Select DeviceID, DriveType,VolumeName, 
 +@{N='TotalSize(GB)';E={[Math]::Ceiling($_.Size/1GB)}}, @{N='FreeSize(GB)';E={[Math]::Ceiling($_.FreeSpace/1GB)}} | 
 +ft -AutoSize 
 +#
  
-Create users change account name/type +</code>
- +
-  control userpasswords +
- +
-Command line add user+
  
-  net user /add Owner 
-  net localgroup administrators Owner /add 
-  # net user Owner /fullname:"Owner" 
  
 === uninstall vendor bloatware, antivirus, office, etc === uninstall vendor bloatware, antivirus, office, etc
Line 40: Line 32:
  
  
-add domain user to local+add domain user to local administrator
  
   control userpasswords2   control userpasswords2