summaryrefslogtreecommitdiff
path: root/storage/class/disk/README.md
diff options
context:
space:
mode:
authorBarry Golden <[email protected]>2019-09-25 19:35:57 -0700
committerGitHub <[email protected]>2019-09-25 19:35:57 -0700
commitd2a01860208bcce9f4777d54bec3c59c4c02e969 (patch)
treebe2892ff05b3308b559e18474f1b1645582cb379 /storage/class/disk/README.md
parent2e237713e298495b141560a5e7c76d6b1efa0153 (diff)
Diffstat (limited to 'storage/class/disk/README.md')
-rw-r--r--storage/class/disk/README.md21
1 files changed, 8 insertions, 13 deletions
diff --git a/storage/class/disk/README.md b/storage/class/disk/README.md
index 8dd297bd..d1518c0e 100644
--- a/storage/class/disk/README.md
+++ b/storage/class/disk/README.md
@@ -8,17 +8,6 @@ products:
- windows-wdk
---
-
-
-<!---
- name: Disk Class Driver
- platform: WDM
- language: cpp
- category: Storage
- description: A class driver for disk devices.
- samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617979
---->
-
# Disk Class Driver
The disk class driver sample is used for managing disk devices
@@ -32,8 +21,11 @@ You build a driver the same way you build any project or solution in Visual Stud
The default Solution build configuration is Debug and Win32.
1. Open the driver project or solution in Visual Studio (find *samplename*.sln or *samplename*.vcxproj).
+
1. Right-click the solution in the **Solutions Explorer** and select **Configuration Manager**.
+
1. From the **Configuration Manager**, select the **Active Solution Configuration** (for example, Debug or Release) and the **Active Solution Platform** (for example, Win32) that correspond to the type of build you are interested in.
+
1. From the Build menu, click **Build Solution** (Ctrl+Shift+B).
## Building a Driver Using the Command Line (MSBuild)
@@ -41,10 +33,13 @@ The default Solution build configuration is Debug and Win32.
You can build a driver from the command line using the Visual Studio Command Prompt window and the Microsoft Build Engine (MSBuild.exe) Previous versions of the WDK used the Windows Build utility (Build.exe) and provided separate build environment windows for each of the supported build configurations. You can now use the Visual Studio Command Prompt window for all build configurations.
1. Open a Visual Studio Command Prompt window at the **Start** screen. From this window you can use MsBuild.exe to build any Visual Studio project by specifying the project (.VcxProj) or solutions (.Sln) file.
-1. Navigate to the project directory and enter the **MSbuild** command for your target. For example, to perform a clean build of a Visual Studio driver project called *filtername*.vcxproj, navigate to the project directory and enter the following MSBuild command: **msbuild /t:clean /t:build .\\***samplename***.vcxproj**.
+
+1. Navigate to the project directory and enter the **MSbuild** command for your target. For example, to perform a clean build of a Visual Studio driver project called *filtername*.vcxproj, navigate to the project directory and enter the following MSBuild command:
+
+ `msbuild /t:clean /t:build .\<samplename>.vcxproj`
## Installation and Operation
The disk class driver is used to interact with disk devices along with the appropriate port driver. The disk class driver is layered above the port driver and manages disk devices regardless of their bus type. This driver attaches to the disk devices that are enumerated by all of the storage port drivers. This driver exposes the required functionality to the file system drivers to access the disk devices.
-For more information, see [Introduction to Storage Class Drivers](http://msdn.microsoft.com/en-us/library/windows/hardware/ff559215) in the storage technologies design guide. \ No newline at end of file
+For more information, see [Introduction to Storage Class Drivers](https://docs.microsoft.com/windows-hardware/drivers/storage/introduction-to-storage-class-drivers) in the storage technologies design guide.