Search Results for

    Show / Hide Table of Contents

    PowerShell Module

    PowerShell module name is AdmPwd.PS. It’s installed to $pshome\Modules\AdmPwd.PS folder.

    Module is compiled for use with .NET Framework 4.0. Module is however compatible with .NET Framework 2.0 as well. In case that it needs to be run on machine with only .NET Framework 2.0 installed, custom powershell.exe.config needs to be created if necessary, and needs to create the following config section:

    <?xml version="1.0"?> 
    <configuration> 
        <startup useLegacyV2RuntimeActivationPolicy="true"> 
            <supportedRuntime version="v4.0.30319"/> 
            <supportedRuntime version="v2.0.50727"/> 
        </startup>
    </configuration>

    Unattended setup of PowerShell module can be achieved by the following command line:
    Msiexec /i /q AdmPwd.E.Tools.Setup.<platform>.msi ADDLOCAL=Management.PS

    • Improve this Doc
    ☀
    ☾
    Back to top Generated by DocFX