Categories
- Education (6)
- Fix IT (29)
- Information Technology (53)
- Tips (6)
- Uncategorized (7)
Tags
Author Archives: maoeh
List disk drives into an array
This Powershell script ist playing with an “athook” object based on an array having different named properties . $Array = @() Foreach ($vol In GET-WMIOBJECT win32_logicaldisk) { $obj = New-Object PSObject $Value = $vol.DeviceID $obj | Add-Member -MemberType NoteProperty -Name "Drive" -value … Continue reading
What is NTLM
TechNet article written by Jesper Johansson explains NTLM Security Watch The Most Misunderstood Windows Security Setting of All Time https://technet.microsoft.com/en-us/library/2006.08.securitywatch.asp
Get OS Version from Windows Install medium
Find the wim file located in :\sources on the install medium then run a command shell as administrator. dism /get-wiminfo /wimFile:<Drive>:\sources\<Wimfile> As a result you should get something like this: dism /get-wiminfo /wimfile:Y:\sources\boot.wim Deployment Image Servicing and Management tool Version: … Continue reading