Git Product home page Git Product logo

vnx-toolkit's Introduction

VNX-Toolkit

Random Scripts for EMC VNX PowerShell

VNX-Snaps.PS1

http://blog.superautomation.co.uk/2017/05/automating-vnx-snapshots-with-emc.html

Requires - EMC Storage Integrator Powershell (ESIPSToolkit) Version 5.0.1.3

The script is intended to be scheduled to run on a daily basis and will automatically clear any snapshots older than the 'expireDays' parameter. The script will detect which type of LUN is passed in and will create a pool based snapshot for pool LUNs and a SnapView snapshot for RAID based LUNs.

Example

$connectionStringPri = @{
    "Username"="admin";
    "Password"="password";
    "SpaIpAddress"="192.168.50.1";
    "SpbIpAddress"="192.168.50.2";
    "Port"="443";
    "UserFriendlyName"="Primary SAN"
};

$connectionStringSec = @{
    "Username"="admin";
    "Password"="password";
    "SpaIpAddress"="192.168.51.1";
    "SpbIpAddress"="192.168.51.2";
    "Port"="443";
    "UserFriendlyName"="Secondary SAN"
};

[Array]$sanArray = (
    $connectionStringPri, 
    $connectionStringSec
)

[Array]$targetLuns = (
    "LUN1",
    "LUN2",
    "LUN3"
)

. .\VNX-Snaps.PS1 -expireDays 3 -targetLuns $targetLuns -sanArray $sanArray

vnx-toolkit's People

Contributors

bobalob avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.