Are there any VBScript libraries? [closed] - vbscript

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Are there any open source free VBScript libraries? I am doing a lot of windows administration and always find myself writing error prone code. Any help here?

You really should move to powershell.
I haven't heard of a sysadmin working in vbscript in quite a long time.
update
There used to be several sites that hosted script libraries, like win32scripting, but they've been rapidly disappearing due to powershell.
You might go check out The Scripting Guy. They have a section just for VBScript in their forums that may be of help.

Even 5 years after the post above was written it is still short sighted and doesn't answer the question.
Admins need to work in whatever language is available and suitable -- some of us with LARGE (1000s) server or client estates still have quite a bit of Win2003, Win2000, and even a few NT4 servers.
I dislike VBScript somewhat but write using it, since it is the only language besides CMD.exe batch that is ubiquitously available on all Microsoft systems from NT4 on forward.
Even our Win2003 servers don't typically have PowerShell.
Libraries:
http://sourceforge.net/projects/vbslib/
http://www.microsoft.com/en-us/download/details.aspx?id=12028
https://code.google.com/p/vbslib/
http://www.robvanderwoude.com/vbstech.php
http://www.activexperts.com/admin/scripts/vbscript/

Related

Learning scripting/programming (beginning) [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
What I am asking can be a bit silly and weird by anyway, I decided to ask you.
I am working as network security administrator and have knowledge and experience on cyber security as well. 2 month ago I Started my master degree on Cyber Security and now really want to continue my career on Cyber. Along with network and cyber skills I though having some programming languages in pocket will really benefit me. Shell scripting and Python are the only ones which really catch my interest.
I started with bash scripting and just wrote couple of little scripts. I wonder do you know any source which can I use for exercising. I am usually used to learn when I am actually searching and doing something. Therefore if for instance there is any page where I can find tasks for bash scripts with what I can practice and try do find solution, myself.
Thanks in advance!
You can direct yourself to :
https://cmdchallenge.com/
https://www.codewars.com/
Both sites are awesome and contain many challenges that will really help you to learn how to code and script.

How do I start with writing Windows minifilter drivers ? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I want to use windows miniFilter in my project.
I have seen the Microsoft documentation, but it seemed very hard to understand.
I have also read the GitHub examples for miniFilters, but they don't provide explanation for everything, as I want to understand what I write and not just copy and paste. Is there any beginner friendly site that can help me learn more ?
There are not a lot of great resources for getting started on this - no real tutorials or anything. The best sources are the Windows driver samples. Start with a simple one like filesys\miniFilter\nullFilter and then move up to filesys\miniFilter\passThrough to get you started. OSROnline is also a really great resource. And (shameless plug here) I have written a short, 4-part blog post on writing a register filter driver that starts pretty basic.

Debug a ruby project (to become familiar with the code flow) [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Can someone suggest a IDE for Ruby which will make it easier to understand the code flow of the project. I am looking for something similar to intellij remote debugger for JAVA. The debugger should transfer the complete control of the code, so that stepping into and stepping out of the code becomes easier.
Rubymine is a very good IDE by JetBrains, so you should be on famillier grounds if you've worked IntelliJ. Among other things, it has a built in debugger with the functionalities you described.
One major caveat though - it's not free, and there's no community edition like there is for IntelliJ.
I use cloud9 IDE for Ruby programming and it does everything and more. You get a full Linux environment which includes a terminal, file-tree structure navigation and a code-editor. Best of all it's free to use but there are upgrade options if you need more muscle.
You can even collaborate on it (which you may have to pay for, I'm not sure).

How to generate documentation for Clojure code on Windows? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I can't seem to find a way to generate documentation for Clojure code on Windows.
Marginalia seems to be broken on all platforms since 1.7 (see here:
https://github.com/gdeer81/marginalia/issues/158).
Codox has an issue
open on this topic (https://github.com/weavejester/codox/issues/110).
The Autodoc plugin for Lein 2 seems to be broken as well (not
enough reputation to post more than two links, but there's an issue
open on this over at GitHub).
Has anyone succeeded in running any of these three on Windows? Should I try something else?
Note:
I do not have a choice here, it must run on Windows.
As I'm building a case for clojure in the company, it must play well with leiningen, which is used to build and test our code.
Another option is autodoc - seems to still be active, but from the README it seems there are no promises it works on windows - still you could give it a try.
I think codox might still be your best bet. It's pretty popular and well maintained (there's only 4 open bugs right now and they're pretty newish - one of which is the one you referenced in your question). So maybe give it some time.
Finally, I know this is probably obvious and not ideal, but you could at least do one-off generations of documentation on a *nix system for the time being.

tipc protocol in windows [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 11 months ago.
Improve this question
Any idea for TIPC protocol on Windows systems or any similar protocol which is available on windows ?
Thanks
Arpit
The Wikipedia basically says it's general-purpose communication library.
If you're designing an HPC cluster, take a look at "Microsoft High Performance Computing" in MSDN: http://msdn.microsoft.com/en-us/library/aa496121.aspx bot keep in mind that API only exists on some editions of their server OSes.
I think you'll only get better answer when you'll describe what kind of tasks are you going to accomplish.
P.S. I don't actually get the point of TIPC, even after reading the programmer's guide.
It seems using the API is not easier then using sockets.
But when you're using sockets, at least you've got tons of good books, online manuals, and easy to use debugging and diagnostic tools.

Resources