How to kill process on Remote Desktop Connection? [closed] - remote-desktop

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I am working remotely on a Windows Server via Remote Desktop Connection and some process has hung the server. I looked up how to bring up the Task Manager remote (equivalent of locally doing CTRL+ALT+DEL) and I found CTRL+ALT+END and it doesn't seem to work.
I tried logging off and logging back on and the system is still up (tried earlier seeing the properties of My Comptuer, FYI).
Does anyone know how I can escape this 'hindrance' and star fresh?!?

Start the task manager with e.g right-clicking in the bottom right or just start it manually with taskmgr in "execute"

Related

How to connect to my FTP server using my host IP address [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 days ago.
Improve this question
I would like to connect to my FTP server in order to upload a local file using the host IP address.
I have created two Batch Files.
ScriptCAAR.bat:
open 41.110.185.222
USERNAME (My Username)
Password (My Password)
cd CAAR
binary
put E:\DBB\*.rar
bye
Send.bat:
ftp -i -s:scriptCAAR.bat
Accessing the server reported a 'Connection time out'. Is there a solution for this, please?

Export SQL result to Excel [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Hello how export SQL result to excel?..
i try CTRL+SHIFT+C and paste?..but something more specific?
Since you have edited your post and tagged it as SQL Server ... In your SSMS (SQL Server Management Studio) .. in the result window .. You can select all result data (CRTL + A will do) and right click .. you can now save it as *.csv format
You can use SQL Yog Software for that it is quite easy to export using sql yog...just install it and connect localhost and then you can export to csv,excel and in html also.

execute permission was denied on the object 'sp_enable_sql_debug' database master [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I am trying to debug my stored procedure, but it's saying the permission error.
execute permission was denied on the object 'sp_enable_sql_debug' database master Microsoft SQL Server, Error:300
This procedure normally requires the sysadmin permissions to run, because it exposes system processes to the account. The easiest way to solve this (although not the ideal one) is to get sysadmin privileges on that environment.

Is there any way to find the list of Oracle DBs installed on a UNIX server? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I know there are Oracle DBs installed on my UNIX server. Is there any way to get those DB names? I'm using Sun OS.
You can also try ps -ef | grep -i pmon. Each running pmon process would be for one DB and base on the pmon name your database would be ora_pmon_<db sid>. There could be additional DBs that are not running currently but this would give you the active running database on a Sun box. Also check the /var/opt/oracle/oratab as mention above for the listing of the DBs if the DB admin is keeping the DB properly listed in oratab.
cat /etc/oratab|grep -v "^#"|grep -v "N$"|cut -f1 -d: -s

Windows 2008 server task scheduler does not run .bat batch job [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have a batch file on a Windows 2008 server that, when invoked from command line works fine. However, when I set a scheduled task to run this job, it does not work properly.
The task scheduler does show that that the task is getting run at regular intervals, it does not show any error. But, the batch file does not process what it is supposed to process.
Any ideas on how to fix this issue is most welcome
Windows Server 2008 will not run any batch file with quotation marks " inside the batch file.
See http://technet.microsoft.com/en-us/library/dd851678.aspx
I had a similar problem, my .bat file wouldn't correctly execute when I had the full file path in the "Program/script" field.
"D:\path\to\file\somebat.bat" didn't execute. (with quotes)
When I put D:\path\to\file\ (without quotes) in the Start in (optional): field and somebat.bat in Program/script: field somebat.bat executed correctly.
Go figure... not exactly sure why having "D:\path\to\file\somebat.bat" in the Program/script: won't work.
Maybe someone could shed some light on that?
In my case, I had 'Run whether user is logged on or not'. When I changed to 'Run only when user is logged on' it worked OK.
Make sure the task is running under an account with the necessary privileges. When you run a batch script from the command-line directly, it is running under your user account, which may have different permissions than the default account used for scheduled tasks.

Resources