How do I know if the remote machines passwords have been changed using chwinpw.exe?
Submitted by Svard75 on Thu, 03/04/2014 - 14:34
Hi All,
I've been using the chwinpw.exe tool for a brief amount of time and wanted to ask everyone with experience here, how do I pipe the results of each computer to a text log file. What I have done is created a CMD with the correct parameters and have a text file containing all computers line by line. When I execute I have the following added to the end of the command line ">> log.txt" Within the log file I only see "Reading machine list from nodes.txt ...".
Is there a switch I can add that would output each nodes success or failure and the result code? I noticed on the webpage result codes are indicated but how do I access them?
Thanks,
Svard75
Release news
- 2023-05-23 Copssh server 7.13.2
- 2023-05-23 Copssh server 8.1.2
- 2023-03-29 Rsync Client Helper GUI 1.0.3.7
- 2023-03-29 Nagwin 5.1.2
- 2023-03-29 cwRsync server 6.7.2
Moved your post to an other
Moved your post to an other forum.
You need to run chwinpw for each user to be able to pick up individual status info. You can try code below for each user in your cmd file:
(call chwinpw ..... user 1 ....) && (echo success) || (echo error!)
....
(call chwinpw ..... user n ....) && (echo success) || (echo error!)