<?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: How to load a new Module in WFA in Active IQ Unified Manager Discussions</title>
    <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2254#M511</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I was playing with this module to make aliases to be working and finally found a solution..!!&lt;/P&gt;&lt;P&gt;The issue is that they are not exporting the aliases created by this module. &lt;/P&gt;&lt;P&gt;To make them exported, I have slightly tweaked the module as below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Created a new file called, NTFSSecurity.Alias.psm1 under NTFSSecurity directory with aliases exported as below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set-Alias -Name Get-Ace -Value Get-Access&lt;/P&gt;&lt;P&gt;Set-Alias -Name Add-Ace -Value Add-Access&lt;/P&gt;&lt;P&gt;Set-Alias -Name Remove-Ace -Value Remove-Access&lt;/P&gt;&lt;P&gt;Set-Alias -Name Get-OrphanedAce -Value Get-OrphanedAccess&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Export-ModuleMember -Alias Get-Ace&lt;/P&gt;&lt;P&gt;Export-ModuleMember -Alias Add-Ace&lt;/P&gt;&lt;P&gt;Export-ModuleMember -Alias Remove-Ace&lt;/P&gt;&lt;P&gt;Export-ModuleMember -Alias Get-OrphanedAce&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Modify the file NTFSSecurity.psd1 as, search for "NestedModules" then assign the above file to it like below,&lt;/P&gt;&lt;P&gt;NestedModules = @('NTFSSecurity.Alias.psm1')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Now run profile.ps1 and that's it,&amp;nbsp; then you would be able to see the aliases &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps..!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PS: Took the reference of DataONTAP module. Not sure, how safe to play like this &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm Regards&lt;/P&gt;&lt;P&gt;Sivaprasad K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 May 2013 17:26:24 GMT</pubDate>
    <dc:creator>kandati</dc:creator>
    <dc:date>2013-05-06T17:26:24Z</dc:date>
    <item>
      <title>How to load a new Module in WFA</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2235#M503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Has anyone added a PowerShell Module in WFA ?&lt;/P&gt;&lt;P&gt;I tried following steps to add 2.1 NTFSSecurity Module. I have all the Modules in C:\Program Files\netapp\WFA\PoSH\Modules&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; directory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS C:\Program Files\netapp\wfa\PoSH&amp;gt; type profile.ps1&lt;BR /&gt;$ModulesDir = split-path $MyInvocation.MyCommand.Path&lt;/P&gt;&lt;P&gt;Import-Module $ModulesDir\Modules\WFA&lt;BR /&gt;Import-Module $ModulesDir\Modules\WFAWrapper&lt;BR /&gt;Import-Module $ModulesDir\Modules\DataONTAP&lt;BR /&gt;Import-Module $ModulesDir\Modules\NTFSSecurity&lt;/P&gt;&lt;P&gt;PS C:\Program Files\netapp\wfa\PoSH&amp;gt; dir&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Directory: C:\Program Files\netapp\wfa\PoSH&lt;/P&gt;&lt;P&gt;Mode&amp;nbsp;&amp;nbsp;&amp;nbsp; Inherits&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LastWriteTime&amp;nbsp;&amp;nbsp;&amp;nbsp; Size(M) Name&lt;BR /&gt;----&amp;nbsp;&amp;nbsp;&amp;nbsp; --------&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -------------&amp;nbsp;&amp;nbsp;&amp;nbsp; ------- ----&lt;BR /&gt;d----&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; True&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4/24/2013&amp;nbsp;&amp;nbsp; 5:20 PM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Modules&lt;BR /&gt;-a---&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; True&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4/24/2013&amp;nbsp;&amp;nbsp; 3:12 PM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0 profile.ps1&lt;/P&gt;&lt;P&gt;PS C:\Program Files\netapp\wfa\PoSH&amp;gt; cd modules&lt;BR /&gt;PS C:\Program Files\netapp\wfa\PoSH\modules&amp;gt; dir&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Directory: C:\Program Files\netapp\wfa\PoSH\modules&lt;/P&gt;&lt;P&gt;Mode&amp;nbsp;&amp;nbsp;&amp;nbsp; Inherits&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LastWriteTime&amp;nbsp;&amp;nbsp;&amp;nbsp; Size(M) Name&lt;BR /&gt;----&amp;nbsp;&amp;nbsp;&amp;nbsp; --------&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -------------&amp;nbsp;&amp;nbsp;&amp;nbsp; ------- ----&lt;BR /&gt;d----&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; True&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4/3/2013&amp;nbsp;&amp;nbsp; 7:47 AM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DataONTAP&lt;BR /&gt;d----&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; True&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4/24/2013&amp;nbsp;&amp;nbsp; 5:20 PM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NTFSSecurity&lt;BR /&gt;d----&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; True&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4/3/2013&amp;nbsp;&amp;nbsp; 7:47 AM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WFA&lt;BR /&gt;d----&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; True&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4/3/2013&amp;nbsp;&amp;nbsp; 7:47 AM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WFAWrapper&lt;/P&gt;&lt;P&gt;PS C:\Program Files\netapp\wfa\PoSH\modules&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After restarting of WFA services and Reboot of WFA server, I still see same message in WFA logs that The term 'Add-Ace' is not recognized as the name of a cmdlet&lt;/P&gt;&lt;P&gt;Any help would be much appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 06:03:40 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2235#M503</guid>
      <dc:creator>narendrathawani</dc:creator>
      <dc:date>2025-06-05T06:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to load a new Module in WFA</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2239#M505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you please try to list the modules imported by running following command-let,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Get-Module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and see whether your NTFSSecurity module is loaded or not..!!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I have just downloaded NTFSSecutiry module from internet and imported it successfully,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS C:\Users\kandati\Downloads\NTFSSecurity 2.1 Binaries&amp;gt; Get-Module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_______________________________________________________________________________________________________________________________________________________________________________________________________________________________&lt;/P&gt;&lt;P&gt;PS C:\Users\kandati\Downloads\NTFSSecurity 2.1 Binaries&amp;gt; Import-Module .\NTFSSecurity&lt;/P&gt;&lt;P&gt;Types added&lt;/P&gt;&lt;P&gt;NTFSSecurity Module loaded&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_______________________________________________________________________________________________________________________________________________________________________________________________________________________________&lt;/P&gt;&lt;P&gt;PS C:\Users\kandati\Downloads\NTFSSecurity 2.1 Binaries&amp;gt; Get-Module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ModuleType Name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ExportedCommands&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;---------- ----&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ----------------&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Binary&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NTFSSecurity&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {Show-SimpleEffectiveAccess, Get-Inheritance, Set-Owner, Get-SimpleEffec...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_______________________________________________________________________________________________________________________________________________________________________________________________________________________________&lt;/P&gt;&lt;P&gt;PS C:\Users\kandati\Downloads\NTFSSecurity 2.1 Binaries&amp;gt; add-ace -?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NAME&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Add-Access&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;SYNTAX&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Add-Access [-Path] &amp;lt;String[]&amp;gt; [-Account] &amp;lt;IdentityReference2&amp;gt; [-AccessRights] &amp;lt;FileSystemRights2&amp;gt; [-AccessType &amp;lt;AccessControlType&amp;gt;] [-InheritanceFlags &amp;lt;InheritanceFlags&amp;gt;] [-PropagationFlags &amp;lt;PropagationFlags&amp;gt;] [-PassThru] &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [-Verbose] [-Debug] [-ErrorAction &amp;lt;ActionPreference&amp;gt;] [-WarningAction &amp;lt;ActionPreference&amp;gt;] [-ErrorVariable &amp;lt;String&amp;gt;] [-WarningVariable &amp;lt;String&amp;gt;] [-OutVariable &amp;lt;String&amp;gt;] [-OutBuffer &amp;lt;Int32&amp;gt;]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Add-Access [-Path] &amp;lt;String[]&amp;gt; [-Account] &amp;lt;IdentityReference2&amp;gt; [-AccessRights] &amp;lt;FileSystemRights2&amp;gt; [-AccessType &amp;lt;AccessControlType&amp;gt;] [-AppliesTo &amp;lt;ApplyTo&amp;gt;] [-PassThru] [-Verbose] [-Debug] [-ErrorAction &amp;lt;ActionPreference&amp;gt;] [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; -WarningAction &amp;lt;ActionPreference&amp;gt;] [-ErrorVariable &amp;lt;String&amp;gt;] [-WarningVariable &amp;lt;String&amp;gt;] [-OutVariable &amp;lt;String&amp;gt;] [-OutBuffer &amp;lt;Int32&amp;gt;]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_______________________________________________________________________________________________________________________________________________________________________________________________________________________________&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It asked few security checks while importing it. But I haven't tried this adding it to profile.ps1&lt;/P&gt;&lt;P&gt;I can get back to you on doing your way..!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm Regards&lt;/P&gt;&lt;P&gt;Sivaprasad K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 May 2013 12:14:45 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2239#M505</guid>
      <dc:creator>kandati</dc:creator>
      <dc:date>2013-05-06T12:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to load a new Module in WFA</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2244#M507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, It works fine from command line. It doesn't work from WFA when I add "Import-Module $ModulesDir\Modules\NTFSSecurity" in "profile.ps1" &lt;/P&gt;&lt;P&gt;Thanks for looking into it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 May 2013 12:40:30 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2244#M507</guid>
      <dc:creator>narendrathawani</dc:creator>
      <dc:date>2013-05-06T12:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to load a new Module in WFA</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2249#M509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The approach that you are trying works but there is one difference between how it is imported via the command line and when the profile.ps1 is read.&amp;nbsp; I have tested this in my lab and found that in the latter, there is no Alias created.&amp;nbsp; Get-Ace is actually an alias for Get-Access.&amp;nbsp; I noticed this in the PS1 file that is included in the package.&amp;nbsp; (New-Alias -Name Get-Ace -Value Get-Access).&amp;nbsp; It turns out that the module will import with no issues (as long as the path and &lt;STRONG&gt;ALL&lt;/STRONG&gt; of the included files are there.&amp;nbsp; Don't leave &lt;STRONG&gt;any&lt;/STRONG&gt; of them out).&amp;nbsp; After running the WFA profile.ps1 from the CLI.&amp;nbsp; I got the same exact error as you.&amp;nbsp; This is when I decided to try the real cmdlet name and it worked.&amp;nbsp; I tried to manually add the New-Alias command to the profile.ps1 and that didn't work.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It looks like there are only a couple of aliases that would be created so it might not be that big of an issue.&amp;nbsp; I can't figure out why it is not setting up the Aliases.&amp;nbsp; What I found odd was when I manually added the below lines to the profile.ps1, I received an error that the Alias already exists but Get-Alias doesn't show those.&amp;nbsp; &lt;/P&gt;&lt;P&gt;New-Alias -Name Get-Ace -Value Get-Access&lt;/P&gt;&lt;P&gt;New-Alias -Name Add-Ace -Value Add-Access&lt;/P&gt;&lt;P&gt;New-Alias -Name Remove-Ace -Value Remove-Access&lt;/P&gt;&lt;P&gt;New-Alias -Name Get-OrphanedAce -Value Get-OrphanedAccess&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, I can confirm that things worked.&amp;nbsp; I added the Import-Module to the WFA profile.ps1 and then restarted the service.&amp;nbsp; I created a new test Command with a very simple script:&lt;/P&gt;&lt;P&gt;--------------------------------------------&lt;/P&gt;&lt;P&gt;$security = Get-Access -Path "C:\wfa"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get-WFALogger -message ("Here is the information")&lt;/P&gt;&lt;P&gt;Get-WFALogger -message ($security[0].Account.AccountName)&lt;/P&gt;&lt;P&gt;--------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I clicked the TEST button and no issues:&lt;/P&gt;&lt;P&gt;--------------------------------------------&lt;/P&gt;&lt;P&gt;10:39:46.029 INFO&amp;nbsp; [Get File Permissions] ### Command 'Get File Permissions' ###&lt;/P&gt;&lt;P&gt;10:39:47.201 INFO&amp;nbsp; [Get File Permissions] Executing command: ./Get_File_Permissions836740177284623151.ps1 &lt;/P&gt;&lt;P&gt;10:39:47.232 DEBUG&amp;nbsp; [Get File Permissions] Here is the information&lt;/P&gt;&lt;P&gt;10:39:47.248 DEBUG&amp;nbsp; [Get File Permissions] NT AUTHORITY\SYSTEM&lt;/P&gt;&lt;P&gt;10:39:47.295 INFO&amp;nbsp; [Get File Permissions] Command completed, took 1250 milliseconds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jeremy Goodrum, NetApp&lt;/P&gt;&lt;P&gt;The Pirate&lt;/P&gt;&lt;P&gt;Twitter: @virtpirate&lt;/P&gt;&lt;P&gt;Blog: &lt;A href="http://www.virtpirate.com" target="_blank"&gt;www.virtpirate.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 May 2013 14:41:44 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2249#M509</guid>
      <dc:creator>goodrum</dc:creator>
      <dc:date>2013-05-06T14:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to load a new Module in WFA</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2254#M511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I was playing with this module to make aliases to be working and finally found a solution..!!&lt;/P&gt;&lt;P&gt;The issue is that they are not exporting the aliases created by this module. &lt;/P&gt;&lt;P&gt;To make them exported, I have slightly tweaked the module as below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Created a new file called, NTFSSecurity.Alias.psm1 under NTFSSecurity directory with aliases exported as below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set-Alias -Name Get-Ace -Value Get-Access&lt;/P&gt;&lt;P&gt;Set-Alias -Name Add-Ace -Value Add-Access&lt;/P&gt;&lt;P&gt;Set-Alias -Name Remove-Ace -Value Remove-Access&lt;/P&gt;&lt;P&gt;Set-Alias -Name Get-OrphanedAce -Value Get-OrphanedAccess&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Export-ModuleMember -Alias Get-Ace&lt;/P&gt;&lt;P&gt;Export-ModuleMember -Alias Add-Ace&lt;/P&gt;&lt;P&gt;Export-ModuleMember -Alias Remove-Ace&lt;/P&gt;&lt;P&gt;Export-ModuleMember -Alias Get-OrphanedAce&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Modify the file NTFSSecurity.psd1 as, search for "NestedModules" then assign the above file to it like below,&lt;/P&gt;&lt;P&gt;NestedModules = @('NTFSSecurity.Alias.psm1')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Now run profile.ps1 and that's it,&amp;nbsp; then you would be able to see the aliases &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps..!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PS: Took the reference of DataONTAP module. Not sure, how safe to play like this &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm Regards&lt;/P&gt;&lt;P&gt;Sivaprasad K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 May 2013 17:26:24 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2254#M511</guid>
      <dc:creator>kandati</dc:creator>
      <dc:date>2013-05-06T17:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to load a new Module in WFA</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2259#M514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Were you able to proceed with NTFSSecurity module..!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 May 2013 14:58:40 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2259#M514</guid>
      <dc:creator>kandati</dc:creator>
      <dc:date>2013-05-08T14:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to load a new Module in WFA</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2263#M517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jeremy and Siva,&lt;/P&gt;&lt;P&gt;Thanks! Looks like using full command (Add-Access) works.&lt;/P&gt;&lt;P&gt;But I get following error&lt;/P&gt;&lt;P&gt;Get-Item &lt;A href="https://community.netapp.com/" target="_blank"&gt;\\toaster1\c$\vol\vol_non_prod_3\Naren_Test|Add-Access&lt;/A&gt; -Account MS\group1 -AccessRights FullControl&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10:09:39.053 ERROR&amp;nbsp; [Set File Permissions] Failed executing command. Exception: Cannot find path '\\toaster1\c$\vol\vol_non_prod_3\Naren_Test' because it does not exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I must be using wrong syntax. Any suggestion on how to specify the path of the file / folder that requires ACL changes.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 May 2013 15:16:50 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2263#M517</guid>
      <dc:creator>narendrathawani</dc:creator>
      <dc:date>2013-05-08T15:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to load a new Module in WFA</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2266#M518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm not sure, I think you are using some network path.&lt;/P&gt;&lt;P&gt;Can you try mapping it to some local drive like, Z:, and use that drive in the script..!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 May 2013 15:25:08 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2266#M518</guid>
      <dc:creator>kandati</dc:creator>
      <dc:date>2013-05-08T15:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to load a new Module in WFA</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2271#M521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From WFA&lt;/P&gt;&lt;P&gt;Connect-WFAController -Array $Array&lt;/P&gt;&lt;P&gt;mount-nacontroller&lt;/P&gt;&lt;P&gt;Get-Item taoster1:\vol\vol_non_prod_3\Naren_Test&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;(works)&lt;/STRONG&gt;&lt;BR /&gt;Get-Item toaster1:\vol\vol_non_prod_3\Naren_Test | Get-Access&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (&lt;STRONG&gt;Fails&lt;/STRONG&gt; with error "Failed executing command. Exception: Unable to find the specified file."&lt;/P&gt;&lt;P&gt;Does that means Get-Access can't work with mounted drives ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Command line :&lt;BR /&gt;PS C:\Users\user1&amp;gt; Get-Item &lt;A href="https://community.netapp.com/" target="_blank"&gt;\\toaster1\c$\vol\vol_non_prod_3\Naren_Test|Get-Ace&lt;/A&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;(Works)&lt;/STRONG&gt;&lt;BR /&gt;but &lt;STRONG&gt;fails&lt;/STRONG&gt; from WFA with following error&lt;BR /&gt;Get-Item &lt;A href="https://community.netapp.com/" target="_blank"&gt;\\toaster1\c$\vol\vol_non_prod_3\Naren_Test&lt;/A&gt;&lt;BR /&gt;10:09:39.053 ERROR&amp;nbsp; [Set File Permissions] Failed executing command. Exception: Cannot find path '\\toaster1\c$\vol\vol_non_prod_3\Naren_Test' because it does not exist.&lt;/P&gt;&lt;P&gt;Does that means from WFA, we can't define share path ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 May 2013 16:27:50 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/How-to-load-a-new-Module-in-WFA/m-p/2271#M521</guid>
      <dc:creator>narendrathawani</dc:creator>
      <dc:date>2013-05-08T16:27:50Z</dc:date>
    </item>
  </channel>
</rss>

