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 was trying to create a CMD Messenger.
I googled for it, and got a few lines of code.
But the problem is that I a unable to find the Messenger services in Windows 8.1 which I need to start in order to get the Messenger.bat file running.
Can anyone suggest, if the Messenger Service is present in Windows 8.1 or not?
And if it is, then how to start it?
Basically, I need to user NET SEND command in CMD. And, I guess, this doesn't works without the Messenger Services.
I need to use NET SEND command in CMD
net send was removed in Windows Vista and later, as was the Messenger Service.
It is replaced by msg, but only professional and business editions of Windows have the ability to send network messages using msg. It is not supported in Windows Home.
Further Reading
An A-Z Index of the Windows CMD command line
msg - Send a pop-up message to a user.
Windows Msg command help and faq
Related
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
I am new to Jquery terminal. Can i use this to connect to remote unix/linux host though web browser? I don't find examples on this do you have any examples? I am also interested even if there something in angular.
Can i use this to connect to remote unix/linux host though web
browser?
NO.
JQuery Terminal Emulator is a plugin for creating command line
interpreters in your applications. It can automatically call JSON-RPC
service when user type commands or you can provide an object with
methods, each method will be invoke on user command. Object can have
nested objects which will create nested interpreter. You can also use
a function in which you can parse user command by your own. It′s ideal
if you want to provide additional functionality for power users. It
can also be used as debuging tool.
http://terminal.jcubic.pl/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I am using a Windows 8.1 machine to remote-access a Windows 7 machine through Remote Desktop Connection. Currently, the only way I find to exit the RDP session is to hover the mouse cursor to the top, wait for the following dropdown bar to appear and click the "close" button.
Is there another way to existing an RDP session while in a RDP session? Say, through command line? Or, keyboard shortcuts? On my local machine, I notice that I can as well kill the mstsc.exe session to exit it.
Start -> Windows Security -> Disconnect
Also, tsdiscon from command prompt or run dialog.
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 8 years ago.
Improve this question
I am looking for an editor which can take a Web URL as the source of the code tree. I work in a restrictive environment where I cannot clone the code base into my desktop. The only way is to use putty and login to the server and browse code using vim. But all the code can be copied into a web directory and is visible at a URL. So my idea is have an ediotr which can accept URL as the source of the code tree and show the files in the editor so that I can browse/edit in my desktop. I am looking for an editor in windows/Linux
Both these commands let you list the content of a remote directory and choose what to edit:
$ vim ftp://[user#]machine/path/ <--- connect via FTP
$ vim scp://[user#]machine/path/ <--- connect via SSH
Use :Rex to go back to the listing after editing.
See :help netrw.
Vim ships with the netrw plugin that allows to access and edit remote files. Just use
:edit http://server/path/to/file
That will fetch the file from the server and edit a temporary copy in your local Vim / GVIM. If you want to push back your changes to the server, you need a bi-directional protocol, such as SSH / SCP:
:edit scp://user#server/path/to/file
For details, see :help netrw.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I have newly installed windows 8.1 OS desktop PC.
In my PC, I can't see the "Remote Desktop" option in "Remote Tab" in the System properties window.
So I cannot connect to remotely my machine from other machine using mstsc command.
I have tried the below steps:
disable fire walls.
Selected "Allow Remote assistance connection to
this computer option in system properties window.
Please help.
Thanks in advance.
well this is what I do. I go to search I type 'remote' and I get the Remote Desktop Connection window. This has not been changed on windows 8.1. http://www.wikihow.com/Use-Remote-Desktop-on-Windows-8. check this link. if this doesn't work try to check if remote desktop has been turned on from 'Windows Features'
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
The single click install applications(.application files) don't seem to be working for me on xp home. I have just put a fresh install of xp home on my dell and I needed some additional drivers(for the nic card etc). I downloaded the necessary drivers from dell's site using my other machine(using windows 7). They came in a ".application" file. I moved this application file via a flash drive to the xp machine and attempted to open it. Windows xp told me that it did not know what program I should use to run this file. Can someone point me in the right direction regarding this problem. Dell didn't allow me to download an ISO instead. Am I doing something wrong here?
Thanks for any help.
-Ray
You need to make sure you have the .Net Framework 2 or above installed. ClickOnce .application files run in .Net on the client machine.
Greg