summaryrefslogtreecommitdiffstats
path: root/examples/README
diff options
context:
space:
mode:
authorAnas Nashif <nashif@intel.com>2007-03-04 06:02:31 +0000
committerAnas Nashif <nashif@intel.com>2007-03-04 06:02:31 +0000
commitc403025da2cb37bcc3e72fbf957fa2df04c63f28 (patch)
tree7ef7a0d907c00a8ad216b0d558b757da3a16f338 /examples/README
parent8553e5a564a06fec2187c80e9f1b438ca469791b (diff)
downloadwsmancli-c403025da2cb37bcc3e72fbf957fa2df04c63f28.tar.gz
wsmancli-c403025da2cb37bcc3e72fbf957fa2df04c63f28.tar.xz
wsmancli-c403025da2cb37bcc3e72fbf957fa2df04c63f28.zip
added README for exmaples, moved serial. doc to main tree under doc/
Diffstat (limited to 'examples/README')
-rw-r--r--examples/README83
1 files changed, 83 insertions, 0 deletions
diff --git a/examples/README b/examples/README
new file mode 100644
index 0000000..da22b01
--- /dev/null
+++ b/examples/README
@@ -0,0 +1,83 @@
+
+wsmid_identify
+--------------
+
+Summary:
+ Issue an Identify request and de-serialize the result.
+Options:
+ -p, --product Print Product Vendor
+ -v, --version Print Product Version
+ -P, --protocol Print Protocol Version
+ -u, --endpoint=<uri> Endpoint in form of a URL
+Example:
+
+ % ./wsmid_identify -u http://wsman:secret@example.com:8889/wsman
+
+ Openwsman Project 0.7.0 supporting protocol http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd
+
+
+serialize
+----------
+
+Summary:
+ Examples using the XML serialization and de-serialization API.
+Options:
+ None
+Example:
+ run ./serialize in the local directory which will do several serialization and
+ de-serialization routines.
+ For more details, check the file 'doc/README.serialization' in the openwsman
+ repository for detailed documentation of the serialization API.
+
+
+win32_service
+----------------
+Summary:
+ A command-line client to manage and display services on a Microsoft Windows machine
+ with WS-Management support (Vista).
+Options:
+ -u, --endpoint=<uri> Endpoint in form of a URL
+ -l, --list-all List all services
+ -d, --desc Show service description
+ -s, --stop Stop service
+ -S, --start Start service
+ -X, --status Get service status
+ -D, --dump Dump request
+
+ For actions related to one service, add the name of the service as an argument.
+
+Example:
+
+ ./win32_service -u http://wsman:secret@example.com:8889/wsman -l -X
+ ...
+ ...
+ wmiApSrv
+ State: Stopped
+ WMPNetworkSvc
+ State: Stopped
+ WPCSvc
+ State: Stopped
+ WPDBusEnum
+ State: Running
+ wscsvc
+ State: Running
+ WSearch
+ State: Running
+ wuauserv
+ State: Running
+ wudfsvc
+ State: Stopped
+ ...
+ ...
+
+
+ ./win32_service -u http://wsman:secret@example.com:8889/wsman -d wudfsvc
+
+ wudfsvc
+ State: Stopped
+ Description: Manages user-mode driver host processes
+
+
+
+
+