Getting The Disk Space Of A Remote Computer?
Feb 11, 2012was thinking will it be possible to get a disk space of a remote and local machine using asp.net 2008
View 6 Replieswas thinking will it be possible to get a disk space of a remote and local machine using asp.net 2008
View 6 RepliesI was thinking will it be possible to get a disk space of a remote and local machine using asp.net 2008?
View 2 RepliesNeed to write a utility (either VB or perhaps a script?) to do the following:-to get the free disk space of all servers and append the results to a file
I have about 20 servers and it needs to check free space of chosen drives i.e. C, D and then append results to bottom of a spreadsheet or document showing computer (server) name, drive letter and the amount of free space
Tried it with WMI and works fine on local computer but doesn't seem to work across the network
I'm trying to develop a windows application where i can get connected to remote server and look for process state going in remote server.We have many remote servers where automatic installation of software going on. We have an xml file(installstatus.xml) where it tells us at what stage the installation is (Example : Inprogress , Completed, Failed.)
So our aim is to develop a windows application where i can get connected to that servers and look for their installation status(may be we can use installstatus.xml to look for installation status). Every time i connect to a server, the server information should get stored in XML file(i want to create a xml file where all the servers list i connect to should get stored)
The UI at left side should will have list of servers i can connect to. When i get connected to server, at right side of UI, i want to display the status of installation (In progress, failed , completed).
Im creating a program that auto starts with my computer. On this program im adding a section that states how much space i have left on the C: drive. So far i have 2 labels and a progress bar. in the top level i have the name of what the progress bar is, and the second below the progress bar states the amount such as this "430GB/740GB". i also want the progress bar to state the percent of how full this drive is. how can i do the following:
Determine the amount of drive space on C:
Determine the amount of free space on C:
Make free space a percent of all space. such as "30% full"
I'm developing a system info application. I've Searched all over internet and only found code for Free Hard Disk space, but not Total hard disk space.
The code should calculate the Total space of all the drives.
How can I tell what the size of my program is and how much disk space is needed to install. When I publish the program and install it on another machine it will show up in the control panel but does not show what size the program is?Also when I publish updates with it says something like installing 10mb. Is this an additional 10 mb everytime, I guess not, but can someone explain what it all means?
View 10 Replieshow to write a null bytes onto unused hard disk spaces? I understand that files deleted are still existed on hard disk, I am thinking of may be if I write the null bytes to every single unused bytes so that the unused hard disk space would be become all null bytes, and unused space would no longer contain of those deleted files.
View 9 Replies[code].....
View 10 RepliesI need to copy a file from a local computer to a remote computer on the network, if i try to use File.Copy without logon i get the following error:"Logon failure: unknown user name or bad password."How do I provide user name and password for file copy?
View 2 RepliesI tried to get os version of remote computer using ip address with WMI ,It shows "RPC server unavailable" error.If anybody have solution for getting remote system information without WMI in vbnet,
View 1 Repliesi would like to know how locate the hard disk in a computer. For exemple I have 2 hard disk : C: and E: I would like to locate them and list them in a textbox for exemple.
View 11 RepliesI ve a file in my computer.......
i want to knw the locetion of my file in the disk drive.....
I want to find the computer which are connected with my computer via lan connection using vb.net code. actually a have a mini project in network connection setting.
View 1 RepliesWe have an VB.NET VS 2005 application that goes out and connects to remote computers on the network to gather information about the running services, processes, etc.
However, not all of the computers and servers are Windows boxes, and this is causing us some grief.
Is there a way in VB .NET to determine if a computer is running a Windows OS before trying to make a connection to it?
I'm working on a program that lists all of the files on all of the drives on my computerI'd comments. To use the program Start a new Windows Forms application and replace the code on Form1 with the code listed here.
Imports System.IO
Imports System.ComponentModel
Imports System.Globalization
[code].....
I have a VB.Net application that I wrote and want to run it from a remote computer. It runs fine on both computers but not visible on the remote's screen. The program is in the task bar and can be run or closed remotely. Just can't see the GUI
View 11 Replies2 remote computer by using vb.netcan u tell me some that relate with this ?
View 9 RepliesWhat is the best way to GAC dll on remote computer with Impersonation to an admin account?
View 1 RepliesI am wondering how to copy a file from one remote computer to another remote computer. I assume that I need to supply credentials for the connection, however I can't find anything about how to do that.
I can copy files from one place to another on my local box -I just don't have a clue about the remote stuff.
Is it possible to freeze a remote computer? thru the ip address.
freeze computer meaning temporarily disable the mouse and keyboard of that remote computer
can anybody told me how to lock remote computer using Vb.Net2005
View 3 RepliesI know I can sniff my local network but Is it possible to sniff to remote computer ip from my machine and watch the data its receiving ?
the reason I'm asking this question is because someone successfully upload file to our website server and tried to hack it.
the only way I can think of is that someone sniffing our ftp port and grabs the ftp password when I'm deploying our website to the server.
I can make users to my own computer.....but i don't know how can i do this to a remote computer same way Here is my code:
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Try
Dim proc As New Process
proc.StartInfo.FileName = "net.exe"
[code]....
1.A User is created in users account(control-panel>users account).......but i want to create only the users account in incoming connection(vpn incoming connection)
2.I want to do it in a remote pc>>for example a pc ,which ip is 113.120.34.54,user: administrator,password: 12345
can i do it same way that i followed to create user in my local PC?
I'm using asmx web service to lock a folder on remote computer! When I run web service on local machine everything working fine, but when I run it on remote computer nothing happen, folder on remote computer stay unlock! I supose that I need to set security permission for this web service on remote computer, but i don't know where! So, what I need to enable executing this service on remote computer?
View 5 RepliesI am making a client/server project where the server can send a String variable to client but for now i'm starting with a simpler code. I was able to code a bit but now i'm having a problem with this UnauthorizedAccessException. It seems that I am not authenticated but i was able to put the admin username and its password. This is my problem.. Here's my code...
[Code]...
I get all Computers name from ldap and I wish to search a file at remote machine and copy it at any desitination. so I have following question1.How can we connect remote machine if they have user name and password?
View 1 RepliesI'm trying to copy a file to a remote computer using the IO.File.Copy method. When I attempt to copy the file, the method throws an UnauthorizedAccessException exception, which is understandable because I am not able to supply logon credentials. My question is: I have the logon credentials (Computer name, username, password) so how can I copy the file to the remote system without resorting to an overkill API call (namely WNetUseConnection)?
View 7 RepliesI am trying to set up an "AT" job to export some registry keys on a remote computer, the problem is that DOS command requires a time to run. I want to get the system time of the remote computer so i can schedule it to run 1 minute from the time i send the command.
Is there any way to get the system time of a remote computer with VB.Net code?
Can you use System.Management to get CPU and memory information from a remote computer?
View 4 Replies