PowerShell Logo Small

Mount-IscsiVirtualDiskSnapshot



This is the built-in help made by Microsoft for the command 'Mount-IscsiVirtualDiskSnapshot', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Mounts a snapshot locally.

SYNTAX


Mount-IscsiVirtualDiskSnapshot [-SnapshotId] <String> [-ComputerName <String>] [-Credential <PSCredential>] [<CommonParameters>]
Mount-IscsiVirtualDiskSnapshot [-ComputerName <String>] [-Credential <PSCredential>] -InputObject <IscsiVirtualDiskSnapshot> [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


Note: This cmdlet is deprecated and might be removed in a future release. We recommend that you do not use this cmdlet.


The Mount-IscsiVirtualDiskSnapshot cmdlet mounts a snapshot locally. This cmdlet operates on snapshots in the virtual disk 1.0 (VHD) format only.


Mounting a snapshot locally exposes the snapshot as a disk to the local computer.

Use diskmgmt.msc or cmdlets to bring the disk online.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkID=294078
Dismount-IscsiVirtualDiskSnapshot
Export-IscsiVirtualDiskSnapshot
Get-IscsiVirtualDiskSnapshot
Remove-IscsiVirtualDiskSnapshot
Set-IscsiVirtualDiskSnapshot

REMARKS

<

Examples


EXAMPLE 1

PS C:\> Mount-IscsiVirtualDiskSnapshot –SnapshotId "{E9A5BA03-85B9-40CA-85DF-DC1695690B40}"



This example mounts the snapshot with the ID {E9A5BA03-85B9-40CA-85DF-DC1695690B40} on the local server, which can be accessed by the backup server to perform backup.




EXAMPLE 2

PS C:\> Mount-IscsiVirtualDiskSnapshot -InputObject $VhdSnapshot



This example mounts the Snapshot object stored in a variable named $VhdSnapshot on the local server, which can be accessed by the backup server to perform backup.