Documentation ¶
Index ¶
- Constants
- type BitLockerConversionStatus
- type BitLockerDeviceInfo
- type CPU
- type Disk
- type Hardware
- type LocalGroup
- type LocalGroupMember
- type LocalUser
- type Memory
- type MemoryDIMM
- type Network
- type OperatingSystem
- type Process
- type Service
- type SessionDetails
- type Software
- type WindowsUpdate
- type WindowsUpdateHistory
Constants ¶
const ( FULLY_DECRYPTED = iota FULLY_ENCRYPTED ENCRYPTION_IN_PROGRESS DECRYPTION_IN_PROGRESS ENCRYPTION_PAUSED DECRYPTION_PAUSED )
Possible values for the value placed in the ConversionStatus field returned by the GetConversionStatus method of Win32_EncryptableVolume
const ( DATA_ONLY = 0x00000001 ON_DEMAND_WIPE = 0x00000002 SYNCHRONOUS = 0x00010000 )
Bitflags for the value placed in the EncryptionFlags field returned by the GetConversionStatus method of Win32_EncryptableVolume
const ( NOT_WIPED = iota WIPED WIPING_IN_PROGRESS WIPING_PAUSED )
Possible values for the value placed in the WipingStatus field returned by the GetConversionStatus method of Win32_EncryptableVolume
const ( SESS_INTERACTIVE_LOGON = 2 SESS_REMOTE_INTERACTIVE_LOGON = 10 SESS_CACHED_INTERACTIVE_LOGON = 11 )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BitLockerConversionStatus ¶
type BitLockerConversionStatus struct { ConversionStatus uint32 EncryptionPercentage uint32 EncryptionFlags uint32 WipingStatus uint32 WipingPercentage uint32 }
BitLockerConversionStatus represents the GetConversionStatus method of Win32_EncryptableVolume
type BitLockerDeviceInfo ¶
type BitLockerDeviceInfo struct { DeviceID string PersistentVolumeID string DriveLetter string ProtectionStatus uint32 ConversionStatus uint32 RecoveryKeys []string }
BitLockerDeviceInfo contains the bitlocker state for a given device
type Disk ¶
type Disk struct { DriveName string `json:"DriveName"` TotalSize uint64 `json:"TotalSize"` Available uint64 `json:"FreeSpace"` FileSystem string `json:"FileSystem"` BitLockerEnabled bool `json:"BitLockerEnabled"` BitLockerEncrypted bool `json:"BitLockerEncrypted"` BitLockerRecoveryInfo *BitLockerDeviceInfo `json:"BitLockerRecoveryInfo,omitempty"` }
type Hardware ¶
type Hardware struct { HardwareUUID string `json:"HardwareUUID"` Manufacturer string `json:"Manufacturer"` Model string `json:"Model"` ServiceTag string `json:"ServiceTag"` BIOSVersion string `json:"biosVersion"` BIOSManufacturer string `json:"biosManufacturer"` BIOSReleaseDate time.Time `json:"biosReleaseDate"` TPMSpecVersion string `json:"tpmSpecVersion,omitempty"` IsUsingUEFI bool `json:"isUsingUEFI"` SecureBootEnabled bool `json:"safebootEnabled"` CPU []CPU `json:"cpus"` Memory []MemoryDIMM `json:"memoryDIMMs"` }
type LocalGroup ¶
A LocalGroup represents a locally defined group on a Windows system.
type LocalGroupMember ¶
type LocalGroupMember struct { Domain string `json:"domain"` Name string `json:"name"` DomainAndName string `json:"domainAndName"` }
A LocalGroupMember contains information about a member of a group.
type LocalUser ¶
type LocalUser struct { Username string `json:"username"` FullName string `json:"fullName"` IsEnabled bool `json:"isEnabled"` IsLocked bool `json:"isLocked"` IsAdmin bool `json:"isAdmin"` PasswordNeverExpires bool `json:"passwordNeverExpires"` NoChangePassword bool `json:"noChangePassword"` PasswordAge time.Duration `json:"passwordAge"` LastLogon time.Time `json:"lastLogon"` BadPasswordCount uint32 `json:"badPasswordCount"` NumberOfLogons uint32 `json:"numberOfLogons"` }
type MemoryDIMM ¶
type OperatingSystem ¶
type Service ¶
type Service struct { SCName string `json:"name"` DisplayName string `json:"displayName"` Status uint32 `json:"status"` StatusText string `json:"statusText"` ServiceType uint32 `json:"serviceType"` IsRunning bool `json:"isRunning"` AcceptStop bool `json:"acceptStop"` RunningPid uint32 `json:"pid"` }
type SessionDetails ¶
type SessionDetails struct { Username string `json:"username"` Domain string `json:"domain"` LocalUser bool `json:"isLocal"` LocalAdmin bool `json:"isAdmin"` LogonType uint32 `json:"logonType"` LogonTime time.Time `json:"logonTime"` DnsDomainName string `json:"dnsDomainName"` }
func (*SessionDetails) FullUser ¶
func (s *SessionDetails) FullUser() string
func (*SessionDetails) GetLogonType ¶
func (s *SessionDetails) GetLogonType() string
type Software ¶
type Software struct { DisplayName string `json:"displayName"` DisplayVersion string `json:"displayVersion"` Arch string `json:"arch"` Publisher string `json:"publisher"` InstallDate time.Time `json:"installDate"` EstimatedSize uint64 `json:"estimatedSize"` Contact string `json:"Contact"` HelpLink string `json:"HelpLink"` InstallSource string `json:"InstallSource"` InstallLocation string `json:"InstallLocation"` UninstallString string `json:"UninstallString"` VersionMajor uint64 `json:"VersionMajor"` VersionMinor uint64 `json:"VersionMinor"` }
EstimatedSize is in KB, As estimated & written to the registry by the installer itself, or Windows Installer for an MSI.
func (*Software) Architecture ¶
type WindowsUpdate ¶
type WindowsUpdate struct { UpdatesReq bool `json:"required"` NumUpdates int `json:"number"` UpdateHistory []*WindowsUpdateHistory `json:"history"` }