All Questions
6 questions
2
votes
1
answer
997
views
Running remote commands on Windows 10
Recently i was trying to research deeper into running remote commands from windows to windows. It can be easy with ssh, ftp - but I wanted it to run the commands without knowing the password either ...
0
votes
1
answer
1k
views
Remove TerminalServices SSLCertificateSHA1Hash
I would like to remove RDP certificate that I previously set through the command
wmic /namespace:\\root\cimv2\TerminalServices PATH Win32_TSGeneralSetting Set SSLCertificateSHA1Hash=$...
3
votes
1
answer
3k
views
Subsequent calls to WMIC return a localdatetime with a deviating timezone
The problem
In our company environment we use several batch files which use WMIC to retrieve the current time. Usually to print it to log files, but also to include the timestamp in a file name.
...
1
vote
1
answer
1k
views
WMIC on multiple remote PC's failing with: Failed to open Node-list file
wmic /node:@PC-list.txt os get csname,installdate
Command above yields this error:
Failed to open Node-list file (Please check the filename).
3
votes
0
answers
954
views
Windows netstat vs WMIC bytes sent/received difference
I'm trying to understand the difference between the bytes sent/received values returned by both netstat and wmic on Windows. I'm having a hard time finding an explanation for the significant variation....
0
votes
1
answer
4k
views
wait until completing WMIC process call create cmd.exe to run bat
I'm running a bat file located on a remote server.
The command is: wmic /node:[server name] process call create "cmd.exe /c [bat file location].
I would like the command to wait until the batch file ...