Quickly identify FSMO roles, operation master roles
- No Comments
- May, 27, 2010
- Angelo Schalley
- Windows-Microsoft
netdom query fsmo
dsquery server -hasfsmo pdc
dsquery server -hasfsmo schema
etc …
Forest :
Domain naming ( check existing domains )
Schema ( building blocks of AD )
Domain :
Infrastructure ( keeps cross domain object in order )
RID ( SID )
PDC emulator
— Auth Time
— Auth Pass authen
— Master Browser
— NT4 PDC emulator
Read more on Quickly identify FSMO roles, operation master roles…
grep awk sort
- No Comments
- May, 04, 2010
- Angelo Schalley
- Linux
Print second column and sort
ifconfig -a | grep 192.168 | awk ‘{print $2}’ | sort
Print seconf column with extra text
ifconfig -a | grep 192.168 | awk ‘{print “some text” $2 “more text”}’ | sort