Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
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.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Improve this question
I have dll that using in one my application. This dll connect to one remote server and post and get some data.
When I run this dll in my application, How I can find IP address of this remote server?
Dll written by C++.
Possible find that?
I am using Win7.
Regards,
You can check the endpoints with netstat: netstat -an -p tcp
It comes with Windows.
Related
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 6 years ago.
Improve this question
I have VS project(service), and on my machine I install it using installutil.exe. Now I need to install on a random windows machine. I'm not familiar with Windows, what dependencies should this machine meet?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
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.
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.
Improve this question
I am working with local user accounts on a server and was wonder if there was a way possible to set the user's Remote Desktop Service start up environment when the account get's created.
Also if it was possible to set the users sessions end disconnect session and idle session limit. I am currently using System.DirectoryServices and System.DirectoryServices.AccountManagement if there is way that would be great.
you need to have a look at this interface:
http://msdn.microsoft.com/en-us/library/windows/desktop/dd919965(v=vs.85).aspx
the answer in this post could help you on Remote Desktop startup path as well.
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 wanted to know if windows explorer is created like in C# using ListView and other components, is it like that ?
Use dependency walker to open explorer.exe and see if it has dependencies on any .NET assembly, and you will find that it does not.
Here's the output from my machine (Windows 7 x64):
As you can see there is no dependency to mscoree.dll, which is a dead giveaway that explorer.exe has nothing to do with .NET.
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 11 years ago.
Improve this question
I already have code for a ftp server. I am following this code. Now my requirement is to create a ftps server. But my problem is I dont know anything about it. I googled for it. But did not find any useful help. Any suggestion or book name will be greatly appreciated.
Thanks
The wikipedia page on FTPS is useful as an overview. I believe there are a few commercial libraries available for implementing an FTP/SSL server in C#, although I'm not familiar with them. Examples:
http://www.g6ftpserver.com/
http://www.eldos.com/sbb/net-ftps.php
I don't know of any open-source alternatives. You might try looking at open-source implementations in other languages. Examples:
FileZilla Server - C++
Apache FtpServer - Java (has support for TLS/SSL)
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 8 years ago.
Improve this question
i have 200 terminals (Windows-mobile) that connect to the server Through WIFI
how i can transfer any file to all of them ?
is there any tool or can i get any C# sample code for this ?
thanks in advance
You should write some sw on the mobiles to sink the file instead of pushing on them. So each user can ask the server for transfer the file. If the file you need to transfer is a deploy of an application, you can even consider some strategy of auto upgrade as described here: http://msdn.microsoft.com/en-us/library/aa446487.aspx
You could create a log-on script assuming you have Active Directory and a friendly system administrator.
http://www.rlmueller.net/LogonScriptFAQ.htm
Microsoft have a non-free tool called System Center Configuration Manager that will do what you want. You need to install the client app on the phones first, then they poll the server for updates.
This is likely to be massive overkill for what you want but it's hard to be sure from the question.