Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <#
- --------------------------------------------------------------------------------------------
- System.Environment Class
- [Environment]::<OSVersion, MachineName, HasShutdownStarted, NewLine, ...
- ::<SystemDirectory,
- --------------------------------------------------------------------------------------------
- #>
- #OS Version + Build + Revision <- https://imgur.com/oG4A5Zu
- [Environment]::OSVersion.Version
- #System Directory (default C:\Windows\System32)
- [Environment]::SystemDirectory
- #Major + Minor + Build + Revision <- https://imgur.com/Qt0WkdJ
- $OSVersion = [Version](Get-ItemProperty -Path "$($Env:Windir)\System32\hal.dll" -ErrorAction SilentlyContinue).VersionInfo.FileVersion.Split()[0]
Advertisement
Add Comment
Please, Sign In to add comment