[EditionID]
Professional
[Channel]
Retail
[VL]
0
If you leave [EditionID] parameter blank - during installation process you will be able to choose which versionto install.
[EditionID]
Professional
[Channel]
Retail
[VL]
0
HKCU\Software\Microsoft\Windows NT\CurrentVersion\Windows
# Gets time stamps for all computers in the domain that have NOT logged in since after specified date
$time = Read-host "Enter a date in format mm/dd/yyyy"
$time = get-date ($time)
$date = get-date ($time) -UFormat %d.%m.%y
# Get all AD computers with lastLogonTimestamp less than our time
Get-ADComputer -Filter {LastLogonTimeStamp -lt $time} -Properties LastLogonTimeStamp |
# Output hostname and lastLogonTimestamp into CSV
select-object Name,@{Name="Stamp"; Expression={[DateTime]::FromFileTime($_.lastLogonTimestamp)}} | export-csv old_users.csv -notypeinformation
Source: http://blog.mattvogt.net/
=VLOOKUP($A$2:$A$718*1;Sheet2!$A$3:$B$725;2;FALSE)