I would have not have gone with "intellectually weaker individuals" but just said not very tech savvy individuals and I suspect you don't have much in the way of life experiences there. I consider myself rather technically inclined as have worked in IT for some 30 years so I understand how annoying it can be to deal with someone who is not very tech savvy but... I have meet people who were brain surgeons, legal scholars, and one noble prize winner who were all fairly ignorant about technology and clueless about their phones and computers. Yet I would say was the one who was the "intellectually weaker individual".
I think it’s because the technology(apps, phones, tech as such) became so easy to use even for intellectually weaker individuals(no offense), which do not understand consequences of such behavior, because they do not understand the complexity behind.
Question
JK1150
I want to make a VB program to be a front end to the shutdown command. Basically, I want to run the following command:
shutdown /s /m \\Lab-1 /t 600 /f
I was able to do this with the following code:
Dim WshShell = CreateObject("WScript.Shell")
WshShell.Exec("shutdownm \\Lab-1 /t 600 /f")
The only thing is that:
A) This opens a command window, which I don't want the end user to see.
B) I want to know how to receive the result of this command, so I know if it was successful or if it failed.
Link to comment
https://www.neowin.net/forum/topic/545941-vbnet-remote-shutdown/Share on other sites
7 answers to this question
Recommended Posts