Testing on several systems shows that support for this feature is
sketchy at best. You??™ll generally manage adapters on the motherboard using the same techniques
that you use to manage stand-alone adapters.
OS Provides access to statistics about the current operating system. For example, to obtain the
operating system name and build, you??™d type WMIC OS GET Caption, BuildNumber and press
Enter.
Pagefile Provides information about the Windows page file. You can??™t use this alias to control
the page file size.
PageFileSet Manages the Windows page file. However, instead of using a method to set the
page file, you use properties. For example, to set the page file on drive C to an initial size of 2 GB
and a maximum size of 2 GB, you??™d type WMIC PageFileSet Where Name="C:\\PageFile.SYS"
SET InitialSize=2048,MaximumSize=2048 and press Enter. Notice that you separate the SET
arguments with commas and that you have to use a double backslash for the page file entry,
even though the Name property displays with a single backslash.
Partition Provides statistics about the partitions on the hard drive. You can??™t use this alias to
change the partition sizes.
Pages:
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191