The argument
can control the operation of the management resource or configure the management resource in
some way. For example, typing
winrm set winrm/config @{MaxEnvelopeSizekb=???100???}
would change the maximum envelope size for the local copy of WinRM. The key and value pair
must appear within curly braces ({}) and be preceded by an at (@) sign. You can incorporate
multiple settings in one request by separating them with a semicolon (;).
-file:
VALUE
Specifies the name of a file containing key and value pairs. See the
@{
KEY
=???
VALUE
???
[;
KEY
=???
VALUE
???]}
entry for details. The file simply makes it easier to provide the data at the command
line.
-ReturnType:{Object | EPR | ObjectAndEPR}
Determines the return type of the data. The
Object
return type provides a listing of the object. The
End Point Reference (EPR)
return
type provides information about the resource URI and selectors for the specified instance. The
ObjectAndEPR
type returns both an object listing and the EPR data.
-Shallow
Enumerates only the instances of the base class as specified by the resource URI.
Otherwise, the utility returns both the base class and derived classes.
Pages:
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016