PowerShell Logo Small

Mount-IscsiVirtualDiskSnapshot



This is the built-in help made by Microsoft for the command 'Mount-IscsiVirtualDiskSnapshot', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 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>] [<CommonParameters>]
Mount-IscsiVirtualDiskSnapshot [-ComputerName <String>] -InputObject <IscsiVirtualDiskSnapshot> [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Mount-IscsiVirtualDiskSnapshot cmdlet mounts a snapshot locally.


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


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.