<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SnapCreator Powershell Module - Custom Action Paramters? in Data Protection</title>
    <link>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powershell-Module-Custom-Action-Paramters/m-p/115463#M10654</link>
    <description>&lt;P&gt;Andrew,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;awesome, that works like a charm (I guess CUSTOM_PLUGIN_OPERATION was a good tip as well). This will make the process so much nicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Fri, 05 Feb 2016 14:58:48 GMT</pubDate>
    <dc:creator>CHMOELLER</dc:creator>
    <dc:date>2016-02-05T14:58:48Z</dc:date>
    <item>
      <title>SnapCreator Powershell Module - Custom Action Paramters?</title>
      <link>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powershell-Module-Custom-Action-Paramters/m-p/115149#M10649</link>
      <description>&lt;P&gt;Hey guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to use the SnapCreator Powershell Toolkit (4.1.7.0) to initiate a SnapCreator Workflow of "custom" type but find myself unable to properly supply it with the required paramters.&amp;nbsp; I need the "custom" type for restore and rollforward-recovery of IBM Domino Databases I backup using SnapCreator.&lt;/P&gt;&lt;P&gt;So far I use&amp;nbsp;the "snapcreator.exe" on the SnapCreator serverto start the recovery which (so that the Domino admins don't have to log on to the SC server) I start &amp;nbsp;via remote powerhell execution ... not very nice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is an example of how I call snapcreator.exe for a rollforward recovery on a database (some information changed for obvious reasons)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;snapcreator.exe --user XXXX&amp;nbsp;--passwd XXXX--profile domino --config dominoserver --policy daily --action custom --params snapname=dominoserver-daily_20160101000000 datapath=&amp;lt;path_to_\restore\johnwayne.nsf&amp;gt; restoretype=su2m restoretime="01/26/2016 02:54:02" disablereplication=y --verbose --debug&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;which works just fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next how I tried with the Toolkit. They all initiate a workflow in Snapcreator - however none of the Parameters in $params are passed (checked by comparing the SnapCreator logsfiles, they paramters appear in the scnapcreator.exe call but are missing when called by powershel) so obviously the rollforward doesn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm starting the workflow with:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Start-ScWorkflow -Action custom -ProfileName domino -ConfigName dominoserver -Parameters $params&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;where I have tried these for $params&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$params = @{"policy" = "daily"; "params" = "snapname=dominoserver-daily_20160101000000 datapath=&amp;lt;path_to_\restore\johnwayne.nsf&amp;gt; restoretype=su2m restoretime=""01/26/2016 02:54:02"" disablereplication=y"; }

$params = @{"--policy" = "daily"; "--params" = "snapname=dominoserver-daily_dominoserver-daily_20160101000000 datapath=&amp;lt;path_to_\restore\johnwayne.nsf&amp;gt; restoretype=su2m restoretime=""01/26/2016 02:54:02"" disablereplication=y"; }&lt;/PRE&gt;&lt;P&gt;both without success.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Any hints would be greatly appreciated!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 22:13:00 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powershell-Module-Custom-Action-Paramters/m-p/115149#M10649</guid>
      <dc:creator>CHMOELLER</dc:creator>
      <dc:date>2025-06-04T22:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: SnapCreator Powershell Module - Custom Action Paramters?</title>
      <link>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powershell-Module-Custom-Action-Paramters/m-p/115153#M10650</link>
      <description>&lt;P&gt;I would try putting each of the parameter values into it's own hash table element...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$profile = "domino"
$config = "dominoserver"

$parameters = @{
    "policy" = "daily"; 
    "snapname" = "dominoserver-daily_20160101000000";
    "datapath" = "&amp;lt;path_to_\restore\johnwayne.nsf&amp;gt;";
    "restoretype" = "su2m";
    "restoretime" = "01/26/2016 02:54:02";
    "disablereplication" = "y";
}

Start-ScWorkflow -Action CUSTOM_PLUGIN_OPERATION -ProfileName $profile -ConfigName $config -Parameters $parameters&lt;/PRE&gt;&lt;P&gt;Andrew&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2016 12:41:25 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powershell-Module-Custom-Action-Paramters/m-p/115153#M10650</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2016-01-28T12:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: SnapCreator Powershell Module - Custom Action Paramters?</title>
      <link>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powershell-Module-Custom-Action-Paramters/m-p/115463#M10654</link>
      <description>&lt;P&gt;Andrew,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;awesome, that works like a charm (I guess CUSTOM_PLUGIN_OPERATION was a good tip as well). This will make the process so much nicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2016 14:58:48 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powershell-Module-Custom-Action-Paramters/m-p/115463#M10654</guid>
      <dc:creator>CHMOELLER</dc:creator>
      <dc:date>2016-02-05T14:58:48Z</dc:date>
    </item>
  </channel>
</rss>

