├── .gitignore ├── BUILD.md ├── LICENSE.md ├── README.md ├── Research └── Virtual hard disk format specification.pdf ├── Setup ├── License.rtf ├── Publish-GitHub.sh ├── Publish.cmd └── VhdAttach.iss └── Source ├── VhdAttach-Service ├── (Medo) │ ├── AboutBox [013].cs │ ├── Args [002].cs │ ├── CallingAssembly [002].cs │ ├── ErrorReport [020].cs │ ├── NamedPipe [003].cs │ ├── Settings [012].cs │ ├── TinyMessage [009].cs │ ├── UnhandledCatch [008].cs │ └── VirtualDisk [010].cs ├── App.cs ├── AppService.cs ├── AppServiceInstaller.cs ├── DeviceFromPath.cs ├── DiskIO.cs ├── FileWithOptions.cs ├── PipeServer.cs ├── Properties │ ├── App.ico │ ├── App.manifest │ ├── App.snk │ └── AssemblyInfo.cs ├── Resources │ ├── Service_RunningInteractive_12.png │ ├── Service_Running_12.png │ ├── Service_Stopped_12.png │ └── Service_Unknown_12.png ├── Service.cs ├── ServiceSettings.cs ├── ServiceStatusThread.cs ├── Tray.cs ├── VhdAttach-Service.csproj ├── VirtualDiskServiceHelper.cs └── Volume.cs ├── VhdAttach-Test ├── AssemblyInfo.cs ├── FileWithOptionsTest.cs ├── Properties │ └── App.snk ├── VhdAttach-Test.csproj └── VhdFooterTest.cs ├── VhdAttach.sln └── VhdAttach ├── (Medo) ├── AboutBox [014].cs ├── Args [002].cs ├── BinaryPrefixExtensions [002x].cs ├── EntryAssembly [003].cs ├── ErrorReport [020].cs ├── MessageBox [007].cs ├── NamedPipe [003].cs ├── NumberDeclination [001].cs ├── RecentFiles [005].cs ├── Settings [012].cs ├── State [015].cs ├── StringAdder [002].cs ├── TaskbarProgress [003].cs ├── TinyMessage [009].cs ├── UnhandledCatch [008].cs ├── Upgrade [005].cs └── VirtualDisk [010].cs ├── App.cs ├── AttachForm.Designer.cs ├── AttachForm.cs ├── AttachForm.resx ├── ChangeDriveLetterForm.Designer.cs ├── ChangeDriveLetterForm.cs ├── ChangeDriveLetterForm.resx ├── CommandLineAddon.cs ├── CreateFixedDiskForm.Designer.cs ├── CreateFixedDiskForm.cs ├── CreateFixedDiskForm.resx ├── DetachDriveForm.Designer.cs ├── DetachDriveForm.cs ├── DetachDriveForm.resx ├── DetachForm.Designer.cs ├── DetachForm.cs ├── DetachForm.resx ├── FileWithOptionsCollection.cs ├── Helper.cs ├── ListViewVhdItem.cs ├── MainForm.cs ├── MainForm.designer.cs ├── MainForm.resx ├── Messages.cs ├── NewDiskForm.Designer.cs ├── NewDiskForm.cs ├── NewDiskForm.resx ├── PathFromDevice.cs ├── PipeClient.cs ├── PipeResponse.cs ├── Properties ├── App.ico ├── App.manifest ├── App.snk ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx └── SolutionInfo.cs ├── ReFS.cs ├── RemoveIntegrityStreamForm.Designer.cs ├── RemoveIntegrityStreamForm.cs ├── RemoveIntegrityStreamForm.resx ├── ServiceWaitForm.Designer.cs ├── ServiceWaitForm.cs ├── ServiceWaitForm.resx ├── Settings.cs ├── SettingsForm.cs ├── SettingsForm.designer.cs ├── SettingsForm.resx ├── Utility.cs ├── VhdAttach.csproj └── VirtualHardDiskImage ├── DynamicDiskHeader.cs └── HardDiskFooter.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/BUILD.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/README.md -------------------------------------------------------------------------------- /Research/Virtual hard disk format specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Research/Virtual hard disk format specification.pdf -------------------------------------------------------------------------------- /Setup/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Setup/License.rtf -------------------------------------------------------------------------------- /Setup/Publish-GitHub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Setup/Publish-GitHub.sh -------------------------------------------------------------------------------- /Setup/Publish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Setup/Publish.cmd -------------------------------------------------------------------------------- /Setup/VhdAttach.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Setup/VhdAttach.iss -------------------------------------------------------------------------------- /Source/VhdAttach-Service/(Medo)/AboutBox [013].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/(Medo)/AboutBox [013].cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/(Medo)/Args [002].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/(Medo)/Args [002].cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/(Medo)/CallingAssembly [002].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/(Medo)/CallingAssembly [002].cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/(Medo)/ErrorReport [020].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/(Medo)/ErrorReport [020].cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/(Medo)/NamedPipe [003].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/(Medo)/NamedPipe [003].cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/(Medo)/Settings [012].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/(Medo)/Settings [012].cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/(Medo)/TinyMessage [009].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/(Medo)/TinyMessage [009].cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/(Medo)/UnhandledCatch [008].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/(Medo)/UnhandledCatch [008].cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/(Medo)/VirtualDisk [010].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/(Medo)/VirtualDisk [010].cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/App.cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/AppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/AppService.cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/AppServiceInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/AppServiceInstaller.cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/DeviceFromPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/DeviceFromPath.cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/DiskIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/DiskIO.cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/FileWithOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/FileWithOptions.cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/PipeServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/PipeServer.cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/Properties/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/Properties/App.ico -------------------------------------------------------------------------------- /Source/VhdAttach-Service/Properties/App.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/Properties/App.manifest -------------------------------------------------------------------------------- /Source/VhdAttach-Service/Properties/App.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/Properties/App.snk -------------------------------------------------------------------------------- /Source/VhdAttach-Service/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/Resources/Service_RunningInteractive_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/Resources/Service_RunningInteractive_12.png -------------------------------------------------------------------------------- /Source/VhdAttach-Service/Resources/Service_Running_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/Resources/Service_Running_12.png -------------------------------------------------------------------------------- /Source/VhdAttach-Service/Resources/Service_Stopped_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/Resources/Service_Stopped_12.png -------------------------------------------------------------------------------- /Source/VhdAttach-Service/Resources/Service_Unknown_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/Resources/Service_Unknown_12.png -------------------------------------------------------------------------------- /Source/VhdAttach-Service/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/Service.cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/ServiceSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/ServiceSettings.cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/ServiceStatusThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/ServiceStatusThread.cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/Tray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/Tray.cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/VhdAttach-Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/VhdAttach-Service.csproj -------------------------------------------------------------------------------- /Source/VhdAttach-Service/VirtualDiskServiceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/VirtualDiskServiceHelper.cs -------------------------------------------------------------------------------- /Source/VhdAttach-Service/Volume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Service/Volume.cs -------------------------------------------------------------------------------- /Source/VhdAttach-Test/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Test/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/VhdAttach-Test/FileWithOptionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Test/FileWithOptionsTest.cs -------------------------------------------------------------------------------- /Source/VhdAttach-Test/Properties/App.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Test/Properties/App.snk -------------------------------------------------------------------------------- /Source/VhdAttach-Test/VhdAttach-Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Test/VhdAttach-Test.csproj -------------------------------------------------------------------------------- /Source/VhdAttach-Test/VhdFooterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach-Test/VhdFooterTest.cs -------------------------------------------------------------------------------- /Source/VhdAttach.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach.sln -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/AboutBox [014].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/AboutBox [014].cs -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/Args [002].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/Args [002].cs -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/BinaryPrefixExtensions [002x].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/BinaryPrefixExtensions [002x].cs -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/EntryAssembly [003].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/EntryAssembly [003].cs -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/ErrorReport [020].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/ErrorReport [020].cs -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/MessageBox [007].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/MessageBox [007].cs -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/NamedPipe [003].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/NamedPipe [003].cs -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/NumberDeclination [001].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/NumberDeclination [001].cs -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/RecentFiles [005].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/RecentFiles [005].cs -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/Settings [012].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/Settings [012].cs -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/State [015].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/State [015].cs -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/StringAdder [002].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/StringAdder [002].cs -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/TaskbarProgress [003].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/TaskbarProgress [003].cs -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/TinyMessage [009].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/TinyMessage [009].cs -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/UnhandledCatch [008].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/UnhandledCatch [008].cs -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/Upgrade [005].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/Upgrade [005].cs -------------------------------------------------------------------------------- /Source/VhdAttach/(Medo)/VirtualDisk [010].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/(Medo)/VirtualDisk [010].cs -------------------------------------------------------------------------------- /Source/VhdAttach/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/App.cs -------------------------------------------------------------------------------- /Source/VhdAttach/AttachForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/AttachForm.Designer.cs -------------------------------------------------------------------------------- /Source/VhdAttach/AttachForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/AttachForm.cs -------------------------------------------------------------------------------- /Source/VhdAttach/AttachForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/AttachForm.resx -------------------------------------------------------------------------------- /Source/VhdAttach/ChangeDriveLetterForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/ChangeDriveLetterForm.Designer.cs -------------------------------------------------------------------------------- /Source/VhdAttach/ChangeDriveLetterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/ChangeDriveLetterForm.cs -------------------------------------------------------------------------------- /Source/VhdAttach/ChangeDriveLetterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/ChangeDriveLetterForm.resx -------------------------------------------------------------------------------- /Source/VhdAttach/CommandLineAddon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/CommandLineAddon.cs -------------------------------------------------------------------------------- /Source/VhdAttach/CreateFixedDiskForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/CreateFixedDiskForm.Designer.cs -------------------------------------------------------------------------------- /Source/VhdAttach/CreateFixedDiskForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/CreateFixedDiskForm.cs -------------------------------------------------------------------------------- /Source/VhdAttach/CreateFixedDiskForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/CreateFixedDiskForm.resx -------------------------------------------------------------------------------- /Source/VhdAttach/DetachDriveForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/DetachDriveForm.Designer.cs -------------------------------------------------------------------------------- /Source/VhdAttach/DetachDriveForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/DetachDriveForm.cs -------------------------------------------------------------------------------- /Source/VhdAttach/DetachDriveForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/DetachDriveForm.resx -------------------------------------------------------------------------------- /Source/VhdAttach/DetachForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/DetachForm.Designer.cs -------------------------------------------------------------------------------- /Source/VhdAttach/DetachForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/DetachForm.cs -------------------------------------------------------------------------------- /Source/VhdAttach/DetachForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/DetachForm.resx -------------------------------------------------------------------------------- /Source/VhdAttach/FileWithOptionsCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/FileWithOptionsCollection.cs -------------------------------------------------------------------------------- /Source/VhdAttach/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/Helper.cs -------------------------------------------------------------------------------- /Source/VhdAttach/ListViewVhdItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/ListViewVhdItem.cs -------------------------------------------------------------------------------- /Source/VhdAttach/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/MainForm.cs -------------------------------------------------------------------------------- /Source/VhdAttach/MainForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/MainForm.designer.cs -------------------------------------------------------------------------------- /Source/VhdAttach/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/MainForm.resx -------------------------------------------------------------------------------- /Source/VhdAttach/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/Messages.cs -------------------------------------------------------------------------------- /Source/VhdAttach/NewDiskForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/NewDiskForm.Designer.cs -------------------------------------------------------------------------------- /Source/VhdAttach/NewDiskForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/NewDiskForm.cs -------------------------------------------------------------------------------- /Source/VhdAttach/NewDiskForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/NewDiskForm.resx -------------------------------------------------------------------------------- /Source/VhdAttach/PathFromDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/PathFromDevice.cs -------------------------------------------------------------------------------- /Source/VhdAttach/PipeClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/PipeClient.cs -------------------------------------------------------------------------------- /Source/VhdAttach/PipeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/PipeResponse.cs -------------------------------------------------------------------------------- /Source/VhdAttach/Properties/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/Properties/App.ico -------------------------------------------------------------------------------- /Source/VhdAttach/Properties/App.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/Properties/App.manifest -------------------------------------------------------------------------------- /Source/VhdAttach/Properties/App.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/Properties/App.snk -------------------------------------------------------------------------------- /Source/VhdAttach/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/VhdAttach/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Source/VhdAttach/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/Properties/Resources.resx -------------------------------------------------------------------------------- /Source/VhdAttach/Properties/SolutionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/Properties/SolutionInfo.cs -------------------------------------------------------------------------------- /Source/VhdAttach/ReFS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/ReFS.cs -------------------------------------------------------------------------------- /Source/VhdAttach/RemoveIntegrityStreamForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/RemoveIntegrityStreamForm.Designer.cs -------------------------------------------------------------------------------- /Source/VhdAttach/RemoveIntegrityStreamForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/RemoveIntegrityStreamForm.cs -------------------------------------------------------------------------------- /Source/VhdAttach/RemoveIntegrityStreamForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/RemoveIntegrityStreamForm.resx -------------------------------------------------------------------------------- /Source/VhdAttach/ServiceWaitForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/ServiceWaitForm.Designer.cs -------------------------------------------------------------------------------- /Source/VhdAttach/ServiceWaitForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/ServiceWaitForm.cs -------------------------------------------------------------------------------- /Source/VhdAttach/ServiceWaitForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/ServiceWaitForm.resx -------------------------------------------------------------------------------- /Source/VhdAttach/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/Settings.cs -------------------------------------------------------------------------------- /Source/VhdAttach/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/SettingsForm.cs -------------------------------------------------------------------------------- /Source/VhdAttach/SettingsForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/SettingsForm.designer.cs -------------------------------------------------------------------------------- /Source/VhdAttach/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/SettingsForm.resx -------------------------------------------------------------------------------- /Source/VhdAttach/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/Utility.cs -------------------------------------------------------------------------------- /Source/VhdAttach/VhdAttach.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/VhdAttach.csproj -------------------------------------------------------------------------------- /Source/VhdAttach/VirtualHardDiskImage/DynamicDiskHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/VirtualHardDiskImage/DynamicDiskHeader.cs -------------------------------------------------------------------------------- /Source/VhdAttach/VirtualHardDiskImage/HardDiskFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medo64/VhdAttach/HEAD/Source/VhdAttach/VirtualHardDiskImage/HardDiskFooter.cs --------------------------------------------------------------------------------