Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ComputersUnlimited

    Migrating to Exchange 2019

    I migrated a server from Exchange 2010 to Exchange 2019 this weekend. I currently have two issues I need assistance with. [ol 1] This is the first Exchange 2019 server that I have worked on and with the SSL importing process being vastly different then previous versions I need a guide to make...
  2. ComputersUnlimited

    Waiting for open windows to close

    I have written a powershell script that executes CCleaner to clean the system drive of garbage files. As you most likely know for third party apps like CCleaner to clean internet cache, history etc for web-browsers the browsers need to be closed. So the first line in the script is (get-process...
  3. ComputersUnlimited

    Watching blu-ray DVDs on Windows 10

    Has anybody gotten VLC to play Blu-Ray disks on Windows 10? I have followed the instructions located here, but still cannot play the blu-ray I want to play. Everything else I have found is downloading and installing other blu-ray players, which I'd rather not do. VLC does have aacs codecs for...
  4. ComputersUnlimited

    Debugging program without VB

    The program that I have been working on is to the point where I am able to start running and testing it on other computers. It runs as intended on my notebook and desktop, however when I run it on a couple of other computers I get unhandled exception errors. Is there a way to at least know at...
  5. ComputersUnlimited

    Execute external EXE with Admin rights

    The program I am working on executes another program that requires admin rights. In attempts to get this working I have the following code Dim MyProcess As System.Diagnostics.Process = Nothing Dim MyProcessStartInfo As System.Diagnostics.ProcessStartInfo = New...
  6. ComputersUnlimited

    Pause console application

    Yes that is what I want. Is it possible to display the seconds remaining before the window closes on its own? What do you mean by Ensure we don't block? Do you mean using With blocks -- for example?
  7. ComputersUnlimited

    Pause console application

    I need to pause a console application for x seconds, but I would also like a or press any key to continue option. I know about Threading.Thread.Sleep() which will pause the application for x milliseconds and console.readkey() which waits for user input, however can the two be combined in one...
  8. ComputersUnlimited

    Determine if System drive is HDD or SSD

    Thank you, this code put me on the right path. However I have only tested it on one system but it appears to be what I need.
  9. ComputersUnlimited

    Determine if System drive is HDD or SSD

    Everything I have found says the opposite. Either way I need the partition that Windows is installed on.
  10. ComputersUnlimited

    Determine if System drive is HDD or SSD

    So your actual question is "How do I determine which is the boot/system drive, and how do I tell if it an SSD or not", yes?" Correct I will need the system partition.
  11. ComputersUnlimited

    Determine if System drive is HDD or SSD

    The program I am working on will be run on multiple systems, so the system drive, or boot drive, will change. Where can I find more information on the System Management package, Management Scope and Management Object Searcher. Nothing I have found provides the different options or properties...
  12. ComputersUnlimited

    Determine if System drive is HDD or SSD

    After not being able to work on this for a few days due to work I now have a few days to work on it. After adding the necessary package, it now works. However this provides the they type for each drive attached to the system, including USB drives. I need the drive type for a specific drive, the...
  13. ComputersUnlimited

    Determine if System drive is HDD or SSD

    I copied your code into a new project and have received some errors Type 'ManagementScope' is not defined Type 'ManagementObjectSearcher' is not defined Type 'ManagementObject' is not defined Namespace or type specified in the Imports 'System.Management' doesn't contain any public member or...
  14. ComputersUnlimited

    Determine if System drive is HDD or SSD

    I am writing a program in VB 2019 where I need to know whether the system drive is a HDD or SSD. Is this possible and if so how? Thank You
  15. ComputersUnlimited

    VB 2019 and Access 2019 64 bit

    Right clicking on Project and selecting Properties there is no Build but under compile there is a Platform target which was set to x64, there is also the same option under debug which was also already set to x64.
  16. ComputersUnlimited

    VB 2019 and Access 2019 64 bit

    I have a program that I have written that I now want to add access to an Access 2019 Database. However I get an error that "The microsoft.ace.oledb.12.0 provider is not registered on the local machine". I am open to using something else. MS SQL Server is an option but I do not want to install...
  17. ComputersUnlimited

    Recent Fie List

    I got it working using code from another source.
  18. ComputersUnlimited

    Recent Fie List

    I am working on a program where I want to add a recent file list, much like MS Office. I have added a menustrip with a ToolStripMenuItem. I have been able to add a list of recent files to the ToolStripMenuItem. However I am not able to open recent files when clicking on them in the...
  19. ComputersUnlimited

    Prevent duplicates in XML file

    Thank you for the reply. I apologize I forgot to clarify that I am using xelement to read and write to the XML.

Part and Inventory Search

Back
Top