1
vote
1answer
298 views

script to check if windows service is running and if it aint to start that service. Windows 2000

I've been looking everywhere and only found posts that use the SC command. Unfortunatly the SC command isn't available on W2000 yet, so i cannot use it. I'm trying to check if a service is running or ...
6
votes
2answers
221 views

Mono on Windows 2000 SP4 [closed]

On good old Win2k, the highest supported version of the .NET Framework is 2.0. If one would like to run modern C# applications (for example, which use LINQ), the Mono Framework may be the solution. ...
0
votes
1answer
73 views

How to get clientsitename and object status in windows 2000

As we know it's easy to get client site name in windows 2003 via WMI_NTdomain.clientsitename, object status by WMI_NTdomain.status , but that class doesn't exist in Windows 2000. So can you show me ...
2
votes
1answer
93 views

how to get list of processes that are bind to console window that I'm running in that would work also in windows 2000?

The only thing I found is GetConsoleProcessList. The thing here is that this function doesn't work in Windows 2000. Is there any way to get around this issue, so it would work in all systems since ...
0
votes
1answer
169 views

Using junction.exe in Windows 2000

In Linux I am able to do this: ln -s /tmp/somedir/* /tmp/otherdir/ Which will create links to all of the files within somedir in otherdir. Is there a way to preform a wildcard operation like this ...
0
votes
1answer
231 views

VB6 with Crystal Reports on Windows 2000 Terminal Services

We got an old app written in VB6, which uses Crystal Reports. Is there a tool that would allow us in which permission the application is being denied to create the Crystal Report object? We've ...
0
votes
2answers
2k views

WMI namespace root\cimv2 not available on Win2k?

I'm trying to run the following VBScript code on a Win2k SP4: strComputer = "." Set oWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\" & strComputer & ...