|
Hi, Need to create a batch file for restarting some services remotely and restarting iis remotely in Admin mode.
Help would be appreciated
Thanks krish
Started by krish on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
+1 for SC
To elevate past UAC (if that....
There's also iisrest which is a command line utility specifically for IIS .
Technet on net commands.
MS KB link for SC.
Why not just use SC? http://ss64.com/nt/sc.html
SC and net start net stop are the way to go .
|
|
I wand to find the NVIDIA graphics drivers version on all Windows XP clients remotely.
Answer Snippets (Read the full thread at superuser):
Assuming the key HKEY_LOCAL_MACHINE\SOFTWARE\NVIDIA.
This command remotely on the computers you want.
|
|
Is it possible to run a windows xp bat script remotely from a ubuntu machine via command line?
Started by Chiwai Chan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It is trivial to set up such a server....
You would probably use something like remote desktop, and if you did it that way, it would work, but your question isn't very specific
This is possible if you have an ssh server running on the WinXP machine.
|
Ask your Facebook Friends
|
How do you allow hosts X to connect remotely to MySQL and have full access?
Started by Chris_45 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Regarding bind-address in might be set to....
In case you have skip-networking you obviously want to remove it .
In your MySQL configuration, /etc/mysql/my.cnf or similar, you most likely have one or two of these settings: skip-networking and bind-address .
|
|
What is the best way remotely to find Conficker infected PCs in company/ISP networks?
Started by Kz. on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
You can download the MSRT from either of the following... .
It is a stand-alone binary that is useful in the removal of prevalent malicious software, and it can help remove the Win32/Conficker malware family .
Run Microsoft's Malicious Software Removal tool.
|
|
I have a MS SQL Query that is pulling data via from a remote server. The data that I'm pulling down needs to be filtered by a date that is determined at run time.. When I run the query like this:
SELECT * FROM SERVER.Database.dbo.RemoteView WHERE EntryDate...
Started by Michael Bray on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Can't you just send a query like this, or does the clr function have to actually be called inside the select... .
You need to properly decorate your CLR function to mark it as Deterministic, Precise and Data Access/System Data Access as DataAccessKind.None .
|
|
Can I run mysql delete row remotely from other machine? Something alike mysqldump which run locally dumping data on other remote machine.
Started by conandor on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
(You can enable this, but it's recommended instead to make another admin... .
If you check the mysqldump documentation used to doing so, as root by default can't connect remotely.
And password configured that will allow you to remotely connect.
|
|
Hi all,
I have a fully customized msgina.dll in module i need to remotely debug it? Ho will i achieve this
Abdul Khaliq
Started by Abdul Khaliq on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For remote GINA debugging you can use the instructions on the following site:
http://pluralsight.com/wiki/default.aspx/Keith/GinaDebugging.html
The site was down when I visited it so take a look at the Google Cache version
You can also do it using....
|
|
I know it is possible to remotely debug code using gdb's server mode and I know it is possible to debug code that has been cross-compiled for another architecture, but is it possible to go a step further and remotely debug Linux applications from OS X...
Started by jkp on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I don't know about OS X..
It is possible from Windows with Cygwin.
This is not at all uncommon; there should be plenty of GDB documentation to cover this .
Certainly, but you need a cross-compiled GDB, compiled for OSX-host and Linux-target .
|
|
I know there's some JAVA_OPTS to set to remotely debug a Java program.
What are them and what does they mean ?
Started by paulgreg on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Basically run it with:
-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=1044
Here's some more gory details on what the options are:
http://java.sun.com/javase/6/docs/technotes... .
I have this article bookmarked on setting this up with Eclipse .
|