Board logo

标题: [原创教程] PowerShell 技能连载 - 列出所有信息 [打印本页]

作者: victorwoo    时间: 2014-10-20 09:34     标题: PowerShell 技能连载 - 列出所有信息

原始链接:PowerShell 技能连载 - 列出所有信息
发表日期:2014-10-14


适用于 PowerShell 所有版本

大多数时候,PowerShell 不会显示从 cmdlet 中返回的所有信息。相反地,PowerShell 限制了只显示信息中最常见的部分。
  1. PS> Get-WmiObject -Class CIM_CacheMemory
  2. BlockSize      : 1024
  3. CacheSpeed     :
  4. CacheType      : 4
  5. DeviceID       : Cache Memory 0
  6. InstalledSize  : 32
  7. Level          : 3
  8. MaxCacheSize   : 32
  9. NumberOfBlocks : 32
  10. Status         : OK
  11. (...)
复制代码
要看到完整的信息,请像这样加一句 `Select-Object` 语句:
  1. PS> Get-WmiObject -Class CIM[i]CacheMemory [/i] Select-Object -Property *
  2. PSComputerName              : TOBI2
  3. DeviceID                    : Cache Memory 0
  4. ErrorCorrectType            : 5
  5. Availability                : 3
  6. Status                      : OK
  7. StatusInfo                  : 3
  8. BlockSize                   : 1024
  9. CacheSpeed                  :
  10. CacheType                   : 4
  11. InstalledSize               : 32
  12. Level                       : 3
  13. MaxCacheSize                : 32
  14. NumberOfBlocks              : 32
  15. WritePolicy                 : 3
  16. __GENUS                     : 2
  17. [i]_CLASS                     : Win32[/i]CacheMemory
  18. [i]_SUPERCLASS                : CIM[/i]CacheMemory
  19. [i]_DYNASTY                   : CIM[/i]ManagedSystemElement
  20. [i]_RELPATH                   : Win32[/i]CacheMemory.DeviceID="Cache Memory 0"
  21. [i]_PROPERTY[/i]COUNT            : 53
  22. [i]_DERIVATION                : {CIM[/i]CacheMemory, CIM[i]Memory, CIM[/i]StorageExtent,
  23.                               CIM_LogicalDevice...}
  24. __SERVER                    : TOBI2
  25. __NAMESPACE                 : root\cimv2
  26. [i]_PATH                      : \\TOBI2\root\cimv2:Win32[/i]CacheMemory.DeviceID="Cache
  27.                                Memory 0"
  28. Access                      :
  29. AdditionalErrorData         :
  30. Associativity               : 7
  31. Caption                     : Cache Memory
  32. ConfigManagerErrorCode      :
  33. ConfigManagerUserConfig     :
  34. CorrectableError            :
  35. CreationClassName           : Win32_CacheMemory
  36. CurrentSRAM                 : {5}
  37. Description                 : Cache Memory
  38. EndingAddress               :
  39. ErrorAccess                 :
  40. ErrorAddress                :
  41. ErrorCleared                :
  42. ErrorData                   :
  43. ErrorDataOrder              :
  44. ErrorDescription            :
  45. ErrorInfo                   :
  46. ErrorMethodology            :
  47. ErrorResolution             :
  48. ErrorTime                   :
  49. ErrorTransferSize           :
  50. FlushTimer                  :
  51. InstallDate                 :
  52. LastErrorCode               :
  53. LineSize                    :
  54. Location                    : 0
  55. Name                        : Cache Memory
  56. OtherErrorDescription       :
  57. PNPDeviceID                 :
  58. PowerManagementCapabilities :
  59. PowerManagementSupported    :
  60. Purpose                     : L1 Cache
  61. ReadPolicy                  :
  62. ReplacementPolicy           :
  63. StartingAddress             :
  64. SupportedSRAM               : {5}
  65. SystemCreationClassName     : Win32_ComputerSystem
  66. SystemLevelAddress          :
  67. SystemName                  : TOBI2
  68. Scope                       : System.Management.ManagementScope
  69. Path                        : \\TOBI2\root\cimv2:Win32_CacheMemory.DeviceID="Cache
  70.                                Memory 0"
  71. Options                     : System.Management.ObjectGetOptions
  72. ClassPath                   : \\TOBI2\root\cimv2:Win32_CacheMemory
  73. Properties                  : {Access, AdditionalErrorData, Associativity,
  74.                               Availability...}
  75. SystemProperties            : {[b]GENUS, [/b]CLASS, [b]SUPERCLASS, [/b]DYNASTY...}
  76. Qualifiers                  : {dynamic, Locale, provider, UUID}
  77. Site                        :
  78. Container                   :
  79. (...)
复制代码
本文国际来源:List All Information




欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2