5
votes
3answers
432 views

<script> tag must include separate </script> tag?

Excuse the poor title for my question, I'm not sure how to ask this. I noticed today while doing some testing that the way I close my <script> tag either makes or breaks my page. For example, ...
3
votes
11answers
167 views

simple jquery code. I don't know what I'm doing wrong

Ok. First let me say that I just started learning jQuery and I've taken various challenges upon myself so I can learn faster. Today, I have a very novice question, so apologies if the answer to this ...
1
vote
1answer
156 views

Using WMI to get printer logs

I'm trying to use WMI to get printer system logs from several servers. A week ago I made the following code which for some reason only works sometimes: wmic /node:<servername> NTEvent WHERE ...
1
vote
3answers
565 views

How do you send in multiple commands to Sql PowerShell from the Windows Command Line?

Not sure if this belongs on serverfault or not... I am following the instructions on this site for adding registered servers to sql studio management studio via powershell. It works great one at a ...
0
votes
4answers
131 views

Batch (Windows) execute script wait for request and input the answer

the problem: I want to create a batchfile that executes other scripts. Then only problem is, you can not give the necessary input by parameters. The scripts ask for some data along the way. Is there ...
0
votes
1answer
1k views

vbscript text file search a line with multiple strings

Need small modification in the below vbscript... Const ForReading = 1 Dim strSearchFor, set1, set2 strSearchFor = "10/17/2012" set1= app1 set2 =app2 Set objFSO = ...