Jump to content

Search the Community

Showing results for tags 'ssd'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Should the ability to check if a drive is an SSD even work in Windows XP? (And yes, I know it's a can of worms to look into this on XP, trust me I am only doing what I am asked to do by someone else). E.g., If I do the following: #cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.14.0 Script Function: Checks if a drive letter is an SSD drive #ce ---------------------------------------------------------------------------- #RequireAdmin #include <AutoItConstants.au3> $s_chkDrv = "E:" $s_isDrive = DriveGetType($s_chkDrv, $DT_DRIVETYPE) $s_isSSD = DriveGetType($s_chkDrv, $DT_SSDSTATUS) $s_whatBus = DriveGetType($s_chkDrv, $DT_BUSTYPE) ConsoleWrite("$s_isDrive=" & $s_isDrive & @CRLF & "$s_isSSD=" & $s_isSSD & @CRLF & "$s_whatBus=" & $s_whatBus & @CRLF) My results are as follows (and I know for certain the drive is an SSD): --> Press Ctrl+Alt+Break to Restart or Ctrl+Break to Stop $s_isDrive=Fixed $s_isSSD= $s_whatBus=SCSI +>12:44:17 AutoIt3.exe ended.rc:0 +>12:44:17 AutoIt3Wrapper Finished. >Exit code: 0 Time: 0.4762
×
×
  • Create New...