Adding Call Functions For Defragment Hard Drive And Other .msc Tools For Windows?
Jun 2, 2011
My problem is that I am creating system tools for windows with a good gui and I don't know how to start with it. One of my difficulties is making code for calling any window tools for example, defragment.msc, backup, system restore, registry editor(I knew there's already a thread in here but it is closed).In short, I will create a "Utility tools ALL IN ONE" for my project somewhat like a registry cleaner or advance system optimizer and the likes.
I would like to use the Windows Vista/7 defragmentation feature from my program. I can use a shell command to call defrag.exe, but there's no way to get the status that I know of. I would like to show a percentage and maybe what part of the process it's doing. Then when it's done get the results.
I've been searching for hours tonight searching existing posts, other websites and all i can find are examples of how to capture a image from a webcam.Does anyone have any code that simple talks to the camera device via WIA, and then saves every image found on the device to a hard drive?I found this code below. Credit i cant tell you as i have a bunch of different flavors of code, but this only saves the file as a tmp file, and not the actual image file i expected after selecting?
The drive is connected via USB and the problem I'm having is that, periodically, while my code is executing, the usb drive seems to disconnect and reconnect. (Nothing to do with the program, but the drive itself).I want to find a way to prevent these temporary drive reconnects from interrupting my code. IE, i want to insure that whatever read or write that is requested is actually executed even in the case of a temporary drive interruption.
I have implemented webbrowser control in my windows application. I have some functions inthe class file. i want to use those functions from the webpage which is displayed in my windows app through webbrowser control..For example say... I have an standalone windows software. Which has a webbrowser control in the some form. Now i would like to create a webpage that can be displayed in the webbrowser control in win app which has some buttons and textboxes. When i click on button in the webpage it should get the version number of that software. I have some other functions that are in the class file aswell.. but dont no how to call those functions from that webpage when a button is clicked or something like that.
I'm trying to get hard drive temperature data.I can get the temperature via MSStoragedriver_ATAPISmartData.And, I can get all sorts of drive info (model, serial #, etc. via the Win32PhysicalMediaClass.The trouble is trying to link the two together.I get this temperature info, but I don't know which drive it is.The only identifier I can get from MSStoragedriver_ATAPISmartData is InstanceName.That looks like it has the model number embedded in it, but I can't get model number in Win32 my question is how can I get the temperature data and realte it to a specific drive?
I have a VB.Net 2010 app and need to delete a file from the hard drive when the app opens up (cache file). What command will perform this action? I know the name in advance, so I can format the command right in the app.
I have made this program in which the user selects a number of directories and copies them all to an external drive. is there a way to detect when the user does something that involves writing data to the hard drive. When they do, I want my application to detect this and back up that file on the external drive as well so that the back up is always up to date.
How would I disable a device during runtime? I can do it by going to Device Manager and disable it from there, is there anyway I can do it from a program?
How can I get VB.NET to find the folder that begins with "17014 -"? The actual Folder is called "17014 - Mr John Smith", but I want it to search only upto the "-" (hyphen) point.
I will then use this to check if the folder exists or not.
I am looking for a way to retrieve the temperature of hard drives in VB Express 2008. I have found posts at a few different places that accomplish this with the following:
and it works just fine. However, saying that, i need to find a way to loop through ALL the directory's on the "c" drive and not just the main folder. Does anyone have any code that can do that?
I am looking for a way to retrieve the temperature of hard drives in VB Express 2008. I have found posts at a few different places that accomplish this with the following: Public Function GetDriveTemp() As Integer
Try Dim searcher As New ManagementObjectSearcher("rootWMI", "SELECT * FROM MSStorageDriver_ATAPISmartData") For Each queryObj As ManagementObject In searcher.Get() Dim arrVendorSpecific As Byte() = queryObj("VendorSpecific") GetDriveTemp = arrVendorSpecific(115 Next
[Code]...
This function retrieves the temperature for all the hard drives in my system (excluding USB), two internal and one external esata drive. There are two problems, tough: 1. I want to know the drive letter and maybe the drive label that the retrieved temperature corresponds to. I'm assuming that the * in the query, "SELECT * FROM MSStorageDriver_ATAPISmartData", can be changed to specify a particular drive rather than all drives, but I don't know how retrieve a list of all the drives in my system or how to write the query based on those results.
2. If I call the funciton from a some click event like for a label or button, there are no problems and the return value seems valid. But when I call the function from a Timer_Tick event, the mouse cursor is the busy cursor as long as the mouse is within the form, the form doesn't receive any click events, and it cannot be closed.
I know what I'm trying to do can be done because there are a few utilities that provide this information.
how to retrieve the temperature of a hard drive in Visual Basic 2005? The temperature can be retrieved from the S.M.A.R.T information, but I don't know how to do that in Visual Basic 2005. There probably is a way, but unfortunately, I don't know.
I am using this code to get files, but I can not get it to search for all files on C: drive.how can I get it to show all files Like *.pdf of the drive in the list box
Imports System.IO Imports System Imports System.Drawing
I've been checking endlessly on MSDN and the net in general trying to find out how to get the computer's "C:" drive serial number and also the GUID.Everything I've found seems to pointing to the System.Management library using the ManagementObject, but "ManagementObject" doesn't appear to be recognized by the IDE?!I've imported: System.Management, System.Management.Instrumentation, Microsoft.Win32 and System.IO, but ManagementObject is still coming up as an error.I'm aware I can simply access the registry to get the GUID, but can anyone simply give me the code to access these 2 elements please.
I am trying to write an application that accesses the SMART data from a hard disk, so I can show all the values and whether anything is over the threshold or failing etc Have spent many hours trawling the web without any success.
I am doing a little project to get better at my Vb while I am outside of class and I am making a launcher that lanuches my games from my external harddrive. Now I want it to auto find what the Harddrive is mounted to Like in my Code below this is what I have so far:
If CheckBox1.Checked = True Then Process.Start("u:\Games\Generals\generals.exe") ElseIf CheckBox3.Checked = True Then Process.Start("u:\Games\Counter-Strike Source\Launcher.exe") ElseIf CheckBox5.Checked = True Then [Code] .....
But Instead of having to go into ym actual Code and Changing it from U: to what ever my drive has mounted to on another computer and have it automaticly find what its mounted to and update my code accordingly.
Is it possible to copy files from my resources to the hard drive? In other words, I have a few files located in My.Resources & I would like to copy them as needed to the users HD.
Im trying to create a program to gather information about users pcs. So far I have been able to gather thigns like the os, processor, hard drive size and graphics information and I was just wondering how I would be able to collect the name of the motherboard they are using (or model) and the make of the hard drives in their machines.
I would like to list all files of a partition such as "C: " and put them on a listbox , I tried but it didn't work ... i said that maybe it was because of the privileges , here's a snapshot containing the code, the form and the error: [URL]