<?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: Powershell  Close-NcCifsSessionFile not accepting value from Get-NcCifsSessionFile in Microsoft Virtualization Discussions</title>
    <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/140522#M5765</link>
    <description>&lt;P&gt;The bug (&lt;SPAN&gt;1142906) is still open&amp;nbsp;&lt;img id="smileyfrustrated" class="emoticon emoticon-smileyfrustrated" src="https://community.netapp.com/i/smilies/16x16_smiley-frustrated.png" alt="Smiley Frustrated" title="Smiley Frustrated" /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 25 May 2018 13:35:03 GMT</pubDate>
    <dc:creator>asulliva</dc:creator>
    <dc:date>2018-05-25T13:35:03Z</dc:date>
    <item>
      <title>Powershell  Close-NcCifsSessionFile not accepting value from Get-NcCifsSessionFile</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/135880#M5560</link>
      <description>&lt;P&gt;Hi Folk,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to automate the closing/removing of CIFS file locks, and I'm running into problems with datat ypes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In particular, I do a &lt;STRONG&gt;Get-NcCifsSessionFile&lt;/STRONG&gt; which gives me a set of CIFSSessionFile objects, but when I try to pass the SessionID from one of those objects to the&amp;nbsp;&lt;STRONG&gt;Close-NcCifsSessionFile&lt;/STRONG&gt;&amp;nbsp;it tells me value is too large for an INT64 (the close session applet is expecting an INT64, but the Get is returning a Decimal)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code is essentially:&lt;/P&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;PRE&gt;$SearchPath = "*CBR1PSCM01 TSM errors.xlsx" 

# get a list of files open on cluster
$CIFSSessionFileTemplate = Get-NcCifsSessionFile -Template
$CIFSSessionFileTemplate.Path = $SearchPath
$Files = Get-NcCifsSessionFile -Query $CIFSSessionFileTemplate


foreach ($f in $FileList)
    {
    Close-NcCifsSessionFile -Node $f.Node  -FileId $f.FileId -SessionId $f.SessionId -ConnectionId $f.ConnectionId 
    }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It I look at the type of the SessionId, it's decimal, and from what I see it &lt;STRONG&gt;IS&lt;/STRONG&gt;&amp;nbsp;too long for an INT64&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;#24 PS3 H:\&amp;gt; $f.SessionId.GetType()&lt;BR /&gt;
IsPublic IsSerial Name                                     BaseType 
-------- -------- ----                                     -------- 
True     True     Decimal                                  System.ValueType    &lt;/PRE&gt;&lt;PRE&gt;#23 PS3 H:\&amp;gt; Close-NcCifsSessionFile -Node $f.Node  -FileId $f.FileId -SessionId $f.SessionId -ConnectionId $f.ConnectionId 
Close-NcCifsSessionFile : Cannot bind parameter 'SessionId'. Cannot convert value "14120473681666951262" to type "System.Int64". Error: "Value was either too large or too small for an Int64."&lt;/PRE&gt;&lt;P&gt;I&amp;nbsp;&lt;EM&gt;think&lt;/EM&gt; this was working on an earlier version of OnTap, but it's not working with 9.2P1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NAS: &amp;nbsp; &amp;nbsp; ONTAP 9.2P1&lt;/P&gt;&lt;P&gt;Toolkit: &amp;nbsp;V4.4 &amp;nbsp;(DataONTAP module is 4.2.0)&lt;/P&gt;&lt;P&gt;PowerShell: 5.1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this a problem with the module?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(I'd be happy to know if there's another way to do it also!)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Stuart&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Nov 2017 04:26:11 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/135880#M5560</guid>
      <dc:creator>OZWALKERZ</dc:creator>
      <dc:date>2017-11-09T04:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: Powershell  Close-NcCifsSessionFile not accepting value from Get-NcCifsSessionFile</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/135939#M5570</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.netapp.com/t5/user/viewprofilepage/user-id/297"&gt;@OZWALKERZ&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why not just pipe the object into Close-NcCifsSessionFile?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Get-NcCifsSessionFile -Query @{ Path = $SearchPath } | Close-NcCifsSessionFile -Confirm:$false&lt;/PRE&gt;&lt;P&gt;Hope that helps!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;</description>
      <pubDate>Fri, 10 Nov 2017 15:28:48 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/135939#M5570</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2017-11-10T15:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: Powershell  Close-NcCifsSessionFile not accepting value from Get-NcCifsSessionFile</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/136061#M5578</link>
      <description>&lt;P&gt;Good thought, but no.&lt;/P&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;#14 PS4 H:\&amp;gt; Get-NcCifsSessionFile -Query @{ Path = $SearchPath } 

Path                                                                           ConnectionId Vserver
----                                                                           ------------ -------
&amp;lt;somedir&amp;gt;\CBR1PSCM01 TSM errors.xlsx                                                 134041239 &amp;lt;some vserver&amp;gt;&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;#15 PS4 H:\&amp;gt; Get-NcCifsSessionFile -Query @{ Path = $SearchPath }  | Close-NcCifsSessionFile -Confirm:$false
Close-NcCifsSessionFile : Failed to close an open file on CIFS server "&amp;lt;some vserver&amp;gt;". Reason: The parameters "-connection-id" and "-session-id" are required when "-file-id" is specified.
At line:1 char:57
+ Get-NcCifsSessionFile -Query @{ Path = $SearchPath }  | Close-NcCifsSessionFile  ...
+                                                         ~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (prodnas.production.prod:NcController) [Close-NcCifsSessionFile], EAPIERROR
    + FullyQualifiedErrorId : ApiException,DataONTAP.C.PowerShell.SDK.Cmdlets.Cifs.CloseNcCifsSessionFile&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had already tried&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Close-NcCifsSessionFile $f&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;with no luck, so&amp;nbsp;I tried&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$f | Close-NcCifsSessionFile&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and they both get the same error that your suggestion got above&lt;/P&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My guess is that the &amp;nbsp;&lt;STRONG&gt;Close-NcCifsSessionFile&lt;/STRONG&gt; is expecting an INT value for the &lt;STRONG&gt;SessionId&lt;/STRONG&gt;, but the &lt;STRONG&gt;Get-NcCifsSessionFile&lt;/STRONG&gt; is returning a &amp;nbsp;Decimal - perhaps the get applet was updated to return a decimal, but the close applet wasn't updated to accept it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Stuart&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2017 23:07:23 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/136061#M5578</guid>
      <dc:creator>OZWALKERZ</dc:creator>
      <dc:date>2017-11-16T23:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: Powershell  Close-NcCifsSessionFile not accepting value from Get-NcCifsSessionFile</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/136093#M5580</link>
      <description>&lt;P&gt;Interesting, I had (successfully) tested the pipe method with ONTAP 9.1, but don't readily have a 9.2 system available.&amp;nbsp; I'll see if I can get something deployed and tested in the near future.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suspect this may be a bug either in the PowerShell module or ZAPI itself.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2017 13:24:53 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/136093#M5580</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2017-11-20T13:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: Powershell  Close-NcCifsSessionFile not accepting value from Get-NcCifsSessionFile</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/136112#M5581</link>
      <description>&lt;P&gt;Thanks Andrew!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had also thought it might be bug &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a method for raising a bug for the PowerShell module, or the API? (Or does that have to come from you guys?)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Stuart&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2017 03:15:48 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/136112#M5581</guid>
      <dc:creator>OZWALKERZ</dc:creator>
      <dc:date>2017-11-21T03:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: Powershell  Close-NcCifsSessionFile not accepting value from Get-NcCifsSessionFile</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/136125#M5582</link>
      <description>&lt;P&gt;Not sure if there is a way for someone external to directly create a bug, but I can take care of it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Happy to send you some stickers for a "bug bounty", just PM me your mailing address!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2017 16:47:02 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/136125#M5582</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2017-11-21T16:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Powershell  Close-NcCifsSessionFile not accepting value from Get-NcCifsSessionFile</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/136672#M5589</link>
      <description>&lt;P&gt;Thanks Andrew!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would the bug be visible to customers? &amp;nbsp;(If it's been created that is..)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd be interested in 'following' it&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Stuart&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 05:37:24 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/136672#M5589</guid>
      <dc:creator>OZWALKERZ</dc:creator>
      <dc:date>2017-12-13T05:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: Powershell  Close-NcCifsSessionFile not accepting value from Get-NcCifsSessionFile</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/140512#M5761</link>
      <description>&lt;P&gt;I Just tried&amp;nbsp;NetApp PowerShell Toolkit&amp;nbsp; V4.6 (on 9.2P3) and it's still complaining about not being able to convert to a INT64&lt;/P&gt;
&lt;PRE&gt;Close-NcCifsSessionFile : Cannot bind parameter 'SessionId'. Cannot convert value 
"10342516544256614983" to type "System.Int64". Error: "Value was either too large or too small 
for an Int64."
&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;img id="smileyfrustrated" class="emoticon emoticon-smileyfrustrated" src="https://community.netapp.com/i/smilies/16x16_smiley-frustrated.png" alt="Smiley Frustrated" title="Smiley Frustrated" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 May 2018 04:27:25 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/140512#M5761</guid>
      <dc:creator>OZWALKERZ</dc:creator>
      <dc:date>2018-05-25T04:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: Powershell  Close-NcCifsSessionFile not accepting value from Get-NcCifsSessionFile</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/140522#M5765</link>
      <description>&lt;P&gt;The bug (&lt;SPAN&gt;1142906) is still open&amp;nbsp;&lt;img id="smileyfrustrated" class="emoticon emoticon-smileyfrustrated" src="https://community.netapp.com/i/smilies/16x16_smiley-frustrated.png" alt="Smiley Frustrated" title="Smiley Frustrated" /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 May 2018 13:35:03 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/140522#M5765</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2018-05-25T13:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Powershell  Close-NcCifsSessionFile not accepting value from Get-NcCifsSessionFile</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/142910#M5854</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(nearly) one year later and&amp;nbsp; I encountered the same bug .&lt;/P&gt;
&lt;P&gt;I installed PSTK 4.6.0.&lt;/P&gt;
&lt;P&gt;Any progess&amp;nbsp;in this direction, maybe a new PSTK?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Matthias&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 16:45:37 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/142910#M5854</guid>
      <dc:creator>dietermann</dc:creator>
      <dc:date>2018-09-24T16:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: Powershell  Close-NcCifsSessionFile not accepting value from Get-NcCifsSessionFile</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/142936#M5855</link>
      <description>&lt;P&gt;Hi folks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I found a difference between a FAS2554HA and a FAS8040HA, both running Ontap 9.3P5.&lt;/P&gt;
&lt;P&gt;On the smaller filer I could close a file with close-nccifssessionfile.&lt;/P&gt;
&lt;P&gt;A typical SessionID is 394064967395194693 (18 digits)&lt;/P&gt;
&lt;P&gt;On the bigger filer I got the SessionID-to-big-for-int64 error.&lt;/P&gt;
&lt;P&gt;A typical SessionID is 16416183591719928754 (20 digits).&lt;/P&gt;
&lt;P&gt;This&amp;nbsp;might give a hint what goes wrong, but doesnt&amp;nbsp;allow for a workaround.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;close-nccifssessionfile uses the wrong type:&lt;/P&gt;
&lt;P&gt;PS&amp;gt; [Int64] 16416183591719928754&lt;BR /&gt;Cannot convert value "16416183591719928754" to type "System.Int64". Error: "Value was either too large or too small for an Int64."&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards Matthias&lt;/P&gt;</description>
      <pubDate>Tue, 25 Sep 2018 10:46:29 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/142936#M5855</guid>
      <dc:creator>dietermann</dc:creator>
      <dc:date>2018-09-25T10:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Powershell  Close-NcCifsSessionFile not accepting value from Get-NcCifsSessionFile</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/148468#M6005</link>
      <description>&lt;P&gt;Hitting this same bug.&lt;/P&gt;
&lt;P&gt;Any fix in sight?&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2019 12:39:41 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/148468#M6005</guid>
      <dc:creator>sysir</dc:creator>
      <dc:date>2019-05-14T12:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: Powershell  Close-NcCifsSessionFile not accepting value from Get-NcCifsSessionFile</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/156474#M6189</link>
      <description>&lt;P&gt;Hitting the same bug with PSTK 4.3 on Windows Server 2012 R2 against ONTAP 9.6P5.&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2020 11:33:21 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/156474#M6189</guid>
      <dc:creator>Raoul_Schaffner</dc:creator>
      <dc:date>2020-05-25T11:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: Powershell  Close-NcCifsSessionFile not accepting value from Get-NcCifsSessionFile</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/156475#M6190</link>
      <description>&lt;P&gt;Just checked: The bug is fixed in the recently released PSTK 9.7.1, maybe even earlier.&lt;/P&gt;
&lt;P&gt;Cheers to all!&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2020 11:52:25 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Powershell-Close-NcCifsSessionFile-not-accepting-value-from-Get/m-p/156475#M6190</guid>
      <dc:creator>Raoul_Schaffner</dc:creator>
      <dc:date>2020-05-25T11:52:25Z</dc:date>
    </item>
  </channel>
</rss>

