Makaveli84 wrote
I was glad to find that vbscript still runs on Windows 10!
vbscript. I did some vbscript programming long time ago. I have mixed feelings, hard to express. On one hand, it's a somehow friendly language.
I mean in what language can you write this:
If (i Mod X = 0) Or (i Mod Y = 0) Then
Did you see that? If this or that! And single equal signs! Finally something that makes sense.
Compare that to javascript:
if( i%X == 0 || i%Y == 0) {
On the other hand, I guess there is a reason why we're not all still writing BASIC.
I am happy with my JavaScript. In such cases I'd pop up a console (F12) and do write my little code there. It's very easy to get started on the server side as well, using node.
Anyway, what I wanted to say is welcome here, nice to have you.
BTW I still have a big book from back then, full of examples on how to use Wscript in an "entreprise setting" for doing maintenance (WMI provider) and all kind of similar things. I never read much of it. Do you think anyone would want it?